You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: src/test/regress/expected/aqumv.out
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3173,31 +3173,23 @@ abort;
3173
3173
create table par(a int, b int, c int) partition by range(b)
3174
3174
subpartition by range(c) subpartition template (start (1) end (3) every (1))
3175
3175
(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
3176
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3178
3177
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3179
3178
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3180
3179
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3181
3180
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
3181
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3184
3182
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
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.
3187
3184
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
3185
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3190
3186
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
3187
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3193
3188
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
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.
3196
3190
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
3191
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3199
3192
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
3193
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
3202
3194
set enable_answer_query_using_materialized_views = on;
Copy file name to clipboardExpand all lines: src/test/regress/expected/gp_runtime_filter.out
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -391,10 +391,8 @@ NOTICE: table "t1" does not exist, skipping
391
391
DROP TABLE IF EXISTS t2;
392
392
NOTICE: table "t2" does not exist, skipping
393
393
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
394
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
396
395
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
396
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
399
397
INSERT INTO t1 SELECT GENERATE_SERIES(1, 1000), GENERATE_SERIES(1, 1000);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'c1' as the Cloudberry Database data distribution key for this table.
430
427
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
431
428
INSERT INTO t1 VALUES (5,5,5,5,5), (3,3,3,3,3), (4,4,4,4,4);
432
429
INSERT INTO t2 VALUES (1,1,1,1,1), (2,2,2,2,2), (3,3,3,3,3), (4,4,4,4,4);
Copy file name to clipboardExpand all lines: src/test/regress/expected/gpctas_optimizer.out
-9Lines changed: 0 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -256,7 +256,6 @@ select action::text, b from ctas_baz order by 1,2 limit 5;
256
256
-- Once upon a time, we had a bug in dispatching the table's OID in this
257
257
-- scenario.
258
258
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
259
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
261
260
insert into ctas_input select * from generate_series(1, 10);
262
261
CREATE FUNCTION ctas_inputArray() RETURNS INT[] AS $$
@@ -270,7 +269,6 @@ $$ LANGUAGE plpgsql;
270
269
create table ctas_output as select ctas_inputArray()::int[] as x;
271
270
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
272
271
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
272
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
275
273
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
276
274
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
331
329
DROP TABLE IF EXISTS unnest_2d_tbl01;
332
330
NOTICE: table "unnest_2d_tbl01" does not exist, skipping
333
331
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
332
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
@@ -342,12 +339,10 @@ NOTICE: table "unnest_2d_tbl01_out" does not exist, skipping
342
339
-- The following CTAS fails previously, see Github Issue 9365
343
340
CREATE TABLE unnest_2d_tbl01_out AS
344
341
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
342
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
347
343
-- Github issue 9790.
348
344
-- Previously, CTAS with no data won't handle the 'WITH' clause
349
345
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
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.
352
347
CREATE TABLE ctas_aocs WITH (appendonly=true, orientation=column) AS SELECT * FROM ctas_base WITH NO DATA;
353
348
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
406
401
create materialized view sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
407
402
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
408
403
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
404
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
411
405
create table t_sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
412
406
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
413
407
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
408
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
416
409
select count(*)
417
410
from
@@ -467,7 +460,6 @@ AS $function$declare cname refcursor = 'result'; begin open cname for select 1;
467
460
SELECT exception_func() INTO TEMPORARY test_tmp1;
468
461
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
469
462
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
463
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
472
464
SELECT * FROM test_tmp1;
473
465
exception_func
@@ -478,7 +470,6 @@ SELECT * FROM test_tmp1;
478
470
CREATE TEMPORARY TABLE test_tmp2 AS SELECT exception_func();
479
471
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
480
472
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
473
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
Copy file name to clipboardExpand all lines: src/test/regress/expected/select_into.out
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -214,7 +214,6 @@ LINE 1: INSERT INTO b SELECT 1 INTO f;
214
214
-- Empty target list
215
215
--
216
216
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
217
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
219
218
QUERY PLAN
220
219
------------------------------------------------
@@ -224,7 +223,6 @@ HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sur
224
223
(3 rows)
225
224
226
225
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
226
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
0 commit comments