Fix comments of IndexInfo
Hi,
Attached is a patch to fix comments of IndexInfo. ii_KeyAttrNumbers was
renamed to ii_IndexAttrNumbers and ii_Am was added but these are
not reflected to the comment.
Regards,
--
Yugo Nagata <nagata@sraoss.co.jp>
Attachments:
fix_indexinfo_comments.patchtext/x-diff; name=fix_indexinfo_comments.patchDownload
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 41fa2052a2..c830f141b1 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
*
On 30/08/18 07:48, Yugo Nagata wrote:
Attached is a patch to fix comments of IndexInfo. ii_KeyAttrNumbers was
renamed to ii_IndexAttrNumbers and ii_Am was added but these are
not reflected to the comment.
Applied, thanks!
- Heikki
On Thu, 30 Aug 2018 09:14:26 +0300
Heikki Linnakangas <hlinnaka@iki.fi> wrote:
On 30/08/18 07:48, Yugo Nagata wrote:
Attached is a patch to fix comments of IndexInfo. ii_KeyAttrNumbers was
renamed to ii_IndexAttrNumbers and ii_Am was added but these are
not reflected to the comment.Applied, thanks!
Thanks!
--
Yugo Nagata <nagata@sraoss.co.jp>