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