aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-09-02 14:56:59 +0900
committerMichael Paquier <michael@paquier.xyz>2020-09-02 14:56:59 +0900
commit01767533e37fa255722cc0088ed67a0309875963 (patch)
treee1db2a75fc07e3a00941c7b7df8867f332024d95
parentbe9788e9989a0744ba60ab100153340fd123b786 (diff)
downloadpostgresql-01767533e37fa255722cc0088ed67a0309875963.tar.gz
postgresql-01767533e37fa255722cc0088ed67a0309875963.zip
Fix thinko with definition of REINDEXOPT_MISSING_OK
This had no direct consequences, but let's be consistent and it would be confusing when adding new flags. Oversight in 1d65416. Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20200902024148.GB20149@telsasoft.com
-rw-r--r--src/include/nodes/parsenodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 23840bb8e64..d52c563305a 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -3352,7 +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 */
+#define REINDEXOPT_MISSING_OK (1 << 2) /* skip missing relations */
typedef enum ReindexObjectType
{