1 typedef union {
2     RTkey *key;
3     char *string;
4     RToper oper;
5     GiSTpredicate *pred;
6     int number;
7     double dbl;
8 } YYSTYPE;
9 #define	ID	258
10 #define	INTCONST	259
11 #define	DBLCONST	260
12 #define	CREATE	261
13 #define	INSERT	262
14 #define	DROP	263
15 #define	OPEN	264
16 #define	CLOSE	265
17 #define	QUIT	266
18 #define	SELECT	267
19 #define	DELETE	268
20 #define	WHERE	269
21 #define	FROM	270
22 #define	NL	271
23 #define	ERROR	272
24 #define	AND	273
25 #define	OR	274
26 #define	DEBUG	275
27 #define	HELP	276
28 #define	DUMP	277
29 #define	opLE	278
30 #define	opGE	279
31 #define	opNE	280
32 #define	NOT	281
33 
34 
35 extern YYSTYPE yylval;
36