diff options
author | Peter Eisentraut | 2025-07-01 20:15:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-07-01 21:12:24 +0000 |
commit | 184595836ba37e1d35cb8a4e9298dc0eed763746 (patch) | |
tree | 9c70c20b0c434a2aaddc128f7a791867a7de6679 | |
parent | aa268cbaade2e7c87addc2fabc7fc8a43310a440 (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 09ea5998aad..f1520d1f31a 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -173,6 +173,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 |