diff options
author | Peter Eisentraut | 2025-07-01 20:15:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-07-01 21:13:07 +0000 |
commit | c6d0ef160e948b43222020e6199977c88969537b (patch) | |
tree | 5e17c2f0cbc3bb507f339d180faa13fa175c5d56 | |
parent | f5551538bce031e0e6d47e25c4f488f0e642a4a6 (diff) |
Update comment for IndexInfo.ii_NullsNotDistinct
Commit 7a7b3e11e61 added the ii_NullsNotDistinct field, but the
comment was not updated.
Author: Japin Li <[email protected]>
Reviewed-by: Richard Guo <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/ME0P300MB04453E6C7EA635F0ECF41BFCB6832%40ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM
-rw-r--r-- | src/include/nodes/execnodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 45c71c15e8d..0696ec05b16 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -164,6 +164,7 @@ typedef struct ExprState * UniqueProcs * UniqueStrats * Unique is it a unique index? + * NullsNotDistinct is NULLS NOT DISTINCT? * ReadyForInserts is it valid for inserts? * CheckedUnchanged IndexUnchanged status determined yet? * IndexUnchanged aminsert hint, cached for retail inserts |