Ahmet Gedemenli
Ahmet Gedemenli
Backporting https://github.com/citusdata/citus/pull/6100
DESCRIPTION: PR description that will go into the change log, up to 78 characters
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...
DESCRIPTION: PR description that will go into the change log, up to 78 characters
DESCRIPTION: Adds failure test for shard move DESCRIPTION: Remove function `WaitForAllSubscriptionsToBecomeReady` and related tests fixes: #6260
In `LogicallyReplicateShards`, in `multi_logical_replication.c`, we are filtering out partitioned shard intervals from the shard list, using the function `PrepareReplicationSubscriptionList`. ``` /* * PrepareReplicationSubscriptionList returns list of shards to be logically...
Since there is no "previous" version/schema for the first migration that is being run right after `pgroll init`, segv happens for column related changes such as adding unique constaint or...
Primary key or a `UNIQUE NOT NULL` column is required for backfills. When running DDL on empty (probably newly created) tables, `pgroll` errors out because the backfill fails. Since backfill...
## Bug description Generating a fullname email and preserving the domain with a low `maxLength` value causing crash. `transformEmail` calculates `maxNameLength` by substracting the domain length from `maxLength`. https://github.com/nucleuscloud/neosync/blob/main/worker/pkg/benthos/transformers/transform_email.go#L326 Then...