|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.6 1996/11/04 04:35:42 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.7 1996/11/08 00:56:17 scrappy Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
15 | 15 | #include<ctype.h> |
16 | 16 | #include<string.h> |
17 | 17 | #include"postgres.h" |
18 | 18 |
|
| 19 | +#include"fmgr.h" |
19 | 20 | #include"access/heapam.h" |
20 | 21 | #include"utils/tqual.h" |
21 | 22 | #include"access/tupmacs.h" |
|
27 | 28 |
|
28 | 29 | #include"utils/syscache.h" |
29 | 30 | #include"catalog/pg_type.h" |
| 31 | +#include"catalog/pg_operator.h" |
30 | 32 | #include"parser/catalog_utils.h" |
31 | 33 | #include"parser/parse_query.h" |
32 | | -/* #include "parser/io.h" */ |
33 | 34 | #include"utils/lsyscache.h" |
34 | 35 |
|
35 | 36 | #include"nodes/pg_list.h" |
@@ -228,7 +229,7 @@ makeTimeRange(char *datestring1, |
228 | 229 | char*datestring2, |
229 | 230 | inttimecode)/* 0 = snapshot , 1 = timerange */ |
230 | 231 | { |
231 | | -TimeQualqual; |
| 232 | +TimeQualqual=NULL; |
232 | 233 | AbsoluteTimet1,t2; |
233 | 234 |
|
234 | 235 | switch (timecode) { |
|