We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PostgreSQL support this syntax for setting configuration:
SET configuration_parameter { TO value | = value | FROM CURRENT }
Currently there is no printer for this syntax even though it is valid syntax and we simply raise NotImplementedError. We could do:
NotImplementedError
if node.kind == vsk.VAR_SET_CURRENT: output.write('FROM CURRENT') elif node.kind == vsk.VAR_SET_VALUE: output.write(' TO ') output.print_list(node.args) elif node.kind == vsk.VAR_SET_DEFAULT: output.write(' TO ') output.write('DEFAULT') elif node.kind == vsk.VAR_SET_MULTI: pass
The text was updated successfully, but these errors were encountered:
Thanks for finding and reporting the defect! Will cure the problem... if you do not beat me with a PR 😉
Sorry, something went wrong.
Thanks. You can have a look at the PR #168. Looks like tests are not running though.
Successfully merging a pull request may close this issue.
PostgreSQL support this syntax for setting configuration:
Currently there is no printer for this syntax even though it is valid syntax and we simply raise
NotImplementedError
.We could do:
The text was updated successfully, but these errors were encountered: