This is an automated email from the ASF dual-hosted git repository.

leborchuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudberry.git


The following commit(s) were added to refs/heads/main by this push:
     new 41c1750b97e Suppress DISTRIBUTED BY notices in bfv_joins test (#1612)
41c1750b97e is described below

commit 41c1750b97ec7d8d04f5d0afbe5e1f14bcd0118b
Author: Alena Rybakina <[email protected]>
AuthorDate: Thu Mar 12 14:22:26 2026 +0300

    Suppress DISTRIBUTED BY notices in bfv_joins test (#1612)
    
    (cherry picked from commit 5794f50416361e8528ae5dfea269eee50261a741)
    
    Co-authored-by: Leonid <[email protected]>
---
 src/test/regress/expected/bfv_joins.out           | 2 +-
 src/test/regress/expected/bfv_joins_optimizer.out | 2 +-
 src/test/regress/sql/bfv_joins.sql                | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/regress/expected/bfv_joins.out 
b/src/test/regress/expected/bfv_joins.out
index 593c0797b96..b804fbbb2a7 100644
--- a/src/test/regress/expected/bfv_joins.out
+++ b/src/test/regress/expected/bfv_joins.out
@@ -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
 $$;
diff --git a/src/test/regress/expected/bfv_joins_optimizer.out 
b/src/test/regress/expected/bfv_joins_optimizer.out
index c5585098961..aeabcb036d5 100644
--- a/src/test/regress/expected/bfv_joins_optimizer.out
+++ b/src/test/regress/expected/bfv_joins_optimizer.out
@@ -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
 $$;
diff --git a/src/test/regress/sql/bfv_joins.sql 
b/src/test/regress/sql/bfv_joins.sql
index 59208087808..d77e25289c6 100644
--- a/src/test/regress/sql/bfv_joins.sql
+++ b/src/test/regress/sql/bfv_joins.sql
@@ -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
 $$;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to