Skip to content

Commit 564109b

Browse files
craig[bot]ZhouXing19
andcommitted
Merge #154652
154652: sql/execbuilder: specify the column family with jsonb_path_query tests r=ZhouXing19 a=ZhouXing19 Fixes: #154634 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 setting the column family. Release note: None Co-authored-by: ZhouXing19 <[email protected]>
2 parents ff83979 + 985c222 commit 564109b

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)