citus icon indicating copy to clipboard operation
citus copied to clipboard

Distributed PostgreSQL as an extension

Results 498 citus issues
Sort by recently updated
recently updated
newest added

DESCRIPTION: Enable TLS by default for clusters created before Citus 8.1.0 Before this commit clusters created with a version lower than 8.1.0 would not have SSL enabled by default. This...

This is a preparation step for adding alternative intermediate result formats. The idea is that all serialization/deserialization for intermediate results should go through the same file so we don't need...

https://github.com/citusdata/citus/pull/3400 https://github.com/citusdata/citus/pull/3382 I was unable to find a way to test either of these without invoking `pg_ctl stop`

regression tests

Fixes #2637 DESCRIPTION: Warn we are not propagating GRANT/REVOKE to workers in community edition.

This PR is a prototype, and requires several improvements before merging. It enables good chunk of complex SQL queries that used be not supported. The improvements are mostly around subquery/cte...

prototype

This PR aims to capture the changes in our test suite to use the latest PG minor versions for 13 and 14. Blocked on #6075 as we need to have...

The order of the last two rows on a table can change, and this creates a flaky test. I suggest you add an order on nodeport to make the results...

See discussion on https://github.com/citusdata/citus/pull/6122 for details, but short version is: By running `isolation_concurrent_dml` and `isolation_data_migration` tests in parallel one seems to blocks the other. This shouldn't happen.

bug

Hi, We are currently trying to write a manager for citus in Kubernetes. Worker node additions work great using the citus_add_node UDF. The problem we are facing is when we...

I expected this to de-co-locate the partitioned table from the other tables: ```sql create table test (x int, y int, t timestamptz default now()) partition by range (t); create table...