Skip to content

Commit 95039d3

Browse files
tuhaihegfphoenix78
authored andcommitted
Cleanup: remove old brand name in files
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 7a0775c commit 95039d3

4 files changed

Lines changed: 0 additions & 44 deletions

File tree

src/test/regress/expected/aqumv.out

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3173,32 +3173,16 @@ 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.
3177-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31783176
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31793177
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31803178
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
31813179
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.
3183-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31843180
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.
3186-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31873181
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.
3189-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31903182
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.
3192-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31933183
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.
3195-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31963184
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.
3198-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
31993185
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.
3201-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
32023186
set enable_answer_query_using_materialized_views = on;
32033187
explain(costs off, verbose)
32043188
select count(*) from par;

src/test/regress/expected/gp_runtime_filter.out

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -391,11 +391,7 @@ 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.
395-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
396394
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.
398-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
399395
INSERT INTO t1 SELECT GENERATE_SERIES(1, 1000), GENERATE_SERIES(1, 1000);
400396
INSERT INTO t2 SELECT * FROM t1;
401397
SET gp_enable_runtime_filter_pushdown TO on;
@@ -426,8 +422,6 @@ DROP TABLE IF EXISTS t2;
426422
NOTICE: table "t2" does not exist, skipping
427423
CREATE TABLE t1(c1 int, c2 int, c3 char(50), c4 char(50), c5 char(50)) DISTRIBUTED REPLICATED;
428424
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.
430-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
431425
INSERT INTO t1 VALUES (5,5,5,5,5), (3,3,3,3,3), (4,4,4,4,4);
432426
INSERT INTO t2 VALUES (1,1,1,1,1), (2,2,2,2,2), (3,3,3,3,3), (4,4,4,4,4);
433427
INSERT INTO t1 SELECT * FROM t1;

src/test/regress/expected/gpctas_optimizer.out

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +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.
260-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
261259
insert into ctas_input select * from generate_series(1, 10);
262260
CREATE FUNCTION ctas_inputArray() RETURNS INT[] AS $$
263261
DECLARE theArray INT[];
@@ -270,8 +268,6 @@ $$ LANGUAGE plpgsql;
270268
create table ctas_output as select ctas_inputArray()::int[] as x;
271269
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
272270
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.
274-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
275271
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
276272
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: Non-Scalar Subquery
277273
-- Test CTAS with VALUES.
@@ -331,8 +327,6 @@ $BODY$ LANGUAGE SQL IMMUTABLE
331327
DROP TABLE IF EXISTS unnest_2d_tbl01;
332328
NOTICE: table "unnest_2d_tbl01" does not exist, skipping
333329
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.
335-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
336330
INSERT INTO unnest_2d_tbl01 VALUES
337331
(1, ARRAY[[1::float8,2],[3::float8,4],[5::float8,6],[7::float8,8]]),
338332
(2, ARRAY[[101::float8,202],[303::float8,404],[505::float8,606]])
@@ -342,13 +336,9 @@ NOTICE: table "unnest_2d_tbl01_out" does not exist, skipping
342336
-- The following CTAS fails previously, see Github Issue 9365
343337
CREATE TABLE unnest_2d_tbl01_out AS
344338
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.
346-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
347339
-- Github issue 9790.
348340
-- Previously, CTAS with no data won't handle the 'WITH' clause
349341
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.
351-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
352342
CREATE TABLE ctas_aocs WITH (appendonly=true, orientation=column) AS SELECT * FROM ctas_base WITH NO DATA;
353343
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause. Creating a NULL policy entry.
354344
SELECT * FROM ctas_aocs;
@@ -406,13 +396,9 @@ create or replace function mv_action_select_issue_11999() returns bool language
406396
create materialized view sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
407397
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
408398
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.
410-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
411399
create table t_sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
412400
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
413401
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.
415-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
416402
select count(*)
417403
from
418404
(
@@ -467,8 +453,6 @@ AS $function$declare cname refcursor = 'result'; begin open cname for select 1;
467453
SELECT exception_func() INTO TEMPORARY test_tmp1;
468454
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
469455
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.
471-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
472456
SELECT * FROM test_tmp1;
473457
exception_func
474458
----------------
@@ -478,8 +462,6 @@ SELECT * FROM test_tmp1;
478462
CREATE TEMPORARY TABLE test_tmp2 AS SELECT exception_func();
479463
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
480464
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.
482-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
483465
SELECT * FROM test_tmp2;
484466
exception_func
485467
----------------

src/test/regress/expected/select_into.out

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +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.
218-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
219217
QUERY PLAN
220218
------------------------------------------------
221219
Redistribute Motion 1:3 (slice1; segments: 1)
@@ -224,8 +222,6 @@ HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sur
224222
(3 rows)
225223

226224
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.
228-
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
229225
select * from empty_tl;
230226
--
231227
(11 rows)

0 commit comments

Comments
 (0)