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

1) `DeferErrorIfCircularDependencyExists` compares each dependency with the object that is passed into the function. See https://github.com/citusdata/citus/blob/main/src/backend/distributed/commands/dependencies.c#L194-L198 An example broken case: We have a dependency chain as: A->B->CD. Here we have...

technical debt

After installing 10.2 with the install-downgrades from main, I get the following error: ``` postgres=# alter extension citus update; ERROR: cache lookup failed for pg_dist_object, called too early? CONTEXT: SQL...

bug

``` SQL CREATE TABLE tbl(a INT); SELECT create_distributed_table('tbl', 'a'); CREATE VIEW vw AS SELECT * FROM tbl; TRUNCATE TABLE tbl, vw CASCADE; ERROR: relation vw is not distributed ``` The...

bug
sqlancer

What I did? 1. install postresql 14 from the build 2. tried to do: ``` # Add Citus repository for package manager curl https://install.citusdata.com/community/deb.sh | sudo bash # install the...

**Issue by [bradrobertson](https://github.com/bradrobertson)** _Tuesday Mar 31, 2015 at 15:19 GMT_ _Originally opened as https://github.com/citusdata/pg_shard/issues/99_ --- I've got a [rubygem call Apartment](https://github.com/influitive/apartment) that does database multi-tenancy for ActiveRecord using postgresql `schemas`....

feature

I'm trying to create packages for ubuntu-jammy using citus/packaging:ubuntu-jammy-all docker image. I got warnings below. I got @JelteF 's comments and he thinks that they need to be fixed Warnings:...

message_level_is_interesting() is a function introduced in PG14, so it makes sense to do this change after dropping support PG13. https://github.com/citusdata/citus/compare/drop-is-loggable-level?expand=1

cleanup

```SQL SET citus.shard_replication_factor TO 2; CREATE TABLE time_series_events_very_veery_looooooooooooooong_named_table (event_time timestamp, event int, user_id int) partition by range (event_time); SELECT create_distributed_table('time_series_events_very_veery_looooooooooooooong_named_table', 'user_id'); SELECT create_time_partitions(table_name:='time_series_events_very_veery_looooooooooooooong_named_table', partition_interval:= '1 month', end_at:= '2021-01-01', start_from:='2020-01-01'); ERROR:...

bug
tool_reported

Run citus on Kubernetes

Hi, guys! Citus description looks very outdated on https://db-engines.com/, see https://db-engines.com/en/system/Citus%3BPostgreSQL e.g. current release is set to "8.1, December 2018". It sounds reasonable for you to put actual data about...