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
Hi @pyramation and happy new year!
Found a bug which causes syntax error when creating index as below:
CREATE INDEX IF NOT EXISTS index_name ON table ((field->>'jsonfield'));
The deparser will remove the double parentheses which causes error.
Can you add the fix below?
if (node.indexParams) { let expr = !!node.indexParams.expr; output.push(expr ? '((' : '('); output.push(this.list(node.indexParams, ', ', '', context)); output.push(expr ? '))' : ')'); }
Thanks in advance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @pyramation and happy new year!
Found a bug which causes syntax error when creating index as below:
The deparser will remove the double parentheses which causes error.
Can you add the fix below?
Thanks in advance.
The text was updated successfully, but these errors were encountered: