mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
Add missing enum tags in enums used in nodes
Discussion: https://www.postgresql.org/message-id/flat/c1097590-a6a4-486a-64b1-e1f9cc0533ce@enterprisedb.com
This commit is contained in:
@@ -1337,7 +1337,7 @@ typedef struct SortGroupClause
|
|||||||
*
|
*
|
||||||
* SETS( SIMPLE(1,2), CUBE( SIMPLE(3), SIMPLE(4,5) ) )
|
* SETS( SIMPLE(1,2), CUBE( SIMPLE(3), SIMPLE(4,5) ) )
|
||||||
*/
|
*/
|
||||||
typedef enum
|
typedef enum GroupingSetKind
|
||||||
{
|
{
|
||||||
GROUPING_SET_EMPTY,
|
GROUPING_SET_EMPTY,
|
||||||
GROUPING_SET_SIMPLE,
|
GROUPING_SET_SIMPLE,
|
||||||
@@ -2124,7 +2124,7 @@ typedef struct CopyStmt
|
|||||||
* preserve the distinction in VariableSetKind for CreateCommandTag().
|
* preserve the distinction in VariableSetKind for CreateCommandTag().
|
||||||
* ----------------------
|
* ----------------------
|
||||||
*/
|
*/
|
||||||
typedef enum
|
typedef enum VariableSetKind
|
||||||
{
|
{
|
||||||
VAR_SET_VALUE, /* SET var = value */
|
VAR_SET_VALUE, /* SET var = value */
|
||||||
VAR_SET_DEFAULT, /* SET var TO DEFAULT */
|
VAR_SET_DEFAULT, /* SET var TO DEFAULT */
|
||||||
|
@@ -1525,7 +1525,7 @@ typedef struct MemoizePath
|
|||||||
* it's convenient to have a UniquePath in the path tree to signal upper-level
|
* it's convenient to have a UniquePath in the path tree to signal upper-level
|
||||||
* routines that the input is known distinct.)
|
* routines that the input is known distinct.)
|
||||||
*/
|
*/
|
||||||
typedef enum
|
typedef enum UniquePathMethod
|
||||||
{
|
{
|
||||||
UNIQUE_PATH_NOOP, /* input is known unique already */
|
UNIQUE_PATH_NOOP, /* input is known unique already */
|
||||||
UNIQUE_PATH_HASH, /* use hashing */
|
UNIQUE_PATH_HASH, /* use hashing */
|
||||||
|
@@ -1215,7 +1215,7 @@ typedef enum XmlExprOp
|
|||||||
IS_DOCUMENT /* xmlval IS DOCUMENT */
|
IS_DOCUMENT /* xmlval IS DOCUMENT */
|
||||||
} XmlExprOp;
|
} XmlExprOp;
|
||||||
|
|
||||||
typedef enum
|
typedef enum XmlOptionType
|
||||||
{
|
{
|
||||||
XMLOPTION_DOCUMENT,
|
XMLOPTION_DOCUMENT,
|
||||||
XMLOPTION_CONTENT
|
XMLOPTION_CONTENT
|
||||||
|
Reference in New Issue
Block a user