Hash Index with single term f1=? not working..
[csql.git] / src / sql / dmlyacc.h
blob8ba9e0fc976133e2fff41ef40e7336459a98dbf8
1 #define STRING 257
2 #define FIELD 258
3 #define NUMBER_STRING 259
4 #define BINARY_STRING 260
5 #define DOUBLE 261
6 #define OPERATOR 262
7 #define PARAMETER 263
8 #define SELECT 264
9 #define FROM 265
10 #define WHERE 266
11 #define BETWEEN 267
12 #define AND 268
13 #define OR 269
14 #define NOT 270
15 #define STAR 271
16 #define INSERT 272
17 #define INTO 273
18 #define VALUES 274
19 #define DELETE 275
20 #define UPDATE 276
21 #define SET 277
22 #define NULL_VALUE 278
23 #define CREATE 279
24 #define TABLE 280
25 #define PRIMARY 281
26 #define KEY 282
27 #define DEFAULT 283
28 #define INDEX 284
29 #define ON 285
30 #define HASH 286
31 #define TREE 287
32 #define UNIQUE 288
33 #define DROP 289
34 #define INT_TYPE 290
35 #define LONG_TYPE 291
36 #define SHORT_TYPE 292
37 #define DOUBLE_TYPE 293
38 #define TIMESTAMP_TYPE 294
39 #define DATE_TYPE 295
40 #define CHAR_TYPE 296
41 #define TIME_TYPE 297
42 #define BIGINT_TYPE 298
43 #define FLOAT_TYPE 299
44 typedef union
46 char *stringval;
47 void *predicate;
48 } YYSTYPE;
49 extern YYSTYPE yylval;