diff options
| author | Bruce Momjian | 2002-07-18 17:14:20 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2002-07-18 17:14:20 +0000 |
| commit | 7d78bac108793b7b5ff6eb14877e48feaddb1247 (patch) | |
| tree | d4841ab5124cb6329611077f5e9196e0679b70e5 /src/include/nodes | |
| parent | a938f32a5af48914dce33b963cbd325fb0e186fd (diff) | |
Back out BETWEEN node patch, was causing initdb failure.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/makefuncs.h | 3 | ||||
| -rw-r--r-- | src/include/nodes/nodes.h | 3 | ||||
| -rw-r--r-- | src/include/nodes/parsenodes.h | 21 |
3 files changed, 3 insertions, 24 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index 21473ff7049..08fcbbdb557 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.38 2002/07/18 04:41:45 momjian Exp $ + * $Id: makefuncs.h,v 1.39 2002/07/18 17:14:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -57,6 +57,5 @@ extern RelabelType *makeRelabelType(Node *arg, Oid rtype, int32 rtypmod); extern RangeVar *makeRangeVar(char *schemaname, char *relname); extern TypeName *makeTypeName(char *typnam); -extern TypeName *makeQualifiedTypeName(List *lst); #endif /* MAKEFUNC_H */ diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 7d643dad681..308bf95877d 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.111 2002/07/18 04:41:45 momjian Exp $ + * $Id: nodes.h,v 1.112 2002/07/18 17:14:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -226,7 +226,6 @@ typedef enum NodeTag T_GroupClause, T_NullTest, T_BooleanTest, - T_BetweenExpr, T_CaseExpr, T_CaseWhen, T_FkConstraint, diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 26e2e0ab299..b2e42ab7164 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.191 2002/07/18 16:47:26 tgl Exp $ + * $Id: parsenodes.h,v 1.192 2002/07/18 17:14:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -174,25 +174,6 @@ typedef struct A_Const } A_Const; /* - * BetweenExpr - an SQL99 BETWEEN expression - */ - -typedef struct BetweenExpr -{ - NodeTag type; - Node *expr; /* Expression to check */ - Node *lexpr; /* First bound */ - Node *rexpr; /* Second bound */ - bool not; /* Do we want inverse? */ - bool symmetric; /* True if SYMMETRIC, false if ASYMMETRIC */ - Oid typeId; /* Information about common type */ - int16 typeLen; - bool typeByVal; - Expr *gthan; - Expr *lthan; -} BetweenExpr; - -/* * TypeCast - a CAST expression * * NOTE: for mostly historical reasons, A_Const parsenodes contain |
