You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System info:
InfluxDB shell version: v1.3.6
Mac OS X 10.13
Steps to reproduce:
run a query with a regex such as SELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"=~/cpu0/ and notice that it has a parse error
add a space after the regex operator SELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"=~ /cpu0/ and notice it succeeds
run a query with an equals operator and notice that there is no space SELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"='cpu0' which succeds
Expected behavior: InfluxQL should not require a space after the regex operator
Actual behavior: the query fails to parse unless there is a space following the regex operator
Additional info: none
The text was updated successfully, but these errors were encountered:
Bug report
System info:
InfluxDB shell version: v1.3.6
Mac OS X 10.13
Steps to reproduce:
SELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"=~/cpu0/
and notice that it has a parse errorSELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"=~ /cpu0/
and notice it succeedsSELECT mean("usage_idle") AS "mean_usage_idle" FROM "telegraf"."autogen"."cpu" WHERE "cpu"='cpu0'
which succedsExpected behavior: InfluxQL should not require a space after the regex operator
Actual behavior: the query fails to parse unless there is a space following the regex operator
Additional info: none
The text was updated successfully, but these errors were encountered: