Skip to content

Commit 0176753

Browse files
committed
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
1 parent be9788e commit 0176753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/nodes/parsenodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,7 @@ typedef struct ConstraintsSetStmt
33523352
/* Reindex options */
33533353
#define REINDEXOPT_VERBOSE (1 << 0) /* print progress info */
33543354
#define REINDEXOPT_REPORT_PROGRESS (1 << 1) /* report pgstat progress */
3355-
#define REINDEXOPT_MISSING_OK (2 << 1) /* skip missing relations */
3355+
#define REINDEXOPT_MISSING_OK (1 << 2) /* skip missing relations */
33563356

33573357
typedef enum ReindexObjectType
33583358
{

0 commit comments

Comments
 (0)