Skip to content

Commit

Permalink
Epic: Rebrand Names and URLs for ASF Compliance
Browse files Browse the repository at this point in the history
This commit consolidates changes to align the project with ASF brand
standards, improve clarity, and ensure consistent naming and
references throughout the codebase.

Key Changes:

1. Rebranding

* Renamed all instances of `Cloudberry Database`, `CloudberryDB`, and
  similar terms to `Apache Cloudberry` or `Cloudberry` as appropriate.
* Applied consistent naming across:
  - `contrib/*`
  - `gpAux/*`
  - `gpMgmt/*`
  - `gpcontrib/*`
  - `src/*` (e.g., src/backend, src/bin, src/include, src/test, etc.)
  - `doc/*`

2. URL Updates

* Updated outdated GitHub repository links to the new Apache project
  location.

These changes are part of an ongoing effort to ensure ASF compliance.
  • Loading branch information
tuhaihe committed Dec 16, 2024
1 parent 3325fed commit 397e660
Show file tree
Hide file tree
Showing 721 changed files with 3,415 additions and 3,415 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ feedback, and chat:
| Slack | [Click to Join](https://inviter.co/apache-cloudberry) the real-time chat on Slack for QA, Dev, Events, and more. Don't miss out! Check out the [Slack guide](https://cloudberry.apache.org/community/slack) to learn more. |
| Q&A | Ask for help when running/developing Cloudberry, visit [GitHub Discussions - QA](https://github.com/apache/cloudberry/discussions/categories/q-a). |
| New ideas / Feature Requests | Share ideas for new features, visit [GitHub Discussions - Ideas](https://github.com/apache/cloudberry/discussions/categories/ideas-feature-requests). |
| Report bugs | Problems and issues in Apache Cloudberry core. If you find bugs, welcome to submit them [here](https://github.com/apache/cloudberrydb/issues). |
| Report bugs | Problems and issues in Apache Cloudberry core. If you find bugs, welcome to submit them [here](https://github.com/apache/cloudberry/issues). |
| Report a security vulnerability | View our [security policy](https://github.com/apache/cloudberry/security/policy) to learn how to report and contact us. |
| Community events | Including meetups, webinars, conferences, and more events, visit the [Events page](https://cloudberry.apache.org/community/events) and subscribe events calendar. |
| Documentation | [Official documentation](https://cloudberry.apache.org/docs/) for Cloudberry. You can explore it to discover more details about us. |
Expand All @@ -91,7 +91,7 @@ with the contribution.
## Roadmap

You can check our [Cloudberry Roadmap
2024](https://github.com/orgs/cloudberrydb/discussions/369) out to see the
2024](https://github.com/orgs/cloudberry/discussions/369) out to see the
product plans and goals we want to achieve in 2024. Welcome to share your
thoughts and ideas to join us in shaping the future of Apache Cloudberry
(Incubating). (We will update the Roadmap after entering the Incubator.)
Expand Down
2 changes: 1 addition & 1 deletion config/programs.m4
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ else
break 2
else
AC_MSG_WARN([
*** The installed version of Flex, $pgac_candidate, is too old to use with Cloudberry DB.
*** The installed version of Flex, $pgac_candidate, is too old to use with Apache Cloudberry.
*** Flex version 2.5.4 or later is required, but this is $pgac_flex_version.])
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -11763,10 +11763,10 @@ else
break 2
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** The installed version of Flex, $pgac_candidate, is too old to use with Cloudberry DB.
*** The installed version of Flex, $pgac_candidate, is too old to use with Apache Cloudberry.
*** Flex version 2.5.4 or later is required, but this is $pgac_flex_version." >&5
$as_echo "$as_me: WARNING:
*** The installed version of Flex, $pgac_candidate, is too old to use with Cloudberry DB.
*** The installed version of Flex, $pgac_candidate, is too old to use with Apache Cloudberry.
*** Flex version 2.5.4 or later is required, but this is $pgac_flex_version." >&2;}
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions contrib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global

# Cloudberry Database specific changes to the targetlist:
# Apache Cloudberry specific changes to the targetlist:
# tsearch2 and postgres_fdw are currently disabled due to test failures.
# cube and the related earthdistance are disabled since GPDB define CUBE
# as a keyword. lo is disabled since large objects aren't supported.
Expand Down Expand Up @@ -55,7 +55,7 @@ SUBDIRS = \
unaccent \
vacuumlo

# CloudberryDB-specific additions (to ease merge pain).
# Cloudberry-specific additions (to ease merge pain).
SUBDIRS += \
formatter \
formatter_fixedwidth \
Expand Down
4 changes: 2 additions & 2 deletions contrib/auto_explain/expected/auto_explain.out
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
-- end_matchsubs
CREATE SCHEMA auto_explain_test;
CREATE TABLE auto_explain_test.t1(a int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO auto_explain_test.t1 VALUES(generate_series(0, 1000));
ANALYZE auto_explain_test.t1;
CREATE TABLE auto_explain_test.t2(b int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'b' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'b' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO auto_explain_test.t2 VALUES(generate_series(0, 1000));
ANALYZE auto_explain_test.t2;
Expand Down
4 changes: 2 additions & 2 deletions contrib/auto_explain/expected/auto_explain_optimizer.out
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
-- end_matchsubs
CREATE SCHEMA auto_explain_test;
CREATE TABLE auto_explain_test.t1(a int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO auto_explain_test.t1 VALUES(generate_series(0, 1000));
ANALYZE auto_explain_test.t1;
CREATE TABLE auto_explain_test.t2(b int);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'b' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'b' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO auto_explain_test.t2 VALUES(generate_series(0, 1000));
ANALYZE auto_explain_test.t2;
Expand Down
4 changes: 2 additions & 2 deletions contrib/bloom/expected/bloom.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CREATE TABLE tst (
i int4,
t text
);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO tst SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidx ON tst USING bloom (i, t) WITH (col1 = 3);
Expand Down Expand Up @@ -154,7 +154,7 @@ CREATE UNLOGGED TABLE tstu (
i int4,
t text
);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO tstu SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidxu ON tstu USING bloom (i, t) WITH (col2 = 4);
Expand Down
4 changes: 2 additions & 2 deletions contrib/bloom/expected/bloom_optimizer.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CREATE TABLE tst (
i int4,
t text
);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO tst SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidx ON tst USING bloom (i, t) WITH (col1 = 3);
Expand Down Expand Up @@ -146,7 +146,7 @@ CREATE UNLOGGED TABLE tstu (
i int4,
t text
);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'i' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
INSERT INTO tstu SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidxu ON tstu USING bloom (i, t) WITH (col2 = 4);
Expand Down
2 changes: 1 addition & 1 deletion contrib/btree_gist/init_file
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# modify the corresponding expected output. Hence we want to ignore these.
# Some of the messages include:
#
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named '<colname>' as the Cloudberry Database data distribution key for this table.
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named '<colname>' as the Apache Cloudberry data distribution key for this table.
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause, defaulting to distribution columns from LIKE table
# HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
#
Expand Down
2 changes: 1 addition & 1 deletion contrib/file_fdw/init_file
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ m/^ Settings:.*/
# modify the corresponding expected output. Hence we want to ignore these.
# Some of the messages include:
#
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named '<colname>' as the Cloudberry Database data distribution key for this table.
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named '<colname>' as the Apache Cloudberry data distribution key for this table.
# NOTICE: Table doesn't have 'DISTRIBUTED BY' clause, defaulting to distribution columns from LIKE table
# HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
#
Expand Down
2 changes: 1 addition & 1 deletion contrib/file_fdw/input/gp_file_fdw.source
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Test foreign-data wrapper file_fdw. Cloudberry Database MPP specific
-- Test foreign-data wrapper file_fdw. Apache Cloudberry MPP specific
--

-- Clean up in case a prior regression run failed
Expand Down
2 changes: 1 addition & 1 deletion contrib/file_fdw/output/gp_file_fdw.source
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Test foreign-data wrapper file_fdw. Cloudberry Database MPP specific
-- Test foreign-data wrapper file_fdw. Apache Cloudberry MPP specific
--
-- Clean up in case a prior regression run failed
SET client_min_messages TO 'error';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ NOTICE: table "heap_col_null" does not exist, skipping
CREATE TABLE heap_col_null (
s1 char(10), s2 varchar(10), s3 text,
col_empty character(5),col_null character varying(5) default 'NULL' );
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 's1' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 's1' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
\d heap_col_null
Table "public.heap_col_null"
Expand Down
6 changes: 3 additions & 3 deletions contrib/hstore/expected/hstore.out
Original file line number Diff line number Diff line change
Expand Up @@ -922,10 +922,10 @@ select hstore(v) from (values (1, 'foo', 1.2, 3::float8)) v(a,b,c,d);

create domain hstestdom1 as integer not null default 0;
create table testhstore0 (a integer, b text, c numeric, d float8);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
create table testhstore1 (a integer, b text, c numeric, d float8, e hstestdom1);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
insert into testhstore0 values (1, 'foo', 1.2, 3::float8);
insert into testhstore1 values (1, 'foo', 1.2, 3::float8);
Expand Down Expand Up @@ -1273,7 +1273,7 @@ select 'a=>b, b=>1, c=>NULL'::hstore @> 'a=>b, c=>q';
(1 row)

CREATE TABLE testhstore (h hstore);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'h' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'h' as the Apache Cloudberry data distribution key for this table.
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 testhstore from 'data/hstore.data'
select count(*) from testhstore where h @> 'wait=>NULL';
Expand Down
2 changes: 1 addition & 1 deletion contrib/hstore_plperl/expected/create_transform.out
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ NOTICE: transform for type hstore language "plperl" does not exist, skipping
-- test pg_stat_last_operation
CREATE TRANSFORM FOR hstore LANGUAGE plperl (FROM SQL WITH FUNCTION hstore_to_plperl(internal), TO SQL WITH FUNCTION plperl_to_hstore(internal));
SELECT oid INTO temp transform_oid FROM pg_transform WHERE trfFROMsql='hstore_to_plperl'::regproc AND trftosql='plperl_to_hstore'::regproc;
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'oid' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column(s) named 'oid' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
SELECT COUNT(*) = 1 FROM pg_stat_last_operation WHERE classid='pg_transform'::regclass AND objid=(SELECT oid FROM transform_oid limit 1);
?column?
Expand Down
2 changes: 1 addition & 1 deletion contrib/indexscan/expected/read_ao_index.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
drop table if exists ao_t1;
drop index if exists ao_i1;
create table ao_t1 (a integer, b integer) with (appendonly=true);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
insert into ao_t1 select 1 as a, * from generate_series(1, 1000) as b;
create index ao_i1 on ao_t1(b);
Expand Down
2 changes: 1 addition & 1 deletion contrib/indexscan/expected/read_co_index.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
drop table if exists co_t1;
drop index if exists co_i1;
create table co_t1 (a integer, b integer) with (appendonly=true, orientation=column);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
insert into co_t1 select 1 as a, * from generate_series(1, 1000) as b;
create index co_i1 on co_t1(b);
Expand Down
2 changes: 1 addition & 1 deletion contrib/indexscan/expected/read_heap_index.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
drop table if exists heap_t1;
drop index if exists heap_i1;
create table heap_t1 (a integer, b integer);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
insert into heap_t1 select 1 as a, * from generate_series(1, 1000) as b;
create index heap_i1 on heap_t1(b);
Expand Down
2 changes: 1 addition & 1 deletion contrib/intarray/expected/_int.out
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ SELECT '1&(2&(4&(5|!6)))'::query_int;
(1 row)

CREATE TABLE test__int( a int[] );
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'a' as the Apache Cloudberry data distribution key for this table.
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 test__int from 'data/test__int.data'
ANALYZE test__int;
Expand Down
2 changes: 1 addition & 1 deletion contrib/intarray/package/gppkg_spec.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Architecture: #arch
Version: ossv1.1_pv1.2_gpdb4.3orca
OS: #os
GPDBVersion: 4.3
Description: Intarray provides functionality and GiST indexing capabilities for integer arrays in the Cloudberry Database.
Description: Intarray provides functionality and GiST indexing capabilities for integer arrays in the Apache Cloudberry.
PostInstall:
- Master: "echo 'Please run psql -d mydatabase -f $GPHOME/share/postgresql/contrib/_int.sql to enable the package.'"
2 changes: 1 addition & 1 deletion contrib/intarray/package/intarray.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AutoProv: no
Provides: intarray = %{intarray_ver}

%description
The intarray package provides integer array functions and GiST index support for Cloudberry Database
The intarray package provides integer array functions and GiST index support for Apache Cloudberry

%install
mkdir -p %{buildroot}/temp
Expand Down
2 changes: 1 addition & 1 deletion contrib/oid2name/oid2name.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ get_opts(int argc, char **argv, struct options *my_opts)
}
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
{
puts("oid2name (Cloudberry Database) " PG_VERSION);
puts("oid2name (Apache Cloudberry) " PG_VERSION);
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion contrib/pg_standby/pg_standby.c
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ main(int argc, char **argv)
}
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
{
puts("pg_standby (Cloudberry Database) " PG_VERSION);
puts("pg_standby (Apache Cloudberry) " PG_VERSION);
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion contrib/pgcrypto/package/gppkg_spec.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Architecture: #arch
Version: ossv1.1_pv1.2_gpdb4.3orca
OS: #os
GPDBVersion: 4.3
Description: Pgcrypto provides cryptographic functions for the Cloudberry Database.
Description: Pgcrypto provides cryptographic functions for the Apache Cloudberry.
PostInstall:
- Master: "echo 'Please run psql -d mydatabase -f $GPHOME/share/postgresql/contrib/pgcrypto.sql to enable the package.'"
4 changes: 2 additions & 2 deletions contrib/pgcrypto/package/pgcrypto.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Summary: Cryptographic functions for Cloudberry Database
Summary: Cryptographic functions for Apache Cloudberry
License: PostgreSQL License
Name: pgcrypto
Version: %{pgcrypto_ver}
Expand All @@ -10,7 +10,7 @@ AutoProv: no
Provides: pgcrypto = %{pgcrypto_ver}

%description
The Pgcrypto package provides cryptographic functions for the Cloudberry Database.
The Pgcrypto package provides cryptographic functions for the Apache Cloudberry.

%install
mkdir -p %{buildroot}/temp
Expand Down
2 changes: 1 addition & 1 deletion contrib/postgres_fdw/expected/gp_postgres_fdw.out
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ CREATE TABLE "S 1"."GP 1" (
f2 text,
f3 text
);
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'f1' as the Cloudberry Database data distribution key for this table.
NOTICE: Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'f1' as the Apache Cloudberry data distribution key for this table.
HINT: The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
-- ===================================================================
-- create foreign tables
Expand Down
Loading

0 comments on commit 397e660

Please sign in to comment.