gpdb icon indicating copy to clipboard operation
gpdb copied to clipboard

Greenplum Database - Massively Parallel PostgreSQL for Analytics. An open-source massively parallel data platform for analytics, machine learning and AI.

Results 379 gpdb issues
Sort by recently updated
recently updated
newest added

For DOMAINS, GPDB5/6 does not assign an array type, but GPDB7 does. To handle this, we find an unused type Oid to assign. be8bb094d2ae8ec24c03a399611507a5f1a8f0d9 did not correctly dump the type...

version: 7X_ALPHA
pg_dump

The tables with high count of partitions can drain high amount of executor memory for processing. This can be especially critical for column-oriented tables, because we allocating a buffer (which...

community

This reverts commit 667f0c37bc6d7bce7be8b758652ef95ddb823e19. It would also work without it, in the opposite way, it has two issues: 1, it failed to build on macOS, with an error "ld: unknown...

This PR is a backport of changes made in the master branch while merging 9.5. This fixes the problem of incorrect printing of signed constants. This is in particular very...

version: 6X_STABLE
community

PostgreSQL supports custom GUC (Grand Unified Configuration) feature, allowing user to set up their own variables Like this: ``` postgres=# set a.b to '1'; SET postgres=# show a.b; a.b -----...

community

the same as https://github.com/greenplum-db/gpdb/pull/13975 but for main branch PostgreSQL supports custom GUC (Grand Unified Configuration) feature, allowing user to set up their own variables Like this: postgres=# set a.b to...

New SYNTAX of resource group cpuset for different master and segment Using syntax like cpuset="1;3-4" could different cpuset of master and segment by semicolon. For example, if we define cpuset="1;3-4",...

area: server

The GUC's name must be populated into `sync_guc_name.h` if it needs to sync value between QD and QEs. QD will dispatch its current synced GUC values(as startup options) to create...

%s/compatable/compatible/g in file gparray.py Since initFromString is already compatible with repr() formatting, remove the TODO mark. Search `compatable` globally and change them all to `compatible`. Signed-off-by: Junwang Zhao ## Here...

old pgcrypto use FIPS_mode() == 0 to check if can enable FIPS or not. but FIPS_mode() return none zero means FIPS already initialized by the OS or env OPENSSL_FIPS=1 this...