From 94a958723db8e0a98f9b3759fd714b6ea037e173 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 8 Dec 2021 10:29:39 +0000 Subject: add string based mapreduce where clause integration test --- integrationtests/dmap_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'integrationtests') diff --git a/integrationtests/dmap_test.go b/integrationtests/dmap_test.go index e408b74..4321f70 100644 --- a/integrationtests/dmap_test.go +++ b/integrationtests/dmap_test.go @@ -22,6 +22,9 @@ func TestDMap1(t *testing.T) { "b": "from STATS select count($line),last($time)," + "avg($goroutines),min(concurrentConnections),max(lifetimeConnections) " + "group by $hostname where lifetimeConnections >= 3", + "c": "from STATS select count($line),last($time)," + + "avg($goroutines),min(concurrentConnections),max(lifetimeConnections) " + + "group by $hostname where $time eq \"20211002-071949\"", } for subtestName, query := range testTable { -- cgit v1.2.3