Skip to content

Commit 985c222

Browse files
committed
sql/execbuilder: specify the column family with jsonb_path_query tests
Previously we didn't specify the column family in the definition of the table, leading to inderterministic for Scan response from kvbatcher. This commit is to fix it with explicitly set the column family. Release note: None
1 parent b0f5e8c commit 985c222

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/sql/opt/exec/execbuilder/testdata/jsonb_path_query

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
statement ok
55
CREATE TABLE json_tab (
66
a INT PRIMARY KEY,
7-
b JSONB
7+
b JSONB,
8+
FAMILY f1 (a, b)
89
)
910

1011
statement ok

0 commit comments

Comments
 (0)