Skip to content

Commit

Permalink
Merge #137733
Browse files Browse the repository at this point in the history
137733: logictest: fix recently introduced flake r=yuzefovich a=yuzefovich

In a recently added test on some physical planning decisions, if we happened to apply the column family mutation to CREATE TABLE stmt, we'd get unexpected distsql plan.

Fixes: #137684.

Release note: None

Co-authored-by: Yahor Yuzefovich <[email protected]>
  • Loading branch information
craig[bot] and yuzefovich committed Dec 19, 2024
2 parents ff0001d + 0f24dc1 commit 2f430dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sql/opt/exec/execbuilder/testdata/distsql_join
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ EXPLAIN (VEC)
RESET vectorize

statement ok
CREATE TABLE kv (k INT PRIMARY KEY, v INT);
CREATE TABLE kv (k INT PRIMARY KEY, v INT, FAMILY (k, v));
ALTER TABLE kv SPLIT AT SELECT i FROM generate_series(1,5) AS g(i);
ALTER TABLE kv EXPERIMENTAL_RELOCATE SELECT ARRAY[i], i FROM generate_series(1, 5) as g(i);

Expand Down

0 comments on commit 2f430dc

Please sign in to comment.