Merge pull request #11173 from influxdata/fix/incorrect-meta-query

Fix incorrect meta query
pull/11171/head
Brandon Farmer 2019-01-16 14:53:21 -08:00 committed by GitHub
commit 8314cc2ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -43,9 +43,9 @@ async function findKeys(
|> distinct()
|> keep(columns: ["_value"])${searchFilter}${previousKeyFilter}
|> filter(fn: (r) =>
r._value != "_time" or
r._value != "_start" or
r._value != "_stop" or
r._value != "_time" and
r._value != "_start" and
r._value != "_stop" and
r._value != "_value")
|> sort()
|> limit(n: ${LIMIT})`