mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 18:04:41 -05:00
Fix under-parenthesized macro definitions
Lack of parens in the definitions could cause a statement using these macros to have unexpected semantics. In current code no bug is apparent, but best to fix the definitions to avoid problems down the line. Reported-by: Tom Lane Discussion: https://postgr.es/m/19795.1568400476@sss.pgh.pa.us
This commit is contained in:
parent
09b236af90
commit
6d50fd469a
1 changed files with 1 additions and 1 deletions
|
|
@ -3215,7 +3215,7 @@ typedef struct ConstraintsSetStmt
|
|||
*/
|
||||
|
||||
/* Reindex options */
|
||||
#define REINDEXOPT_VERBOSE 1 << 0 /* print progress info */
|
||||
#define REINDEXOPT_VERBOSE (1 << 0) /* print progress info */
|
||||
|
||||
typedef enum ReindexObjectType
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue