summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2018-08-30 09:08:33 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2018-08-30 09:10:48 +0300
commitc1c1bfc500a09eacf90f7d006e645714f0383f98 (patch)
treeaf3d1f4f4164f056309feb328ed3fc2ae4f7d7a1 /src
parent35622f7d3210f251c507e77730a3f18246629a95 (diff)
Fix IndexInfo comments.
Recently, ii_KeyAttrNumbers was renamed to ii_IndexAttrNumbers, and ii_Am field was added, but the comments were not updated. Author: Yugo Nagata Discussion: https://www.postgresql.org/message-id/20180830134831.e35a91b8b978b248c16c8f7b@sraoss.co.jp
Diffstat (limited to 'src')
-rw-r--r--src/include/nodes/execnodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index ddd501c752f..918677e3a0d 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -120,7 +120,7 @@ typedef struct ExprState
*
* NumIndexAttrs total number of columns in this index
* NumIndexKeyAttrs number of key columns in index
- * KeyAttrNumbers underlying-rel attribute numbers used as keys
+ * IndexAttrNumbers underlying-rel attribute numbers used as keys
* (zeroes indicate expressions). It also contains
* info about included columns.
* Expressions expr trees for expression entries, or NIL if none
@@ -138,6 +138,7 @@ typedef struct ExprState
* Concurrent are we doing a concurrent index build?
* BrokenHotChain did we detect any broken HOT chains?
* ParallelWorkers # of workers requested (excludes leader)
+ * Am Oid of index AM
* AmCache private cache area for index AM
* Context memory context holding this IndexInfo
*