-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Allow value filtering on SHOW TAG VALUES #9977
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we add a bit of test coverage? Maybe some examples on top of the existing ones in the tests
package?
6925c3a
to
e28073c
Compare
During a run of megacheck the following issues were discovered:
|
@e-dard Is this ok to merge? |
@benbjohnson |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍 subject to CI
This commit allows users to filter on the `value` field in the `SHOW TAG VALUES` command: SHOW TAG VALUES WITH KEY = "mytag" WHERE "value" = 'myvalue' Previously this command would return all values.
e28073c
to
8be85c1
Compare
During a run of megacheck the following issues were discovered:
|
This pull request allows users to filter on the
value
field in theSHOW TAG VALUES
command:Previously this command would return all values.
Fixes #9555