Skip to content

Commit 9874913

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 d32933c commit 9874913

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
@@ -268,7 +268,7 @@ ExecCloseIndices(ResultRelInfo *resultRelInfo)
268268
* executor is performing an UPDATE that could not use an
269269
* optimization like heapam's HOT (in more general terms a
270270
* call to table_tuple_update() took place and set
271-
* 'update_indexes' to TUUI_All). Receiving this hint makes
271+
* 'update_indexes' to TU_All). Receiving this hint makes
272272
* us consider if we should pass down the 'indexUnchanged'
273273
* hint in turn. That's something that we figure out for
274274
* each index_insert() call iff 'update' is true.
@@ -279,7 +279,7 @@ ExecCloseIndices(ResultRelInfo *resultRelInfo)
279279
* HOT has been applied and any updated columns are indexed
280280
* only by summarizing indexes (or in more general terms a
281281
* call to table_tuple_update() took place and set
282-
* 'update_indexes' to TUUI_Summarizing). We can (and must)
282+
* 'update_indexes' to TU_Summarizing). We can (and must)
283283
* therefore only update the indexes that have
284284
* 'amsummarizing' = true.
285285
*

0 commit comments

Comments
 (0)