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
> insert test value="foo'bar"
> select * from test
name: test
time b value
---- - -----
2015-07-20T23:42:21.952904634Z foo'bar
> select * from test where value = 'foo''bar'
ERR: error parsing query: found bar, expected SELECT, DELETE, SHOW, CREATE, DROP, GRANT, REVOKE, ALTER, SET at line 1, char 38
> select * from test where value = 'foo'bar'
ERR: error parsing query: found bar, expected SELECT, DELETE, SHOW, CREATE, DROP, GRANT, REVOKE, ALTER, SET at line 1, char 39
> select * from test where value = 'foo\'bar'
ERR: error parsing query: found \', expected identifier, string, number, bool at line 1, char 39
> select * from test where value = 'foo\\'bar'
ERR: error parsing query: found bar, expected SELECT, DELETE, SHOW, CREATE, DROP, GRANT, REVOKE, ALTER, SET at line 1, char 41
> select * from test where value =~ /foo.bar/
>
https://groups.google.com/forum/#!topic/influxdb/tM5JysvWE2A
The text was updated successfully, but these errors were encountered: