From: Álvaro Herrera Date: Wed, 18 Feb 2026 17:09:54 +0000 (+0100) Subject: Update obsolete comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3894f08abe490d31518d038b0a8eaa46ce971b03;p=thirdparty%2Fpostgresql.git Update obsolete comment table_tuple_update's update_indexes argument hasn't been a boolean since commit 19d8e2308bc5. Backpatch-through: 16 --- diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index 251379016b0..119593b7b46 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -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