mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Remove trailing commas in enums.
These aren't valid C89. Found thanks to gcc's -Wc90-c99-compat. These exist in differing places in most supported branches.
This commit is contained in:
parent
e7a456174b
commit
593f469a04
@ -119,7 +119,7 @@ typedef enum
|
|||||||
{
|
{
|
||||||
CEOUC_WAIT,
|
CEOUC_WAIT,
|
||||||
CEOUC_NOWAIT,
|
CEOUC_NOWAIT,
|
||||||
CEOUC_LIVELOCK_PREVENTING_WAIT,
|
CEOUC_LIVELOCK_PREVENTING_WAIT
|
||||||
} CEOUC_WAIT_MODE;
|
} CEOUC_WAIT_MODE;
|
||||||
|
|
||||||
static bool check_exclusion_or_unique_constraint(Relation heap, Relation index,
|
static bool check_exclusion_or_unique_constraint(Relation heap, Relation index,
|
||||||
|
@ -252,7 +252,7 @@ typedef enum
|
|||||||
{
|
{
|
||||||
RECOVERY_TARGET_ACTION_PAUSE,
|
RECOVERY_TARGET_ACTION_PAUSE,
|
||||||
RECOVERY_TARGET_ACTION_PROMOTE,
|
RECOVERY_TARGET_ACTION_PROMOTE,
|
||||||
RECOVERY_TARGET_ACTION_SHUTDOWN,
|
RECOVERY_TARGET_ACTION_SHUTDOWN
|
||||||
} RecoveryTargetAction;
|
} RecoveryTargetAction;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user