mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
Used modified version of indent that understands over 100 typedefs.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: nodes.h,v 1.13 1997/09/08 02:37:21 momjian Exp $
|
||||
* $Id: nodes.h,v 1.14 1997/09/08 21:52:47 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -209,7 +209,7 @@ typedef enum NodeTag
|
||||
T_SortClause,
|
||||
T_GroupClause,
|
||||
T_SubSelect
|
||||
} NodeTag;
|
||||
} NodeTag;
|
||||
|
||||
/*
|
||||
* The first field of a node of any type is gauranteed to be the NodeTag.
|
||||
@@ -220,7 +220,7 @@ typedef enum NodeTag
|
||||
typedef struct Node
|
||||
{
|
||||
NodeTag type;
|
||||
} Node;
|
||||
} Node;
|
||||
|
||||
#define nodeTag(_node_) ((Node*)_node_)->type
|
||||
|
||||
@@ -303,7 +303,7 @@ typedef enum CmdType
|
||||
CMD_NOTIFY,
|
||||
CMD_UTILITY /* cmds like create, destroy, copy,
|
||||
* vacuum, etc. */
|
||||
} CmdType;
|
||||
} CmdType;
|
||||
|
||||
|
||||
#endif /* NODES_H */
|
||||
|
||||
Reference in New Issue
Block a user