Skip to content

Commit c679897

Browse files
committed
Fix typos in comments
Commit 19d8e23 added enum values with the prefix TU_, but a few comments still referred to TUUI_, which was used in development versions of the patches committed as 19d8e23. Author: Yugo Nagata <nagata@sraoss.co.jp> Discussion: https://postgr.es/m/20250701110216.8ac8a9e4c6f607f1d954f44a@sraoss.co.jp Backpatch-through: 16
1 parent a3df0d4 commit c679897

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/executor/execIndexing.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ ExecCloseIndices(ResultRelInfo *resultRelInfo)
279279
* executor is performing an UPDATE that could not use an
280280
* optimization like heapam's HOT (in more general terms a
281281
* call to table_tuple_update() took place and set
282-
* 'update_indexes' to TUUI_All). Receiving this hint makes
282+
* 'update_indexes' to TU_All). Receiving this hint makes
283283
* us consider if we should pass down the 'indexUnchanged'
284284
* hint in turn. That's something that we figure out for
285285
* each index_insert() call iff 'update' is true.
@@ -290,7 +290,7 @@ ExecCloseIndices(ResultRelInfo *resultRelInfo)
290290
* HOT has been applied and any updated columns are indexed
291291
* only by summarizing indexes (or in more general terms a
292292
* call to table_tuple_update() took place and set
293-
* 'update_indexes' to TUUI_Summarizing). We can (and must)
293+
* 'update_indexes' to TU_Summarizing). We can (and must)
294294
* therefore only update the indexes that have
295295
* 'amsummarizing' = true.
296296
*

0 commit comments

Comments
 (0)