From 3b8dcd30f5aca7624a22cff85a2f767d8d1fb583 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Mon, 28 Jul 2025 01:20:01 -0400 Subject: Add regex operator Implemented regex operator using go flavored regular expressions. Added optimization to combine regex's in `OR` clauses. --- pkg/query/parser_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/query/parser_test.go') diff --git a/pkg/query/parser_test.go b/pkg/query/parser_test.go index 5f68006..2e85123 100644 --- a/pkg/query/parser_test.go +++ b/pkg/query/parser_test.go @@ -26,6 +26,7 @@ const ( OP_LE = query.OP_LE OP_GE = query.OP_GE OP_GT = query.OP_GT + OP_RE = query.OP_RE ) func TestParse(t *testing.T) { -- cgit v1.2.3