gpdb
gpdb copied to clipboard
Greenplum Database - Massively Parallel PostgreSQL for Analytics. An open-source massively parallel data platform for analytics, machine learning and AI.
## Bug Report ### Greenplum version or build - 6.26.3 ### OS version and uname -a ### autoconf options used ( config.status --config ) ### Installation information ( pg_config )...
There are 2 commits, please review them respectively. ---- The first commit is quite simple, trying to fix the issue of #17176, just changing the 32-bit integer to 64-bit. ----...
Authored-by: Zhang Mingli [email protected] ## Here are some reminders before you submit the pull request - [ ] Add tests for the change - [ ] Document changes - [...
To support parallel index creation for pgvector, GPDB needs to support bgworker parallel scan. - gp_session_id, dtxContextInfo, and numsegmentsFromQD should be passed to parallel workers - distributedSnapshot should be initialized...
## Bug Report It seems to be a memory bug caused by auto_explain. ### Greenplum version or build - 6.24.4 ### OS version and uname -a ### autoconf options used...
Create 3dcitydb module documentation page which tells about 3d city database and how to enable and disable. ## Here are some reminders before you submit the pull request - [...
## Bug Report ``` postgres=# create table tt2(id int); postgres=# insert into tt2 select generate_series(1,5); postgres=# set optimizer=off; SET postgres=# explain select from generate_series(1,10) except select from tt2; ERROR: unexpected...
This PR aims at creating multiple paths representing different kinds of PSETOP_* implementations when generate_nonunion_paths(), and letting the "add_path()" choose the cheapest one. It's based on the PR https://github.com/greenplum-db/gpdb/pull/16951, and...
## Bug Report I believe the intent of the gp_toolkit.gp_partitions table was an attempt to reduce the huge impact the elimination of pg_partitions is going to have on long term...
## Enhancement In Greenplum, limiting the memory usage of queries is achieved by setting a fixed statement_mem, with spill operations safeguarding the normal execution of queries. Over time, this coarse-grained...