Skip to content

Commit

Permalink
Fix the regression failure for renaming project
Browse files Browse the repository at this point in the history
Per as the regression diffs, update the files to fix the regression
files failure.
  • Loading branch information
tuhaihe committed Dec 11, 2024
1 parent db79d34 commit 2cb9d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
10 changes: 1 addition & 9 deletions src/test/regress/expected/bfv_joins_optimizer.out
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,14 @@ create table y (a int, b int, c int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
insert into y (select * from x);
<<<<<<< HEAD
CREATE TABLE t1 (a int, b int, c int not null);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Greenplum Database data distribution key for this table.
||||||| parent of e54c349fc1 (Doc: rename old name to Apache Cloudberry)
CREATE TABLE t1 (a int, b int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
=======
CREATE TABLE t1 (a int, b int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
>>>>>>> e54c349fc1 (Doc: rename old name to Apache Cloudberry)
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
CREATE TABLE t2 (a int, b int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
CREATE TABLE t3 (a int not null, b int, c int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Greenplum Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO t1 VALUES (1,1,1),(2,1,2),(3,NULL,3);
INSERT INTO t2 VALUES (2,3);
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/expected/qp_misc_rio_join_small.out
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CREATE TABLE my_tt_agg_small (
--
COPY my_tt_agg_small (symbol, event_ts, trade_price, trade_volume) FROM stdin;
--
-- Apache Cloudberry dump complete
-- Apache Cloudberry database dump complete
--
--
-- Apache Cloudberry database dump
Expand Down

0 comments on commit 2cb9d44

Please sign in to comment.