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
-16Lines changed: 0 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -3173,32 +3173,16 @@ 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
-
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
3176
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3179
3177
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3180
3178
insert into par values(1, 1, 1), (1, 1, 2), (2, 2, 1), (2, 2, 2);
3181
3179
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.
3184
3180
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.
3187
3181
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.
3190
3182
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.
3193
3183
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.
3196
3184
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.
3199
3185
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.
3202
3186
set enable_answer_query_using_materialized_views = on;
Copy file name to clipboardExpand all lines: src/test/regress/expected/gp_runtime_filter.out
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -391,11 +391,7 @@ 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
-
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
394
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.
399
395
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
-
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
425
INSERT INTO t1 VALUES (5,5,5,5,5), (3,3,3,3,3), (4,4,4,4,4);
432
426
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
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -256,8 +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
-
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
259
insert into ctas_input select * from generate_series(1, 10);
262
260
CREATE FUNCTION ctas_inputArray() RETURNS INT[] AS $$
263
261
DECLARE theArray INT[];
@@ -270,8 +268,6 @@ $$ LANGUAGE plpgsql;
270
268
create table ctas_output as select ctas_inputArray()::int[] as x;
271
269
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
272
270
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.
275
271
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
276
272
DETAIL: Falling back to Postgres-based planner because GPORCA does not support the following feature: Non-Scalar Subquery
277
273
-- Test CTAS with VALUES.
@@ -331,8 +327,6 @@ $BODY$ LANGUAGE SQL IMMUTABLE
331
327
DROP TABLE IF EXISTS unnest_2d_tbl01;
332
328
NOTICE: table "unnest_2d_tbl01" does not exist, skipping
333
329
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.
@@ -342,13 +336,9 @@ NOTICE: table "unnest_2d_tbl01_out" does not exist, skipping
342
336
-- The following CTAS fails previously, see Github Issue 9365
343
337
CREATE TABLE unnest_2d_tbl01_out AS
344
338
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.
347
339
-- Github issue 9790.
348
340
-- Previously, CTAS with no data won't handle the 'WITH' clause
349
341
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.
352
342
CREATE TABLE ctas_aocs WITH (appendonly=true, orientation=column) AS SELECT * FROM ctas_base WITH NO DATA;
353
343
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause. Creating a NULL policy entry.
354
344
SELECT * FROM ctas_aocs;
@@ -406,13 +396,9 @@ create or replace function mv_action_select_issue_11999() returns bool language
406
396
create materialized view sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
407
397
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
408
398
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.
411
399
create table t_sro_mv_issue_11999 as select mv_action_select_issue_11999() with no data;
412
400
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
413
401
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.
416
402
select count(*)
417
403
from
418
404
(
@@ -467,8 +453,6 @@ AS $function$declare cname refcursor = 'result'; begin open cname for select 1;
467
453
SELECT exception_func() INTO TEMPORARY test_tmp1;
468
454
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
469
455
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.
472
456
SELECT * FROM test_tmp1;
473
457
exception_func
474
458
----------------
@@ -478,8 +462,6 @@ SELECT * FROM test_tmp1;
478
462
CREATE TEMPORARY TABLE test_tmp2 AS SELECT exception_func();
479
463
INFO: GPORCA failed to produce a plan, falling back to Postgres-based planner
480
464
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.
Copy file name to clipboardExpand all lines: src/test/regress/expected/select_into.out
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -214,8 +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
-
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
217
QUERY PLAN
220
218
------------------------------------------------
221
219
Redistribute Motion 1:3 (slice1; segments: 1)
@@ -224,8 +222,6 @@ HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sur
224
222
(3 rows)
225
223
226
224
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.
0 commit comments