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
str ~ '^foo$'
It would be nice if predicates that look like
could be rewritten as
str = 'foo'
And likewise,
str !~ '^foo$'
str != 'foo'
It would be straightforward to extend the expression simplifier to do this.
This seems pretty uncontroversial so I haven't considered any alternatives.
This is relevant to InfluxQL support in IOx: https://github.com/influxdata/influxdb_iox/issues/6902
The text was updated successfully, but these errors were encountered:
str ~ '^$'
I am currently working on this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
It would be nice if predicates that look like
str ~ '^foo$'
could be rewritten as
And likewise,
str !~ '^foo$'
could be rewritten as
Describe the solution you'd like
It would be straightforward to extend the expression simplifier to do this.
Describe alternatives you've considered
This seems pretty uncontroversial so I haven't considered any alternatives.
Additional context
This is relevant to InfluxQL support in IOx: https://github.com/influxdata/influxdb_iox/issues/6902
The text was updated successfully, but these errors were encountered: