diff options
author | Peter Eisentraut | 2025-07-01 20:20:13 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-07-01 21:13:17 +0000 |
commit | 37b1fce858672bcd0350c24a9c5e4689de3a6cb7 (patch) | |
tree | b085e508fd514c96270214bed26d73b1baebc505 | |
parent | a167e654d06fa2ae7ba7e0f635b384cead8f6b7c (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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 4c3eaf3d76d..9741435b96a 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -139,8 +139,9 @@ typedef struct ExprState * UniqueOps These are like Exclusion*, but for unique indexes * UniqueProcs * UniqueStrats - * Unique is it a unique index? * OpclassOptions opclass-specific options, or NULL if none + * 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 |