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
Is it possible to add parsing of regexp in SQL-query? For example: ... CASE WHEN layer~E'^-?\\d+$' ...
... CASE WHEN layer~E'^-?\\d+$' ...
The text was updated successfully, but these errors were encountered:
You just need to add '~' to the operator table in the parser. Do you want to try it yourself?
Sorry, something went wrong.
And what about E prefix before string? Does the parser process it?
Can you try it and see? If it is difficult to do this then I want to try to make it easier, if you can help me.
No branches or pull requests
Is it possible to add parsing of regexp in SQL-query? For example:
... CASE WHEN layer~E'^-?\\d+$' ...
The text was updated successfully, but these errors were encountered: