]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Update obsolete comment
authorÁlvaro Herrera <alvherre@kurilemu.de>
Wed, 18 Feb 2026 17:09:54 +0000 (18:09 +0100)
committerÁlvaro Herrera <alvherre@kurilemu.de>
Wed, 18 Feb 2026 17:09:54 +0000 (18:09 +0100)
table_tuple_update's update_indexes argument hasn't been a boolean since
commit 19d8e2308bc5.

Backpatch-through: 16

src/include/access/tableam.h

index 251379016b009c4eb2a21544c370ffa8bb50b142..119593b7b4633cf2f572eaa3bf23a2bf0ff4ac96 100644 (file)
@@ -1503,8 +1503,8 @@ table_tuple_delete(Relation rel, ItemPointer tid, CommandId cid,
  *     slot - newly constructed tuple data to store
  *     tmfd - filled in failure cases (see below)
  *     lockmode - filled with lock mode acquired on tuple
- *     update_indexes - in success cases this is set to true if new index entries
- *             are required for this tuple
+ *     update_indexes - in success cases this is set if new index entries
+ *             are required for this tuple; see TU_UpdateIndexes
  *
  * Normal, successful return value is TM_Ok, which means we did actually
  * update it.  Failure return codes are TM_SelfModified, TM_Updated, and