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

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


    from 467281d916 Fix ao_filehandler for new attnum-filenum changes
     new 688bff0280 resqueue: Fix statement leak for holdable cursors
     new ee18097594 ignore tag.sql tag.out
     new 62d33aa0f6 Fix flaky test AOCO_Compression
     new fd247d855b Fix an issue with vacuum in TAP test
     new a084c9fc21 remove upsert fixme from isolation_schedule (#15636)
     new 7dfd904d1f Post fix: Change resgroup name.
     new 1eea879f72 Assert AO/CO exclusion for anti-wraparound vacuums
     new 41e8e99e49 Update distribution policy for dropping distribution key 
dependency
     new 0015f03222 Adjust sepgsql expected output for 681d9e462 et al.
     new cfed4db998 resqueue test: Close holdable cursor instead
     new 16ff096c3e Fix gp_stat_bgwriter which shows incomplete/incorrect 
results
     new 5ccfc38409 fix compiler warning for gcc-12. (#15813)
     new b6c7dbd5ca Fix another flaky aggregates ICW test (#15895)
     new 6d20299b62 Handle RLS dependencies in inlined set-returning functions 
properly.
     new a245727a4a function_extensions: Fix tmpdir ls flake
     new a3f17fe8ab Fix a flaky test die_commit_pending_replication
     new 81673445c5 Remove dead function FinalizeDirectDispatchDataForSlice() 
(#15925)
     new 1107fbd0ac Remove the deprecated 'universal newline' mode from open(). 
(#15933)
     new 065e449aa7 Fix: BaseException.message deprecated since Python 2.6 
(#15943)
     new 8072a95211 Open parallel cursors on behalf of the current user (#15820)
     new 3420d9bf83 Clean up the use of the deprecated 
unittest.TestCase.assertEquals() (#15947)
     new 2b31b258ef Add Cases for Issue 15794, 15767 and 15793.

The 22 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/sepgsql/expected/ddl.out                   |   1 -
 gpMgmt/bin/analyzedb                               |   4 +-
 .../bin/gppylib/test/unit/test_unit_gpcheckperf.py |  14 +-
 .../bin/gppylib/test/unit/test_unit_mainUtils.py   |  14 +-
 gpMgmt/test/behave/mgmt_utils/steps/mgmt_utils.py  |   6 +-
 src/backend/catalog/heap.c                         |  35 ++
 src/backend/catalog/system_views.sql               |  46 +-
 src/backend/cdb/cdbtargeteddispatch.c              |  50 --
 src/backend/cdb/endpoint/README                    |  15 +-
 src/backend/cdb/endpoint/cdbendpoint.c             |   6 +-
 src/backend/cdb/endpoint/cdbendpointutils.c        |   4 +-
 src/backend/optimizer/util/clauses.c               |   7 +
 src/backend/postmaster/autovacuum.c                |   9 +
 src/backend/storage/lmgr/lock.c                    |  16 +-
 src/backend/utils/resscheduler/resqueue.c          |   9 +-
 src/bin/pg_dump/pg_dumpall.c                       |  12 +-
 src/bin/pg_rewind/t/102_bitmaptest.pl              |  15 +-
 src/bin/pgbench/pgbench.c                          |   3 +
 src/include/cdb/cdbtargeteddispatch.h              |   1 -
 src/include/storage/lock.h                         |   7 +
 src/test/isolation/isolation_schedule              |  16 +-
 src/test/isolation2/expected/resource_queue.out    |  29 +
 .../parallel_retrieve_cursor/privilege.source      |   7 +-
 src/test/isolation2/isolation2_schedule            |   7 +-
 .../parallel_retrieve_cursor/privilege.source      |  36 +-
 src/test/isolation2/sql/resource_queue.sql         |  15 +
 src/test/perl/PostgresNode.pm                      |   2 +-
 src/test/regress/.gitignore                        |   2 +
 src/test/regress/expected/AOCO_Compression.out     |  64 +--
 src/test/regress/expected/aggregates.out           |   1 +
 src/test/regress/expected/aggregates_optimizer.out |   1 +
 .../regress/expected/alter_distribution_policy.out | 179 ++++++-
 src/test/regress/expected/alter_table.out          |  26 +-
 src/test/regress/expected/bfv_partition.out        |  28 +-
 src/test/regress/expected/bfv_subquery.out         |  54 ++
 .../regress/expected/bfv_subquery_optimizer.out    |  54 ++
 src/test/regress/expected/column_compression.out   |  12 +-
 src/test/regress/expected/function_extensions.out  |  28 +-
 .../expected/function_extensions_optimizer.out     |  28 +-
 src/test/regress/expected/generated.out            |   2 +-
 src/test/regress/expected/generated_optimizer.out  |   2 +-
 src/test/regress/expected/gporca.out               |   2 +-
 src/test/regress/expected/gporca_optimizer.out     |   2 +-
 .../expected/index_including_gist_optimizer.out    |   2 +-
 src/test/regress/expected/partition_pruning.out    |  12 +-
 .../expected/partition_pruning_optimizer.out       |  12 +-
 src/test/regress/expected/qp_dropped_cols.out      | 586 ++++++++++++---------
 .../regress/expected/qp_dropped_cols_optimizer.out | 586 ++++++++++++---------
 src/test/regress/expected/rowsecurity.out          |  27 +
 src/test/regress/expected/rpt.out                  |   2 +-
 src/test/regress/expected/rpt_optimizer.out        |   2 +-
 src/test/regress/expected/vacuum_gp.out            |   2 +-
 src/test/regress/output/table_functions.source     |   2 +-
 .../output/table_functions_optimizer.source        |   2 +-
 .../output/uao_ddl/alter_drop_allcol.source        |   2 +-
 src/test/regress/sql/AOCO_Compression.sql          |  64 +--
 src/test/regress/sql/aggregates.sql                |   1 +
 src/test/regress/sql/alter_distribution_policy.sql |  61 +++
 src/test/regress/sql/bfv_subquery.sql              |  39 ++
 src/test/regress/sql/function_extensions.sql       |  18 +-
 src/test/regress/sql/qp_dropped_cols.sql           |  28 +
 src/test/regress/sql/rowsecurity.sql               |  20 +
 src/test/singlenode_regress/expected/.gitignore    |   1 +
 src/test/singlenode_regress/sql/.gitignore         |   3 +-
 64 files changed, 1517 insertions(+), 826 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cloudberry.apache.org
For additional commands, e-mail: commits-h...@cloudberry.apache.org

Reply via email to