Skip to content

Commit 2cb9d44

Browse files
committed
Fix the regression failure for renaming project
Per as the regression diffs, update the files to fix the regression files failure.
1 parent db79d34 commit 2cb9d44

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/test/regress/expected/bfv_joins_optimizer.out

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,14 @@ create table y (a int, b int, c int);
1111
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
1212
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
1313
insert into y (select * from x);
14-
<<<<<<< HEAD
1514
CREATE TABLE t1 (a int, b int, c int not null);
16-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Greenplum Database data distribution key for this table.
17-
||||||| parent of e54c349fc1 (Doc: rename old name to Apache Cloudberry)
18-
CREATE TABLE t1 (a int, b int);
19-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
20-
=======
21-
CREATE TABLE t1 (a int, b int);
2215
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
23-
>>>>>>> e54c349fc1 (Doc: rename old name to Apache Cloudberry)
2416
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
2517
CREATE TABLE t2 (a int, b int);
2618
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
2719
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
2820
CREATE TABLE t3 (a int not null, b int, c int);
29-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Greenplum Database data distribution key for this table.
21+
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
3022
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3123
INSERT INTO t1 VALUES (1,1,1),(2,1,2),(3,NULL,3);
3224
INSERT INTO t2 VALUES (2,3);

src/test/regress/expected/qp_misc_rio_join_small.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ CREATE TABLE my_tt_agg_small (
3131
--
3232
COPY my_tt_agg_small (symbol, event_ts, trade_price, trade_volume) FROM stdin;
3333
--
34-
-- Apache Cloudberry dump complete
34+
-- Apache Cloudberry database dump complete
3535
--
3636
--
3737
-- Apache Cloudberry database dump

0 commit comments

Comments
 (0)