Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/pax_storage/src/test/regress/sql/limit.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ select * from int8_tbl limit (case when random() < 0.5 then null::bigint end);
select * from int8_tbl offset (case when random() < 0.5 then null::bigint end);

-- Test assorted cases involving backwards fetch from a LIMIT plan node
-- Disable backward scan test which is not supported in this version of Cloudberry Database
-- Disable backward scan test which is not supported in this version of Apache Cloudberry
--start_ignore
/*
* begin;
Expand Down
16 changes: 8 additions & 8 deletions contrib/pax_storage/src/test/regress/sql/qp_misc.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- start_ignore
--
-- Cloudberry Database database dump
-- Apache Cloudberry database dump
--

SET client_encoding = 'UTF8';
Expand Down Expand Up @@ -1153,7 +1153,7 @@ ALTER TABLE ONLY tclob
ADD CONSTRAINT clobpk PRIMARY KEY (rnum);

--
-- Cloudberry Database database dump complete
-- Apache Cloudberry database dump complete
--

-- end_ignore
Expand Down Expand Up @@ -1379,7 +1379,7 @@ f1,f2,f3
) Q ) P;
-- SubqueryInCase_p1
-- test expected to fail until function supported in GPDB
-- GPDB Limitation ERROR: Cloudberry Database does not yet support that query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support that query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryInCase_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1,f2,f3, count(*) c from (
Expand Down Expand Up @@ -1452,7 +1452,7 @@ f1,f2,f3
) Q ) P;
-- SubqueryPredicateNotIn_p1
-- test expected to fail until function supported in GPDB
-- GPDB Limitation ERROR: Cloudberry Database does not yet support that query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support that query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryPredicateNotIn_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1,f2,f3, count(*) c from (
Expand Down Expand Up @@ -1507,7 +1507,7 @@ f1,f2,f3
) Q ) P;
-- SubqueryQuantifiedPredicateEmpty_p1
-- test expected to fail until GPDB support this function
-- GPDB Limitation ERROR: Cloudberry Database does not yet support this query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support this query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryQuantifiedPredicateEmpty_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1,f2,f3, count(*) c from (
Expand All @@ -1522,7 +1522,7 @@ f1,f2,f3
) Q ) P;
-- SubqueryQuantifiedPredicateLarge_p1
-- test expected to fail until GPDB supports this function
-- GPDB Limitation ERROR: Cloudberry Database does not yet support that query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support that query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryQuantifiedPredicateLarge_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1,f2,f3, count(*) c from (
Expand Down Expand Up @@ -2801,7 +2801,7 @@ f1
) Q ) P;
-- SubqueryQuantifiedPredicateNull_gp_p1
-- test expected to fail until GPDB support function
-- GPDB Limitation ERROR: Cloudberry Database does not yet support this query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support this query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryQuantifiedPredicateNull_gp_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1, count(*) c from (
Expand All @@ -2813,7 +2813,7 @@ f1
) Q ) P;
-- SubqueryQuantifiedPredicateSmall_gp_p1
-- test expected to fail until GPDB supports function
-- GPDB Limitation ERROR: Cloudberry Database does not yet support this query. DETAIL: The query contains a multi-row subquery.
-- GPDB Limitation ERROR: Apache Cloudberry does not yet support this query. DETAIL: The query contains a multi-row subquery.
select 'SubqueryQuantifiedPredicateSmall_gp_p1' test_name_part, case when c = 1 then 1 else 0 end pass_ind from (
select count(distinct c) c from (
select f1, count(*) c from (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ drop index if exists my_tt_agg_small_event_ts_ix;


--
-- Cloudberry Database database dump
-- Apache Cloudberry database dump
--

SET client_encoding = 'UTF8';
Expand Down Expand Up @@ -4042,11 +4042,11 @@ SSO 20101126114705550 415500 200
\.

--
-- Cloudberry Database database dump complete
-- Apache Cloudberry database dump complete
--

--
-- Cloudberry Database database dump
-- Apache Cloudberry database dump
--

--
Expand Down Expand Up @@ -24078,7 +24078,7 @@ CREATE INDEX my_tq_agg_small_ets_end_ts_ix ON my_tq_agg_small USING btree (ets,


--
-- Cloudberry Database database dump complete
-- Apache Cloudberry database dump complete
--

set enable_hashjoin=off;
Expand Down
2 changes: 1 addition & 1 deletion contrib/pax_storage/src/test/regress/sql/tidrangescan.sql
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ DECLARE c SCROLL CURSOR FOR SELECT ctid FROM tidrangescan WHERE ctid < '(1,0)';
FETCH NEXT c;
FETCH NEXT c;
--start_ignore
/* backward scan is not supported in this version of Cloudberry Database */
/* backward scan is not supported in this version of Apache Cloudberry */
/*
FETCH PRIOR c;
FETCH FIRST c;
Expand Down
Loading