Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/regress/expected/bfv_joins.out
Original file line number Diff line number Diff line change
Expand Up @@ -4193,7 +4193,7 @@ ERROR: FULL JOIN is only supported with merge-joinable or hash-joinable join co
do $$
begin
for i in 1..20 loop
execute 'create table tj' || i || '(id int)';
execute 'create table tj' || i || '(id int) distributed by (id)';
end loop;
end
$$;
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/expected/bfv_joins_optimizer.out
Original file line number Diff line number Diff line change
Expand Up @@ -4210,7 +4210,7 @@ ERROR: FULL JOIN is only supported with merge-joinable or hash-joinable join co
do $$
begin
for i in 1..20 loop
execute 'create table tj' || i || '(id int)';
execute 'create table tj' || i || '(id int) distributed by (id)';
end loop;
end
$$;
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/sql/bfv_joins.sql
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ explain SELECT 1 FROM ext_stats_tbl t11 FULL JOIN ext_stats_tbl t12 ON t12.c2;
do $$
begin
for i in 1..20 loop
execute 'create table tj' || i || '(id int)';
execute 'create table tj' || i || '(id int) distributed by (id)';
end loop;
end
$$;
Expand Down
Loading