From c8bdbe7bbb3ef06ec4a078e4e0d79f19235c8c69 Mon Sep 17 00:00:00 2001 From: Colin Adams Date: Sat, 27 May 2023 08:50:55 -0700 Subject: [PATCH] fix test --- query_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/query_test.go b/query_test.go index 940e8c9..bde6097 100644 --- a/query_test.go +++ b/query_test.go @@ -841,7 +841,6 @@ SELECT ARRAY_CONCAT_AGG(x) AS array_concat_agg FROM ( name: "string_agg with window", query: `SELECT fruit, STRING_AGG(fruit, " & ") OVER (ORDER BY LENGTH(fruit)) FROM UNNEST(["apple", "pear", "banana", "pear"]) AS fruit`, expectedRows: [][]interface{}{ - {nil, nil}, {"pear", "pear & pear"}, {"pear", "pear & pear"}, {"apple", "pear & pear & apple"},