3
0

Add @todo for IN operator support in pkg/ql

This commit is contained in:
Denis Arh
2020-03-04 12:28:58 +01:00
parent bed6317d71
commit 7f0fcc72b9

View File

@@ -216,6 +216,20 @@ func TestAstParser_Parser(t *testing.T) {
Ident{Value: "foo3"},
},
},
// @todo support IN (....)
//{
// parser: NewParser().ParseExpression,
// in: `abc IN (1,2,3)`,
// tree: ASTNodes{
// Ident{Value: "abc"},
// Operator{"IN"},
// ASTNodes{
// Number{Value: "1"},
// Number{Value: "2"},
// Number{Value: "3"},
// },
// },
//},
}
for i, test := range tests {