Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1d1b32a

Browse files
committed
Address ccvalid/ccnoinherit in TupleDesc support functions.
equalTupleDescs() neglected both of these ConstrCheck fields, andCreateTupleDescCopyConstr() neglected ccnoinherit. At this time, theonly known behavior defect resulting from these omissions is constraintexclusion disregarding a CHECK constraint validated by an ALTER TABLEVALIDATE CONSTRAINT statement issued earlier in the same transaction.Back-patch to 9.2, where these fields were introduced.
1 parentee42d8f commit1d1b32a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

‎src/backend/access/common/tupdesc.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ CreateTupleDescCopyConstr(TupleDesc tupdesc)
203203
if (constr->check[i].ccbin)
204204
cpy->check[i].ccbin=pstrdup(constr->check[i].ccbin);
205205
cpy->check[i].ccvalid=constr->check[i].ccvalid;
206+
cpy->check[i].ccnoinherit=constr->check[i].ccnoinherit;
206207
}
207208
}
208209

@@ -416,7 +417,9 @@ equalTupleDescs(TupleDesc tupdesc1, TupleDesc tupdesc2)
416417
for (j=0;j<n;check2++,j++)
417418
{
418419
if (strcmp(check1->ccname,check2->ccname)==0&&
419-
strcmp(check1->ccbin,check2->ccbin)==0)
420+
strcmp(check1->ccbin,check2->ccbin)==0&&
421+
check1->ccvalid==check2->ccvalid&&
422+
check1->ccnoinherit==check2->ccnoinherit)
420423
break;
421424
}
422425
if (j >=n)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp