Обсуждение: tablecmds: clarify recurse vs recusing
Hi Hacker,
Many ALTER TABLE-related functions take two boolean parameters, "recurse" and "recursing", whose names are easy to confuse. For example:
```
/*
* ALTER TABLE ALTER COLUMN DROP IDENTITY
*
* Return the address of the affected column.
*/
static ObjectAddress
ATExecDropIdentity(Relation rel, const char *colName, bool missing_ok, LOCKMODE lockmode,
bool recurse, bool recursing)
* ALTER TABLE ALTER COLUMN DROP IDENTITY
*
* Return the address of the affected column.
*/
static ObjectAddress
ATExecDropIdentity(Relation rel, const char *colName, bool missing_ok, LOCKMODE lockmode,
bool recurse, bool recursing)
```
The "recurse" parameter actually indicates whether ONLY was *not* specified in the ALTER TABLE command. It’s supposed to affect both inherited tables and partitioned tables.
In contrast, "recursing" is an internal indicator that only affects inherited tables.
To reduce this confusion, I’m proposing to rename "recurse" to "no_only", which more directly reflects its meaning.
In this patch set:
* 0001 - only renames “recurse” to “no_only” together with minimum comment updates.
* 0002 - performs a small mechanical refactoring, replacing “if (no_only) cmd->no_only = true” to “cmd->no_only = no_only”.
Related patches are [1], [2] and [3]:
Вложения
On 19.01.26 08:14, Chao Li wrote: > Many ALTER TABLE-related functions take two boolean parameters, > "recurse" and "recursing", whose names are easy to confuse. I'm not bothered by this. > To reduce this confusion, I’m proposing to rename "recurse" to > "no_only", which more directly reflects its meaning. This seems worse. Especially since no_only is almost a double negative.
On Mon, Jan 19, 2026 at 9:20 PM Peter Eisentraut <peter@eisentraut.org> wrote: > > On 19.01.26 08:14, Chao Li wrote: > > Many ALTER TABLE-related functions take two boolean parameters, > > "recurse" and "recursing", whose names are easy to confuse. > > I'm not bothered by this. > +1. I had stumbled upon this when working on identity support. I had the same initial reaction that it's confusing. But soon I got used to it and any other option wasn't improving the situation. AFAIR, all the 4 possible combinations of those two booleans are possible, but I can't remember what could recurse = false, recursing = true mean. recurse = true, recursing = false happens at the start of the inheritance tree. recurse = false, recursing = false; maybe for a table which isn't part of inheritance or partition tree. recurse = true, recursing = true happens when working on a non-leaf non-root table. If we could find out the impossible combinations and then unify these two booleans into a single enum variable, that might make code clearer - at least we will know which combinations are not possible and which combinations are. -- Best Wishes, Ashutosh Bapat
Peter Eisentraut <peter@eisentraut.org> writes:
> On 19.01.26 08:14, Chao Li wrote:
>> Many ALTER TABLE-related functions take two boolean parameters,
>> "recurse" and "recursing", whose names are easy to confuse.
> I'm not bothered by this.
>> To reduce this confusion, I’m proposing to rename "recurse" to
>> "no_only", which more directly reflects its meaning.
> This seems worse. Especially since no_only is almost a double negative.
Yeah, I don't find this change an improvement either. I think the
actual problem here is lack of documentation: unlike many other
places, there is next to zero commentary in tablecmds.c about what
all the function parameters are. It would probably help to define
these, along the lines of
* recurse: true if we should recurse to children of this table
* recursing: true if we are already recursing from some parent table
If we fleshed out the header comment for ATPrepCmd and maybe a few
other key functions along these lines, that would make the logic
a good deal more intelligible, I think.
regards, tom lane
Ashutosh Bapat <ashutosh.bapat.oss@gmail.com> writes:
> ... but I
> can't remember what could recurse = false, recursing = true mean.
It'd mean that we are operating on a child table but should not
recurse to its children (if any). Not sure if the case actually
arises, although it could make sense if we flattened the inheritance
tree into a list of target tables earlier on, which does happen in
many cases. But most of the code paths that do it that way don't
bother with recurse/recursing parameters.
regards, tom lane
On Jan 20, 2026, at 00:14, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Peter Eisentraut <peter@eisentraut.org> writes:On 19.01.26 08:14, Chao Li wrote:Many ALTER TABLE-related functions take two boolean parameters,
"recurse" and "recursing", whose names are easy to confuse.I'm not bothered by this.To reduce this confusion, I’m proposing to rename "recurse" to
"no_only", which more directly reflects its meaning.This seems worse. Especially since no_only is almost a double negative.
Yeah, I don't find this change an improvement either. I think the
actual problem here is lack of documentation: unlike many other
places, there is next to zero commentary in tablecmds.c about what
all the function parameters are. It would probably help to define
these, along the lines of
* recurse: true if we should recurse to children of this table
* recursing: true if we are already recursing from some parent table
If we fleshed out the header comment for ATPrepCmd and maybe a few
other key functions along these lines, that would make the logic
a good deal more intelligible, I think.
regards, tom lane
Enhancing the header comments also helps here.
PSA v2:
0001 - Adds detailed descriptions in the header comments of ATController() and ATPrepCmd(). For the other 16 functions that take both “recurse” and “recursing”, I only added brief references to those header comments.
0002 - While working on 0001, I noticed that the header comment of addFkConstraint() explains all parameters except “is_internal”. I added a line for “is_internal”, so that the comment fully reflects the function signature. This change is really trivial and can be squashed into 0001 if preferred.
Вложения
Chao Li <li.evan.chao@gmail.com> writes:
> Enhancing the header comments also helps here.
> PSA v2:
I had something more like the attached in mind. I'm not generally
a fan of documenting only some of the arguments of a function, so
I don't care for the way you handled the issue for other functions
in tablecmds.c either. We can either assume that people read
ATPrepCmd's comment and can extrapolate to the other functions,
or we can do something similar to this for all of them.
I do agree with your 0002, but I see no point in pushing that
separately.
regards, tom lane
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index f976c0e5c7e..fcdb81dd4ea 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -4901,8 +4901,22 @@ ATController(AlterTableStmt *parsetree,
* Traffic cop for ALTER TABLE Phase 1 operations, including simple
* recursion and permission checks.
*
- * Caller must have acquired appropriate lock type on relation already.
+ * *wqueue: resulting AlteredTableInfo structs are added to this list
+ * rel: the relation we are currently considering
+ * cmd: the ALTER TABLE subcommand we are currently considering
+ * recurse: true to recurse to child tables of rel (including partitions)
+ * recursing: true if already recursing (rel is a descendant of original table)
+ * lockmode: lock level held on rel, and to be acquired on children
+ * context: context passed down from ProcessUtility, or NULL if none
+ *
+ * At top level, recurse is true unless the command specified ONLY.
+ * Internally, it can be true if we are descending the inheritance tree
+ * on-the-fly, or false if we already expanded the tree at an outer level
+ * (see ATSimpleRecursion).
+ *
+ * Caller must have acquired lockmode on rel already.
* This lock should be held until commit.
+ * If we recurse, the same lockmode will be acquired on child tables.
*/
static void
ATPrepCmd(List **wqueue, Relation rel, AlterTableCmd *cmd,
On Jan 21, 2026, at 04:07, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Chao Li <li.evan.chao@gmail.com> writes:Enhancing the header comments also helps here.
PSA v2:
I had something more like the attached in mind. I'm not generally
a fan of documenting only some of the arguments of a function, so
I don't care for the way you handled the issue for other functions
in tablecmds.c either. We can either assume that people read
ATPrepCmd's comment and can extrapolate to the other functions,
or we can do something similar to this for all of them.
Got it, thanks. In v4, I’ve limited the changes to fully documenting all ATPrepCmd() arguments in its header comment and removed the scattered recurse/recursing references from other functions.
I do agree with your 0002, but I see no point in pushing that
separately.
Best regards,