Re: Small miscellaneus fixes (Part II)
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Justin Pryzby <pryzby@telsasoft.com>
Cc: Ranier Vilela <ranier.vf@gmail.com>, pgsql-hackers@postgresql.org
Date: 2022-12-21T07:10:41Z
Lists: pgsql-hackers
On Tue, Dec 20, 2022 at 06:51:34PM -0600, Justin Pryzby wrote:
> On Fri, Nov 25, 2022 at 06:27:04PM -0300, Ranier Vilela wrote:
> > 5. Use boolean operator with boolean operands
> > (b/src/backend/commands/tablecmds.c)
>
> tablecmds.c: right. Since 074c5cfbf
Most of this does not seem to be really worth poking at.
newcons = AddRelationNewConstraints(rel, NIL,
list_make1(copyObject(constr)),
- recursing | is_readd, /* allow_merge */
+ recursing || is_readd, /* allow_merge */
There is no damage here, but that looks like a typo so no objections
on this one.
--
Michael
Commits
-
Remove redundant relkind check
- 15eb1228800a 16.0 landed
-
Remove dead code in formatting.c
- e29c5653434e 16.0 landed
-
Fix operator typo in tablecmds.c
- 01be9d498fa4 16.0 landed