Skip to content

Commit 08b7ce7

Browse files
committed
Fixing incorrect coalesce test value
1 parent 9126c8e commit 08b7ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/go/regression_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func TestRegressions(t *testing.T) {
4646
Assertions: []ScriptTestAssertion{
4747
{
4848
Query: "select coalesce(null + 5, 100);",
49-
Expected: []sql.Row{{"100"}},
49+
Expected: []sql.Row{{100}},
5050
},
5151
{
5252
Query: "select coalesce(null, null, 'abc');",

0 commit comments

Comments
 (0)