This is an automated email from the ASF dual-hosted git repository.

tuhaihe pushed a change to branch REL_2_STABLE
in repository https://gitbox.apache.org/repos/asf/cloudberry.git


    from 6c230b3f900 regression fixes
     new 24c04d80320 Restrict accesses to non-system views and foreign tables 
during pg_dump.
     new f830840a290 pg_dump/psql: properly recognize GP
     new b629fc1e975 Avoid invoking PQfnumber in loop constructs
     new ad69a307dd8 pg_dump: Reorganize getTables()
     new 462c1b5a7c5 Refactor pg_dump's tracking of object components to be 
dumped.
     new 2e9632afed1 Rethink pg_dump's handling of object ACLs.
     new 5fac3501fb1 Avoid per-object queries in performance-critical paths in 
pg_dump.
     new 3beba4e6209 Use PREPARE/EXECUTE for repetitive per-object queries in 
pg_dump.
     new 5bf3cd89bb0 pg_dump: Refactor getIndexes()
     new 8bc719d8cfc pg_dump: minor performance improvements from eliminating 
sub-SELECTs.
     new 319060692d6 pg_dump: Remove dead code.
     new 5063100b3a2 pg_dump: Fix getTables parrelid
     new 52582010cc9 pg_dump: Put GPDB global vars in DumpOptions
     new 6b94b7766c3 pg_dump: Formatting fixes and code cleanup
     new 8d1a488b622 Remove unnecessary partitioning checks in pg_dump
     new db98ef2dba5 pg_dump: Remove DumpOptions argument from testGPbackend
     new dbc9c8b1993 pg_dump: Update child partition metadata for GPDB{5,6}
     new deb75641236 pg_dump: Omit BYPASSRLS clause for pre GPDB7 server
     new b547b9ad1a2 pg_dump: Move partition def queries to getTables
     new 1e2726b4ba1 pg_dump: Define macros for GPDB{5-7} Postgres major version
     new 81989825cee pg_dump: Remove unneeded version check for 
quote_all_identifiers
     new 92751de669d Fix external protocol dump from gp6 using gp7 pg_dump. As 
in gp6 there is no objtype abbreviation E in 'acldefault' fuction.
     new 51c5bf00b45 Fix pg_dump small bug (#14991)
     new 2003261fcd7 Allow pg_dump to include/exclude child tables 
automatically.
     new e9d1e4dee04 Add getPartitionDefs function to pg_dump
     new 5c669919a67 Postpone calls of unsafe server-side functions in pg_dump.
     new fdd95f9a50e pg_dumpall: dump 6x resource groups correctly for 6 > 7 
upgrade
     new 00a05d4c326 pg_dump: fix --function-oid when --relation-oid is also 
used
     new 39cb75073d2 Fix dumping funcs/aggs with --function-oids flag.
     new c7c6a98126a pg_dump: exclude gp_toolkit from being dumped when 
upgrading from GPDB6
     new 61a9a4cd7b1 pg_dumpall: Fix syntax error when dumping RGs
     new ea3a7f9fd1e Remove a fixme referring selectSourceSchema()

The 32 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 contrib/postgres_fdw/expected/postgres_fdw.out     |   11 +
 contrib/postgres_fdw/sql/postgres_fdw.sql          |    8 +
 doc/src/sgml/config.sgml                           |   17 +
 doc/src/sgml/ref/pg_dump.sgml                      |   46 +
 gpMgmt/test/behave/mgmt_utils/environment.py       |    1 +
 gpMgmt/test/behave/mgmt_utils/minirepro.feature    |   12 +
 src/backend/foreign/foreign.c                      |   10 +
 src/backend/optimizer/plan/createplan.c            |   13 +
 src/backend/optimizer/util/plancat.c               |   12 +
 src/backend/rewrite/rewriteHandler.c               |   17 +
 src/backend/tcop/postgres.c                        |   63 +
 src/backend/utils/misc/guc.c                       |   15 +-
 src/bin/pg_dump/common.c                           |    4 +
 src/bin/pg_dump/dumputils.c                        |  507 +-
 src/bin/pg_dump/dumputils.h                        |   13 +-
 src/bin/pg_dump/pg_backup.h                        |   31 +
 src/bin/pg_dump/pg_backup_db.c                     |    9 +-
 src/bin/pg_dump/pg_dump.c                          | 6309 ++++++++++----------
 src/bin/pg_dump/pg_dump.h                          |  141 +-
 src/bin/pg_dump/pg_dumpall.c                       |  145 +-
 src/bin/pg_dump/t/002_pg_dump.pl                   |  508 +-
 src/bin/psql/describe.c                            |   42 +-
 src/fe_utils/string_utils.c                        |   63 +
 src/include/fe_utils/string_utils.h                |    1 +
 src/include/tcop/tcopprot.h                        |    9 +
 src/include/utils/unsync_guc_name.h                |    1 +
 src/test/regress/expected/create_view.out          |   43 +-
 .../regress/expected/create_view_optimizer.out     |   43 +-
 src/test/regress/sql/create_view.sql               |   32 +
 29 files changed, 4224 insertions(+), 3902 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to