Skip to content

Commit 01be9d4

Browse files
committed
Fix operator typo in tablecmds.c
A bitwise operator was getting used on two bools in ATAddCheckConstraint() to track if constraints should be merged or not with the existing ones of a relation, though obviously this should use a boolean OR operator. This led to the same result, but let's be clean. Oversight in 074c5cf. Author: Ranier Vilela Reviewed-by: Justin Pryzby Discussion: https://postgr.es/m/CAEudQAp2R2fbbi0OHHhv_n4=Ch0t1VtjObR9YMqtGKHJ+faUFQ@mail.gmail.com
1 parent 439f617 commit 01be9d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/tablecmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8863,7 +8863,7 @@ ATAddCheckConstraint(List **wqueue, AlteredTableInfo *tab, Relation rel,
88638863
*/
88648864
newcons = AddRelationNewConstraints(rel, NIL,
88658865
list_make1(copyObject(constr)),
8866-
recursing | is_readd, /* allow_merge */
8866+
recursing || is_readd, /* allow_merge */
88678867
!recursing, /* is_local */
88688868
is_readd, /* is_internal */
88698869
NULL); /* queryString not available

0 commit comments

Comments
 (0)