e34c0cbc2b309d0a5b5457e82700aa1aa535c1ee
[reactos.git] / reactos / dll / win32 / msi / sql.tab.h
1 /* A Bison parser, made by GNU Bison 2.5. */
2
3 /* Bison interface for Yacc-like parsers in C
4
5 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
29
30 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
32
33
34 /* Tokens. */
35 #ifndef YYTOKENTYPE
36 # define YYTOKENTYPE
37 /* Put the tokens into the symbol table, so that GDB and other debuggers
38 know about them. */
39 enum yytokentype {
40 TK_ALTER = 258,
41 TK_AND = 259,
42 TK_BY = 260,
43 TK_CHAR = 261,
44 TK_COMMA = 262,
45 TK_CREATE = 263,
46 TK_DELETE = 264,
47 TK_DROP = 265,
48 TK_DISTINCT = 266,
49 TK_DOT = 267,
50 TK_EQ = 268,
51 TK_FREE = 269,
52 TK_FROM = 270,
53 TK_GE = 271,
54 TK_GT = 272,
55 TK_HOLD = 273,
56 TK_ADD = 274,
57 TK_ID = 275,
58 TK_ILLEGAL = 276,
59 TK_INSERT = 277,
60 TK_INT = 278,
61 TK_INTEGER = 279,
62 TK_INTO = 280,
63 TK_IS = 281,
64 TK_KEY = 282,
65 TK_LE = 283,
66 TK_LONG = 284,
67 TK_LONGCHAR = 285,
68 TK_LP = 286,
69 TK_LT = 287,
70 TK_LOCALIZABLE = 288,
71 TK_MINUS = 289,
72 TK_NE = 290,
73 TK_NOT = 291,
74 TK_NULL = 292,
75 TK_OBJECT = 293,
76 TK_OR = 294,
77 TK_ORDER = 295,
78 TK_PRIMARY = 296,
79 TK_RP = 297,
80 TK_SELECT = 298,
81 TK_SET = 299,
82 TK_SHORT = 300,
83 TK_SPACE = 301,
84 TK_STAR = 302,
85 TK_STRING = 303,
86 TK_TABLE = 304,
87 TK_TEMPORARY = 305,
88 TK_UPDATE = 306,
89 TK_VALUES = 307,
90 TK_WHERE = 308,
91 TK_WILDCARD = 309,
92 COLUMN = 311,
93 FUNCTION = 312,
94 COMMENT = 313,
95 UNCLOSED_STRING = 314,
96 SPACE = 315,
97 ILLEGAL = 316,
98 END_OF_FILE = 317,
99 TK_LIKE = 318,
100 TK_NEGATION = 319
101 };
102 #endif
103
104
105
106 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
107 typedef union YYSTYPE
108 {
109
110 /* Line 2068 of yacc.c */
111 #line 68 "sql.y"
112
113 struct sql_str str;
114 LPWSTR string;
115 column_info *column_list;
116 MSIVIEW *query;
117 struct expr *expr;
118 USHORT column_type;
119 int integer;
120
121
122
123 /* Line 2068 of yacc.c */
124 #line 125 "sql.tab.h"
125 } YYSTYPE;
126 # define YYSTYPE_IS_TRIVIAL 1
127 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
128 # define YYSTYPE_IS_DECLARED 1
129 #endif
130
131
132
133