diff options
author | Peter Eisentraut | 2025-07-01 18:37:24 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-07-01 18:37:24 +0000 |
commit | 7a7b3e11e6190e414ccd6ad126bed915e8be16f1 (patch) | |
tree | 5ab59219809dd36a399dd73b8f800bc62662f62a | |
parent | 9e5fee822846763a9c04a60bd5076d6fe3248faf (diff) |
Update comment for IndexInfo.ii_WithoutOverlaps
Commit fc0438b4e80 added the ii_WithoutOverlaps 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 fdf79aa18a2..09ea5998aad 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -178,6 +178,7 @@ typedef struct ExprState * IndexUnchanged aminsert hint, cached for retail inserts * Concurrent are we doing a concurrent index build? * BrokenHotChain did we detect any broken HOT chains? + * WithoutOverlaps is it a WITHOUT OVERLAPS index? * Summarizing is it a summarizing index? * ParallelWorkers # of workers requested (excludes leader) * Am Oid of index AM |