cloudberry icon indicating copy to clipboard operation
cloudberry copied to clipboard

One advanced and mature open-source MPP (Massively Parallel Processing) database. Open source alternative to Greenplum Database.

Results 292 cloudberry issues
Sort by recently updated
recently updated
newest added

### Apache Cloudberry version main ### What happened When running the CTAS statement, the orca may get wrong type for the columns. For example ```sql create table t1 (id int,...

type: Bug
type: Orca

### Apache Cloudberry version main ### What happened When running `make install -C ~/cloudberry`, errors returned: ``` # Download PyYAML using curl (only if not exists) Downloading PyYAML-5.4.1.tar.gz... # install...

type: Bug

### Apache Cloudberry version 2.0 ### What happened When performing SELECT, INSERT, or VACUUM operations on some tables, the error ​​"compression failed: Destination buffer is too small uncompressed len 32760"​​...

type: Bug

Introduces GitHub Actions workflow for Apache Cloudberry (incubating) build debian package: In https://github.com/apache/cloudberry/pull/1359 I have added docker build and test containers for ubuntu 22.04. Here I add CI workflow to...

### Apache Cloudberry version main branch ### What happened ```sql create external web table t3(a int, b text) LOCATION ('http://:/bad_gb.txt') FORMAT 'TEXT' (DELIMITER ',' NULL '' ) ENCODING 'GB18030' LOG...

type: Bug

Previously, statistics (min-max, sum, count, etc.) were computed synchronously during data insertion, causing significant slowdowns due to heavy computational overhead. This change introduces an asynchronous approach to maintain statistics: -...

Fixes #ISSUE_Number ### What does this PR do? ### Type of Change - [ ] Bug fix (non-breaking change) - [ ] New feature (non-breaking change) - [ ] Breaking...

[`cbdb-postgres-merge` branch](https://github.com/apache/cloudberry/tree/cbdb-postgres-merge) has Git merge artifacts since 0959648e12a6db95fd370b5584a170937bde3ab7, see an [example](https://github.com/apache/cloudberry/blob/cbdb-postgres-merge/.gitignore#L13).

* Add check for current year in NOTICE file copyright statement - Ensure copyright year is up-to-date (eg, 2024-$currentyear) * Add binary files detection in source tree - This check...

Add comprehensive parallel table scan capability to GPORCA optimizer, enabling worker-level parallelism within segments for improved query performance on large table scans. Key components: - New CPhysicalParallelTableScan operator and CDistributionSpecWorkerRandom...