Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[YSQL] Moving rows across partitions fails due to constraint check failure on source partition #25911

Open
1 task done
iSignal opened this issue Feb 6, 2025 · 0 comments · May be fixed by #26592
Open
1 task done
Labels
area/ysql Yugabyte SQL (YSQL) kind/bug This issue is a bug priority/medium Medium priority issue status/awaiting-triage Issue awaiting triage

Comments

@iSignal
Copy link
Contributor

iSignal commented Feb 6, 2025

Jira Link: DB-15223

Description

Setup two partitions of a parent partition table with different check constraints on each child partition. Insert a row in one of the child partitions.

inherit=# create table parpar(partid int, value int) partition by range (partid);
CREATE TABLE

inherit=# create table pardef partition of parpar default;
CREATE TABLE

inherit=# create table parchild partition of parpar for values from (0) to (10);
CREATE TABLE

inherit=# \d parchild
              Table "public.parchild"
 Column |  Type   | Collation | Nullable | Default
--------+---------+-----------+----------+---------
 partid | integer |           |          |
 value  | integer |           |          |
Partition of: parpar FOR VALUES FROM (0) TO (10)

inherit=# alter table parchild add constraint parchild_value_check CHECK (value < 100);
ALTER TABLE
inherit=# alter table pardef add constraint pardef_value_check CHECK (value < 1000);
ALTER TABLE
inherit=# insert into parpar values(1, 90);
INSERT 0 1
inherit=# select tableoid::regclass, * from parpar;
 tableoid | partid | value
----------+--------+-------
 parchild |      1 |    90
(1 row)

inherit=# select * from pardef;
 partid | value
--------+-------
(0 rows)

Attempt to move the row to a different partition. This reports a constraint violation on the table it is being moved from. Inserting a fresh row with those values works fine.

inherit=# update parpar set partid = 20, value = 900 where partid = 1;
ERROR:  new row for relation "parchild" violates check constraint "parchild_value_check"
DETAIL:  Failing row contains (20, 900).
inherit=# insert into parpar values (20,900);
INSERT 0 1
inherit=# update parpar set partid = 21, value = 90 where partid = 1;
UPDATE 1

Issue Type

kind/bug

Warning: Please confirm that this issue does not contain any sensitive information

  • I confirm this issue does not contain any sensitive information.
@iSignal iSignal added area/ysql Yugabyte SQL (YSQL) status/awaiting-triage Issue awaiting triage labels Feb 6, 2025
@yugabyte-ci yugabyte-ci added kind/bug This issue is a bug priority/medium Medium priority issue labels Feb 6, 2025
afonso215 added a commit to afonso215/yugabyte-db-fork that referenced this issue Mar 27, 2025
…een partitions

Summary:
This commit fixes an issue where attempting to move a row across partitions of the same partitioned table would result in a constraint violation on the source partition.
This happened because, while updating a row, constraint violations on the source partition were checked before determining whether the row would remain in it after the update.

Changes:
1. Constraint check now happens after determining in which partition the row will belong after the update.
2.   Added a Java test (TestPgUpdate).

Fixes yugabyte#25911

Test Plan:
./yb_build.sh --java-test org.yb.pgsql.TestPgUpdate
afonso215 added a commit to afonso215/yugabyte-db-fork that referenced this issue Mar 27, 2025
…partitions

Summary:
This commit fixes an issue where attempting
to move a row across partitions of the same
partitioned table would result in a constraint
violation on the source partition.
This happened because, while updating a
row, constraint violations on the source
partition were checked before determining
whether the row would remain in it after
the update.

Changes:
1. Constraint check now happens after
determining to which partition the row
will belong after the update.
2. Added a Java Test (TestPgUpdate).

Fixes yugabyte#25911

Test Plan:
./yb_build.sh --java-test org.yb.pgsql.TestPgUpdate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ysql Yugabyte SQL (YSQL) kind/bug This issue is a bug priority/medium Medium priority issue status/awaiting-triage Issue awaiting triage
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants