Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix SHOW TAG VALUES condition to not filter "name" erroneously
Before #6038 was merged, we needed to filter "name" so that it didn't accidentally hit the code path that used "name" to check the name of a measurement. This was changed to "_name" to avoid a conflict with a legitimate tag that used "name" as the key. SHOW TAG VALUES was never modified to remove the code that filtered out "name". This removes that line of code so a condition with "name" doesn't get removed erroneously. Example: SHOW TAG VALUES WITH KEY = host WHERE "name" = 'jsternberg' Fixes #6581.
- Loading branch information