-
-
Notifications
You must be signed in to change notification settings - Fork 220
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
New notation to identify ansi char to make better clean code psql #7311
Comments
You can use |
Your second example cannot be implemented in that way, as that would change how literals work (a |
For a better world, less quotes in psql, I think ;-) |
A new predicative or notation to identify ansi string like:
old: while (position(ASCII_CHAR(13), str)>0) do...
new:while (position(#13, str)>0) do...
or new:while (position('\n', str)>0) do...
Just to make better clean code psql.
The text was updated successfully, but these errors were encountered: