> diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
> index 47d4c07306..23840bb8e6 100644
> --- a/src/include/nodes/parsenodes.h
> +++ b/src/include/nodes/parsenodes.h
> @@ -3352,6 +3352,7 @@ typedef struct ConstraintsSetStmt
> /* Reindex options */
> #define REINDEXOPT_VERBOSE (1 << 0) /* print progress info */
> #define REINDEXOPT_REPORT_PROGRESS (1 << 1) /* report pgstat progress */
> +#define REINDEXOPT_MISSING_OK (2 << 1) /* skip missing relations */
I think you probably intended to write: 1<<2
Even though it's the same, someone is likely to be confused if they try to use
3<<1 vs 1<<3.
I noticed while resolving merge conflict.
--
Justin