diff options
author | Andres Freund <andres@anarazel.de> | 2016-04-14 18:54:06 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2016-04-14 19:25:16 -0700 |
commit | 533cd2303aa6558721e76295fd1ffb05211764f9 (patch) | |
tree | 9c3723b45c87a9c9120b215c038a03246a0a3a12 /src/backend/executor/execIndexing.c | |
parent | 7b16781228d6c0a2db66d71e33e64b9606779feb (diff) | |
download | postgresql-533cd2303aa6558721e76295fd1ffb05211764f9.tar.gz postgresql-533cd2303aa6558721e76295fd1ffb05211764f9.zip |
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.
Diffstat (limited to 'src/backend/executor/execIndexing.c')
-rw-r--r-- | src/backend/executor/execIndexing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execIndexing.c b/src/backend/executor/execIndexing.c index 5d553d51d21..a2eeeb6f6cd 100644 --- a/src/backend/executor/execIndexing.c +++ b/src/backend/executor/execIndexing.c @@ -119,7 +119,7 @@ typedef enum { CEOUC_WAIT, CEOUC_NOWAIT, - CEOUC_LIVELOCK_PREVENTING_WAIT, + CEOUC_LIVELOCK_PREVENTING_WAIT } CEOUC_WAIT_MODE; static bool check_exclusion_or_unique_constraint(Relation heap, Relation index, |