Skip to content

Commit 4f15192

Browse files
committed
Cleanup: update old brand to Apache Cloudberry
In this PR, delete these lines with old brand `Cloudberry Database` in some files. This PR is used for cleaning up for better compliance with ASF rules.
1 parent f10e493 commit 4f15192

4 files changed

Lines changed: 0 additions & 22 deletions

File tree

src/test/regress/expected/aqumv.out

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3173,31 +3173,23 @@ abort;
31733173
create table par(a int, b int, c int) partition by range(b)
31743174
subpartition by range(c) subpartition template (start (1) end (3) every (1))
31753175
(start(1) end(3) every(1));
3176-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
31773176
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31783177
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31793178
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31803179
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31813180
create materialized view mv_par as select count(*) from par;
3182-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31833181
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31843182
create materialized view mv_par1 as select count(*) from par_1_prt_1;
3185-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31863183
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31873184
create materialized view mv_par1_1 as select count(*) from par_1_prt_1_2_prt_1;
3188-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31893185
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31903186
create materialized view mv_par1_2 as select count(*) from par_1_prt_1_2_prt_2;
3191-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31923187
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31933188
create materialized view mv_par2 as select count(*) from par_1_prt_2;
3194-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31953189
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31963190
create materialized view mv_par2_2 as select count(*) from par_1_prt_2_2_prt_1;
3197-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
31983191
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31993192
create materialized view mv_par_prune as select count(*) from par where b = 1;
3200-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'count' as the Cloudberry Database data distribution key for this table.
32013193
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
32023194
set enable_answer_query_using_materialized_views = on;
32033195
explain(costs off, verbose)

src/test/regress/expected/gp_runtime_filter.out

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,8 @@ NOTICE: table "t1" does not exist, skipping
391391
DROP TABLE IF EXISTS t2;
392392
NOTICE: table "t2" does not exist, skipping
393393
CREATE TABLE t1(c1 int, c2 int);
394-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'c1' as the Cloudberry Database data distribution key for this table.
395394
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
396395
CREATE TABLE t2(c1 int, c2 int);
397-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'c1' as the Cloudberry Database data distribution key for this table.
398396
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
399397
INSERT INTO t1 SELECT GENERATE_SERIES(1, 1000), GENERATE_SERIES(1, 1000);
400398
INSERT INTO t2 SELECT * FROM t1;
@@ -426,7 +424,6 @@ DROP TABLE IF EXISTS t2;
426424
NOTICE: table "t2" does not exist, skipping
427425
CREATE TABLE t1(c1 int, c2 int, c3 char(50), c4 char(50), c5 char(50)) DISTRIBUTED REPLICATED;
428426
CREATE TABLE t2(c1 int, c2 int, c3 char(50), c4 char(50), c5 char(50));
429-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'c1' as the Cloudberry Database data distribution key for this table.
430427
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
431428
INSERT INTO t1 VALUES (5,5,5,5,5), (3,3,3,3,3), (4,4,4,4,4);
432429
INSERT INTO t2 VALUES (1,1,1,1,1), (2,2,2,2,2), (3,3,3,3,3), (4,4,4,4,4);

src/test/regress/expected/gpctas_optimizer.out

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ select action::text, b from ctas_baz order by 1,2 limit 5;
256256
-- Once upon a time, we had a bug in dispatching the table's OID in this
257257
-- scenario.
258258
create table ctas_input(x int);
259-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'x' as the Cloudberry Database data distribution key for this table.
260259
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
261260
insert into ctas_input select * from generate_series(1, 10);
262261
CREATE FUNCTION ctas_inputArray() RETURNS INT[] AS $$
@@ -270,7 +269,6 @@ $$ LANGUAGE plpgsql;
270269
create table ctas_output as select ctas_inputArray()::int[] as x;
271270
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
272271
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: SIRV functions
273-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'x' as the Cloudberry Database data distribution key for this table.
274272
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
275273
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
276274
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: Non-Scalar Subquery
@@ -331,7 +329,6 @@ $BODY$ LANGUAGE SQL IMMUTABLE
331329
DROP TABLE IF EXISTS unnest_2d_tbl01;
332330
NOTICE: table "unnest_2d_tbl01" does not exist, skipping
333331
CREATE TABLE unnest_2d_tbl01 (id INT, val DOUBLE PRECISION[][]);
334-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'id' as the Cloudberry Database data distribution key for this table.
335332
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
336333
INSERT INTO unnest_2d_tbl01 VALUES
337334
(1, ARRAY[[1::float8,2],[3::float8,4],[5::float8,6],[7::float8,8]]),
@@ -342,12 +339,10 @@ NOTICE: table "unnest_2d_tbl01_out" does not exist, skipping
342339
-- The following CTAS fails previously, see Github Issue 9365
343340
CREATE TABLE unnest_2d_tbl01_out AS
344341
SELECT id, (array_unnest_2d_to_1d(val)).* FROM unnest_2d_tbl01;
345-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'id' as the Cloudberry Database data distribution key for this table.
346342
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
347343
-- Github issue 9790.
348344
-- Previously, CTAS with no data won't handle the 'WITH' clause
349345
CREATE TABLE ctas_base(a int, b int);
350-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
351346
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
352347
CREATE TABLE ctas_aocs WITH (appendonly=true, orientation=column) AS SELECT * FROM ctas_base WITH NO DATA;
353348
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause. Creating a NULL policy entry.
@@ -406,12 +401,10 @@ create or replace function mv_action_select_issue_11999() returns bool language
406401
create materialized view sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
407402
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
408403
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: SIRV functions
409-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'mv_action_select_issue_11999' as the Cloudberry Database data distribution key for this table.
410404
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
411405
create table t_sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
412406
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
413407
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: SIRV functions
414-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'mv_action_select_issue_11999' as the Cloudberry Database data distribution key for this table.
415408
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
416409
select count(*)
417410
from
@@ -467,7 +460,6 @@ AS $function$declare cname refcursor = 'result'; begin open cname for select 1;
467460
SELECT exception_func() INTO TEMPORARY test_tmp1;
468461
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
469462
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: SIRV functions
470-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named '' as the Cloudberry Database data distribution key for this table.
471463
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
472464
SELECT * FROM test_tmp1;
473465
exception_func
@@ -478,7 +470,6 @@ SELECT * FROM test_tmp1;
478470
CREATE TEMPORARY TABLE test_tmp2 AS SELECT exception_func();
479471
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
480472
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: SIRV functions
481-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named '' as the Cloudberry Database data distribution key for this table.
482473
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
483474
SELECT * FROM test_tmp2;
484475
exception_func

src/test/regress/expected/select_into.out

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ LINE 1: INSERT INTO b SELECT 1 INTO f;
214214
-- Empty target list
215215
--
216216
explain (costs off) select into empty_tl from generate_series(0, 10);
217-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named '' as the Cloudberry Database data distribution key for this table.
218217
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
219218
QUERY PLAN
220219
------------------------------------------------
@@ -224,7 +223,6 @@ HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sur
224223
(3 rows)
225224

226225
select into empty_tl from generate_series(0, 10);
227-
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named '' as the Cloudberry Database data distribution key for this table.
228226
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
229227
select * from empty_tl;
230228
--

0 commit comments

Comments
 (0)