Skip to content

Commit d1e0f7c

Browse files
craig[bot]yuzefovich
andcommitted
Merge #143174
143174: execbuilder: fix recently added flake r=michae2 a=yuzefovich In just merged f6038a1 we added EXPLAIN ANALYZE output, but that output can differ slightly based on the column family mutation done by the logic test framework (namely, with multiple column families the streamer requires the disk buffer, so `max sql temp disk usage` line would show up). This commit fixes this flakiness by hard-coding single column family for the lookup table. Fixes: #143176. Release note: None Co-authored-by: Yahor Yuzefovich <[email protected]>
2 parents a12a7cc + 30782d6 commit d1e0f7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/sql/opt/exec/execbuilder/testdata/inverted_join_geospatial

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ CREATE TABLE rtable(
1515
geom geometry,
1616
rk2 string,
1717
PRIMARY KEY (rk1, rk2),
18-
INVERTED INDEX geom_index(geom)
18+
INVERTED INDEX geom_index(geom),
19+
FAMILY (rk1, rk2, geom)
1920
)
2021

2122
query T

0 commit comments

Comments
 (0)