-
Notifications
You must be signed in to change notification settings - Fork 25
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
Autoquoting non-overridable #101
Comments
@Suor: Yeah, it should be possible to add sql._reserved.binary = 'binary'; But that pollutes the global namespace, it'd be nice to add a way to extend this while leaving the original namespace alone, like we want to do for converters (#62). That'll be breaking change in 3.0, though, not something we can slip into 2.x. |
Ah, yes this is possible. I looked that |
@Suor: Thanks
Understood, that's next on my 3.x list. |
Also - it would be great if we could set a custom value for '_autoQuoteChar' for the extension. In mysql identifiers are quoted with a backtick, not double quotes (unless setting a specific SQL mode). |
This makes impossible e.g. adding a reserved word, see Suor/sql-bricks-postgres#13
The text was updated successfully, but these errors were encountered: