-
Notifications
You must be signed in to change notification settings - Fork 40
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
Cannot parse CREATE INDEX on a json text value #59
Labels
Comments
Thanks for the report! looking into it |
kodiakhq bot
pushed a commit
that referenced
this issue
Sep 9, 2020
Turns out `name` is an Option and that `expr` can be a more complicated object rather than just a string. Previously we didn't have any tests that exercised the `expr` property. I think the issues with clippy are related to: rust-lang/rust-clippy#2604 fixes: #59
Unclosing this since I haven't deployed this version yet |
Should be fixed on the latest version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Err( CheckSQL( ParsingSQL( JsonParse( "invalid type: map, expected a string at line 1 column 225", ), ), ), )
The double parentheses are required in
((foo->>'bar'))
but it looks like it's parsed as amap
instead of astring
.The text was updated successfully, but these errors were encountered: