diff --git a/influxql/scanner_test.go b/influxql/scanner_test.go index ba5d7e25fd..e1283f8a2b 100644 --- a/influxql/scanner_test.go +++ b/influxql/scanner_test.go @@ -58,6 +58,7 @@ func TestScanner_Scan(t *testing.T) { // Identifiers {s: `foo`, tok: influxql.IDENT, lit: `foo`}, + {s: `_foo`, tok: influxql.IDENT, lit: `_foo`}, {s: `Zx12_3U_-`, tok: influxql.IDENT, lit: `Zx12_3U_`}, {s: `"foo".bar`, tok: influxql.IDENT, lit: `"foo".bar`}, {s: `"foo\\bar"`, tok: influxql.IDENT, lit: `"foo\bar"`},