Skip to content

Commit 0272689

Browse files
committed
Drop unit test additions; rely on end-to-end coverage
The capitalized JSONB case is already exercised by the internal/endtoend/testdata/jsonb/sqlite fixture.
1 parent 82d68a5 commit 0272689

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internal/compiler/selector_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ func TestSelector(t *testing.T) {
3030
selectorExpectColumnExpr(t, selector, "my_column", "my_column", &Column{DataType: "integer"})
3131
selectorExpectColumnExpr(t, selector, "my_column", "my_column", &Column{DataType: "json"})
3232
selectorExpectColumnExpr(t, selector, "json(my_column)", "my_column", &Column{DataType: "jsonb"})
33-
selectorExpectColumnExpr(t, selector, "json(my_column)", "my_column", &Column{DataType: "JSONB"})
34-
selectorExpectColumnExpr(t, selector, "json(my_column)", "my_column", &Column{DataType: "JsonB"})
3533
selectorExpectColumnExpr(t, selector, "my_column", "my_column", &Column{DataType: "text"})
3634
})
3735
}

0 commit comments

Comments
 (0)