-
Notifications
You must be signed in to change notification settings - Fork 855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Generate read-only Queries #3291
base: main
Are you sure you want to change the base?
Conversation
internal/codegen/golang/gen.go
Outdated
if !strings.Contains(qsql, "SELECT") { | ||
continue | ||
} | ||
if strings.Contains(qsql, "UPDATE") || strings.Contains(qsql, "INSERT") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we also check for delete as well if queries have
something like
DELETE FROM your_table
WHERE some_condition IN (
SELECT some_column
FROM another_table
WHERE your_condition
);
rq = append(rq, q) | ||
} | ||
return rq | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we do it something like this
func readOnly(queries []Query) []Query {
var rq []Query
for _, q := range queries {
if !q.hasRetType() {
continue
}
qsql := strings.ToUpper(q.SQL)
if !containsOnlyAllowedKeywords(qsql) {
continue
}
rq = append(rq, q)
}
return rq
}
func containsOnlyAllowedKeywords(query string) bool {
keywords := []string{"INSERT", "UPDATE", "DELETE","CREATE","ALTER"} // and the other keywords
for _, keyword := range keywords {
if strings.Contains(qsql, keyword) {
return false
}
}
return true
}
So that we can define the list of exluded words
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
queries wont/shouldn't have ddl. so we can rule out CREATE and ALTER
hey @kyleconroy can i get a review on this? |
@kyleconroy is this good to go? |
bump @kyleconroy |
bump @kyleconroy I am also interested in this feature! @jarri-abidi maybe you want to make the piplines work, I think thats the reason why its not being merged. |
Solution for #3187
no support for pgx
sorry if the code looks messy at all - open to feedback