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.
I am trying to debug greenplum 6.25.3, and for start I'm trying to build it with --enable-debug flag. From my point of view for debugging optimizations of code (-O3 flag...
This PR is trying to fix the problem that there are 4 bytes in IC package that are never used. When we set `gp_max_packet_size` to the minimum value of 512...
Hi, Team, Currently `analyzedb` command does not provide remote execution capability, and it can only executed on `mdw` node. It would be helpful to enhance it to accept connection string...
## Bug Report Hey fellows, A couple times in production I've been notified about deadlocks between analytical queries and our nightly vacuum process. And finally got it reproduced on my...
This PR mainly does two things. 1. Add a `verbose` option, it will print more info, like the number of range partitioning tables and partition key collation info. 2. If...
gp_sparse_vector relies on char being a signed number, while char is unsigned by default on ARM platform, which makes *((char *)(ptr)) in int8compstoragesize impossible to be negative. This results in...
The description of optimizer_force_multistage_agg and optimizer_force_three_stage_scalar_dqa were swapped.
## Bug Report ``` sql create table t2(a int, b int, c int, d int) distributed by(a); create table t3(i int, k int) distributed by(i); create table t1(a int, b...
Hello everyone, recently I'm doing some works with type uuid, and I found that ORCA may not produce good plan with this type in some SQLs. After some debug works...
In some cases, ORCA will generate a chain of CPhysicalFilter Node in plan, and they will be translated to a chain of Result Node, especially in CTE cases. For example:...