summaryrefslogtreecommitdiff
path: root/integrationtests
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2021-12-08 10:29:39 +0000
committerPaul Buetow <pbuetow@mimecast.com>2021-12-08 10:29:39 +0000
commit94a958723db8e0a98f9b3759fd714b6ea037e173 (patch)
tree172e7b10c49b1ce17b91cdcd5529095af9e314f8 /integrationtests
parent9a3a005c916479faef417f8e9437f2bf1b38ecdd (diff)
add string based mapreduce where clause integration test
Diffstat (limited to 'integrationtests')
-rw-r--r--integrationtests/dmap_test.go3
1 files changed, 3 insertions, 0 deletions
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 {