Skip to content
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

CREATE INDEX with expression missing extra parenthesis #96

Open
beeing opened this issue Jan 10, 2023 · 0 comments
Open

CREATE INDEX with expression missing extra parenthesis #96

beeing opened this issue Jan 10, 2023 · 0 comments

Comments

@beeing
Copy link

beeing commented Jan 10, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant