Skip to content

Commit c286013

Browse files
committed
Suppress DISTRIBUTED BY notices in bfv_joins test
1 parent 09a3c83 commit c286013

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/regress/expected/bfv_joins.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4199,7 +4199,7 @@ ERROR: Passing parameters across motion is not supported. (cdbmutate.c:3701)
41994199
do $$
42004200
begin
42014201
for i in 1..20 loop
4202-
execute 'create table tj' || i || '(id int)';
4202+
execute 'create table tj' || i || '(id int) distributed by (id)';
42034203
end loop;
42044204
end
42054205
$$;

src/test/regress/expected/bfv_joins_optimizer.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4192,7 +4192,7 @@ ERROR: Passing parameters across motion is not supported. (cdbmutate.c:3701)
41924192
do $$
41934193
begin
41944194
for i in 1..20 loop
4195-
execute 'create table tj' || i || '(id int)';
4195+
execute 'create table tj' || i || '(id int) distributed by (id)';
41964196
end loop;
41974197
end
41984198
$$;

src/test/regress/sql/bfv_joins.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ cross join lateral
649649
do $$
650650
begin
651651
for i in 1..20 loop
652-
execute 'create table tj' || i || '(id int)';
652+
execute 'create table tj' || i || '(id int) distributed by (id)';
653653
end loop;
654654
end
655655
$$;

0 commit comments

Comments
 (0)