Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eldenmoon committed Aug 16, 2024
1 parent 39fe21e commit 01f2883
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion regression-test/data/variant_p0/variant_with_rowstore.out
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
-- !point_select --
-1 {"a":1123} {"a":1123}

-- !sql --
-- !point_select --
1 1|[""]

Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,9 @@ suite("regression_test_variant_rowstore", "variant_type"){
);
"""
sql """insert into table_rs_invalid_json values (1, '1|[""]')"""
qt_sql "select * from table_rs_invalid_json where col0 = 1"
def result2 = connect(user=user, password=password, url=prepare_url) {
def stmt = prepareStatement "select * from table_rs_invalid_json where col0 = ?"
stmt.setInt(1, 1)
qe_point_select stmt
}
}

0 comments on commit 01f2883

Please sign in to comment.