Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
colincadams committed May 27, 2023
1 parent 3e3978b commit c8bdbe7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit c8bdbe7

Please sign in to comment.