diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index e1a6198e012..3e7287166ef 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.354 2007/10/24 23:27:08 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.355 2007/11/15 21:14:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -34,14 +34,14 @@ typedef enum SortByDir SORTBY_ASC, SORTBY_DESC, SORTBY_USING /* not allowed in CREATE INDEX ... */ -} SortByDir; +} SortByDir; typedef enum SortByNulls { SORTBY_NULLS_DEFAULT, SORTBY_NULLS_FIRST, SORTBY_NULLS_LAST -} SortByNulls; +} SortByNulls; /* @@ -338,7 +338,7 @@ typedef struct SortBy { NodeTag type; SortByDir sortby_dir; /* ASC/DESC/USING */ - SortByNulls sortby_nulls; /* NULLS FIRST/LAST */ + SortByNulls sortby_nulls; /* NULLS FIRST/LAST */ List *useOp; /* name of op to use, if SORTBY_USING */ Node *node; /* expression to sort on */ } SortBy; @@ -427,7 +427,7 @@ typedef struct IndexElem Node *expr; /* expression to index, or NULL */ List *opclass; /* name of desired opclass; NIL = default */ SortByDir ordering; /* ASC/DESC/default */ - SortByNulls nulls_ordering; /* FIRST/LAST/default */ + SortByNulls nulls_ordering; /* FIRST/LAST/default */ } IndexElem; /* @@ -464,7 +464,7 @@ typedef struct XmlSerialize XmlOptionType xmloption; Node *expr; TypeName *typename; -} XmlSerialize; +} XmlSerialize; /**************************************************************************** @@ -624,8 +624,8 @@ typedef struct SortClause { NodeTag type; Index tleSortGroupRef; /* reference into targetlist */ - Oid sortop; /* the ordering operator ('<' op) */ - bool nulls_first; /* do NULLs come before normal values? */ + Oid sortop; /* the ordering operator ('<' op) */ + bool nulls_first; /* do NULLs come before normal values? */ } SortClause; /* @@ -1065,7 +1065,7 @@ typedef enum VAR_SET_MULTI, /* special case for SET TRANSACTION ... */ VAR_RESET, /* RESET var */ VAR_RESET_ALL /* RESET ALL */ -} VariableSetKind; +} VariableSetKind; typedef struct VariableSetStmt { @@ -1397,7 +1397,7 @@ typedef struct CreateOpFamilyStmt NodeTag type; List *opfamilyname; /* qualified name (list of Value strings) */ char *amname; /* name of index AM opfamily is for */ -} CreateOpFamilyStmt; +} CreateOpFamilyStmt; /* ---------------------- * Alter Operator Family Statement @@ -1410,7 +1410,7 @@ typedef struct AlterOpFamilyStmt char *amname; /* name of index AM opfamily is for */ bool isDrop; /* ADD or DROP the items? */ List *items; /* List of CreateOpClassItem nodes */ -} AlterOpFamilyStmt; +} AlterOpFamilyStmt; /* ---------------------- * Drop Table|Sequence|View|Index|Type|Domain|Conversion|Schema Statement @@ -1472,16 +1472,16 @@ typedef struct CommentStmt * Declare Cursor Statement * * Note: the "query" field of DeclareCursorStmt is only used in the raw grammar - * output. After parse analysis it's set to null, and the Query points to the + * output. After parse analysis it's set to null, and the Query points to the * DeclareCursorStmt, not vice versa. * ---------------------- */ -#define CURSOR_OPT_BINARY 0x0001 /* BINARY */ -#define CURSOR_OPT_SCROLL 0x0002 /* SCROLL explicitly given */ -#define CURSOR_OPT_NO_SCROLL 0x0004 /* NO SCROLL explicitly given */ -#define CURSOR_OPT_INSENSITIVE 0x0008 /* INSENSITIVE */ -#define CURSOR_OPT_HOLD 0x0010 /* WITH HOLD */ -#define CURSOR_OPT_FAST_PLAN 0x0020 /* prefer fast-start plan */ +#define CURSOR_OPT_BINARY 0x0001 /* BINARY */ +#define CURSOR_OPT_SCROLL 0x0002 /* SCROLL explicitly given */ +#define CURSOR_OPT_NO_SCROLL 0x0004 /* NO SCROLL explicitly given */ +#define CURSOR_OPT_INSENSITIVE 0x0008 /* INSENSITIVE */ +#define CURSOR_OPT_HOLD 0x0010 /* WITH HOLD */ +#define CURSOR_OPT_FAST_PLAN 0x0020 /* prefer fast-start plan */ typedef struct DeclareCursorStmt { @@ -1499,7 +1499,7 @@ typedef struct ClosePortalStmt { NodeTag type; char *portalname; /* name of the portal (cursor) */ - /* NULL means CLOSE ALL */ + /* NULL means CLOSE ALL */ } ClosePortalStmt; /* ---------------------- @@ -1624,7 +1624,7 @@ typedef struct RemoveOpFamilyStmt char *amname; /* name of index AM opfamily is for */ DropBehavior behavior; /* RESTRICT or CASCADE behavior */ bool missing_ok; /* skip error if missing? */ -} RemoveOpFamilyStmt; +} RemoveOpFamilyStmt; /* ---------------------- * Alter Object Rename Statement @@ -1765,7 +1765,7 @@ typedef struct CreateEnumStmt NodeTag type; List *typename; /* qualified name (list of Value strings) */ List *vals; /* enum values (list of Value strings) */ -} CreateEnumStmt; +} CreateEnumStmt; /* ---------------------- @@ -1856,7 +1856,7 @@ typedef struct VacuumStmt bool full; /* do FULL (non-concurrent) vacuum */ bool analyze; /* do ANALYZE step */ bool verbose; /* print progress info */ - int freeze_min_age; /* min freeze age, or -1 to use default */ + int freeze_min_age; /* min freeze age, or -1 to use default */ RangeVar *relation; /* single table to process, or NULL */ List *va_cols; /* list of column names, or NIL for all */ } VacuumStmt; @@ -1892,13 +1892,13 @@ typedef enum DiscardMode DISCARD_ALL, DISCARD_PLANS, DISCARD_TEMP -} DiscardMode; +} DiscardMode; typedef struct DiscardStmt { NodeTag type; - DiscardMode target; -} DiscardStmt; + DiscardMode target; +} DiscardStmt; /* ---------------------- * LOCK Statement @@ -2013,7 +2013,7 @@ typedef struct DeallocateStmt { NodeTag type; char *name; /* The name of the plan to remove */ - /* NULL means DEALLOCATE ALL */ + /* NULL means DEALLOCATE ALL */ } DeallocateStmt; /* @@ -2044,7 +2044,7 @@ typedef struct AlterTSDictionaryStmt NodeTag type; List *dictname; /* qualified name (list of Value strings) */ List *options; /* List of DefElem nodes */ -} AlterTSDictionaryStmt; +} AlterTSDictionaryStmt; /* * TS Configuration stmts: DefineStmt, RenameStmt and DropStmt are default @@ -2055,14 +2055,14 @@ typedef struct AlterTSConfigurationStmt List *cfgname; /* qualified name (list of Value strings) */ /* - * dicts will be non-NIL if ADD/ALTER MAPPING was specified. - * If dicts is NIL, but tokentype isn't, DROP MAPPING was specified. + * dicts will be non-NIL if ADD/ALTER MAPPING was specified. If dicts is + * NIL, but tokentype isn't, DROP MAPPING was specified. */ - List *tokentype; /* list of Value strings */ - List *dicts; /* list of list of Value strings */ - bool override; /* if true - remove old variant */ - bool replace; /* if true - replace dictionary by another */ - bool missing_ok; /* for DROP - skip error if missing? */ -} AlterTSConfigurationStmt; + List *tokentype; /* list of Value strings */ + List *dicts; /* list of list of Value strings */ + bool override; /* if true - remove old variant */ + bool replace; /* if true - replace dictionary by another */ + bool missing_ok; /* for DROP - skip error if missing? */ +} AlterTSConfigurationStmt; #endif /* PARSENODES_H */ |