Skip to content

Commit 983bdc4

Browse files
committed
1 parent 3136038 commit 983bdc4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/include/nodes/parsenodes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ typedef struct SortGroupClause
13371337
*
13381338
* SETS( SIMPLE(1,2), CUBE( SIMPLE(3), SIMPLE(4,5) ) )
13391339
*/
1340-
typedef enum
1340+
typedef enum GroupingSetKind
13411341
{
13421342
GROUPING_SET_EMPTY,
13431343
GROUPING_SET_SIMPLE,
@@ -2124,7 +2124,7 @@ typedef struct CopyStmt
21242124
* preserve the distinction in VariableSetKind for CreateCommandTag().
21252125
* ----------------------
21262126
*/
2127-
typedef enum
2127+
typedef enum VariableSetKind
21282128
{
21292129
VAR_SET_VALUE, /* SET var = value */
21302130
VAR_SET_DEFAULT, /* SET var TO DEFAULT */

src/include/nodes/pathnodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ typedef struct MemoizePath
15251525
* it's convenient to have a UniquePath in the path tree to signal upper-level
15261526
* routines that the input is known distinct.)
15271527
*/
1528-
typedef enum
1528+
typedef enum UniquePathMethod
15291529
{
15301530
UNIQUE_PATH_NOOP, /* input is known unique already */
15311531
UNIQUE_PATH_HASH, /* use hashing */

src/include/nodes/primnodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ typedef enum XmlExprOp
12151215
IS_DOCUMENT /* xmlval IS DOCUMENT */
12161216
} XmlExprOp;
12171217

1218-
typedef enum
1218+
typedef enum XmlOptionType
12191219
{
12201220
XMLOPTION_DOCUMENT,
12211221
XMLOPTION_CONTENT

0 commit comments

Comments
 (0)