sql.c 207.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/*
** 2000-05-29
**
** The author disclaims copyright to this source code.  In place of
** a legal notice, here is a blessing:
**
**    May you do good and not evil.
**    May you find forgiveness for yourself and forgive others.
**    May you share freely, never taking more than you give.
**
*************************************************************************
** Driver template for the LEMON parser generator.
**
** The "lemon" program processes an LALR(1) input grammar file, then uses
** this template to construct a parser.  The "lemon" program inserts text
** at each "%%" line.  Also, any "P-a-r-s-e" identifer prefix (without the
** interstitial "-" characters) contained in this template is changed into
** the value of the %name directive from the grammar.  Otherwise, the content
** of this template is copied straight through into the generate parser
** source file.
**
** The following is the concatenation of all %include directives from the
** input grammar file:
*/
#include <stdio.h>
#include <assert.h>
/************ Begin %include sections from the grammar ************************/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <stdbool.h>

35
#include "functionMgt.h"
36
#include "nodes.h"
X
Xiaoyu Wang 已提交
37
#include "parToken.h"
38
#include "ttokendef.h"
X
Xiaoyu Wang 已提交
39
#include "parAst.h"
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/**************** End of %include directives **********************************/
/* These constants specify the various numeric values for terminal symbols
** in a format understandable to "makeheaders".  This section is blank unless
** "lemon" is run with the "-m" command-line option.
***************** Begin makeheaders token definitions *************************/
/**************** End makeheaders token definitions ***************************/

/* The next sections is a series of control #defines.
** various aspects of the generated parser.
**    YYCODETYPE         is the data type used to store the integer codes
**                       that represent terminal and non-terminal symbols.
**                       "unsigned char" is used if there are fewer than
**                       256 symbols.  Larger types otherwise.
**    YYNOCODE           is a number of type YYCODETYPE that is not used for
**                       any terminal or nonterminal symbol.
**    YYFALLBACK         If defined, this indicates that one or more tokens
**                       (also known as: "terminal symbols") have fall-back
**                       values which should be used if the original symbol
**                       would not parse.  This permits keywords to sometimes
**                       be used as identifiers, for example.
**    YYACTIONTYPE       is the data type used for "action codes" - numbers
**                       that indicate what to do in response to the next
**                       token.
X
Xiaoyu Wang 已提交
63
**    ParseTOKENTYPE     is the data type used for minor type for terminal
64 65 66 67 68 69 70 71 72 73
**                       symbols.  Background: A "minor type" is a semantic
**                       value associated with a terminal or non-terminal
**                       symbols.  For example, for an "ID" terminal symbol,
**                       the minor type might be the name of the identifier.
**                       Each non-terminal can have a different minor type.
**                       Terminal symbols all have the same minor type, though.
**                       This macros defines the minor type for terminal 
**                       symbols.
**    YYMINORTYPE        is the data type used for all minor types.
**                       This is typically a union of many types, one of
X
Xiaoyu Wang 已提交
74
**                       which is ParseTOKENTYPE.  The entry in the union
75 76
**                       for terminal symbols is called "yy0".
**    YYSTACKDEPTH       is the maximum depth of the parser's stack.  If
X
Xiaoyu Wang 已提交
77
**                       zero the stack is dynamically sized using realloc()
X
Xiaoyu Wang 已提交
78 79 80 81 82 83
**    ParseARG_SDECL     A static variable declaration for the %extra_argument
**    ParseARG_PDECL     A parameter declaration for the %extra_argument
**    ParseARG_PARAM     Code to pass %extra_argument as a subroutine parameter
**    ParseARG_STORE     Code to store %extra_argument into yypParser
**    ParseARG_FETCH     Code to extract %extra_argument from yypParser
**    ParseCTX_*         As ParseARG_ except for %extra_context
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
**    YYERRORSYMBOL      is the code number of the error symbol.  If not
**                       defined, then do no error processing.
**    YYNSTATE           the combined number of states.
**    YYNRULE            the number of rules in the grammar
**    YYNTOKEN           Number of terminal symbols
**    YY_MAX_SHIFT       Maximum value for shift actions
**    YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions
**    YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions
**    YY_ERROR_ACTION    The yy_action[] code for syntax error
**    YY_ACCEPT_ACTION   The yy_action[] code for accept
**    YY_NO_ACTION       The yy_action[] code for no-op
**    YY_MIN_REDUCE      Minimum value for reduce actions
**    YY_MAX_REDUCE      Maximum value for reduce actions
*/
#ifndef INTERFACE
# define INTERFACE 1
#endif
/************* Begin control #defines *****************************************/
X
Xiaoyu Wang 已提交
102
#define YYCODETYPE unsigned short int
103
#define YYNOCODE 313
104
#define YYACTIONTYPE unsigned short int
X
Xiaoyu Wang 已提交
105
#define ParseTOKENTYPE  SToken 
106 107
typedef union {
  int yyinit;
X
Xiaoyu Wang 已提交
108
  ParseTOKENTYPE yy0;
109 110 111 112 113 114 115 116 117 118 119 120
  SToken yy21;
  bool yy173;
  EOrder yy256;
  EFillMode yy268;
  SDataType yy288;
  SAlterOption yy289;
  EJoinType yy440;
  EOperatorType yy468;
  SNodeList* yy476;
  ENullOrder yy525;
  SNode* yy564;
  int32_t yy620;
121 122 123 124
} YYMINORTYPE;
#ifndef YYSTACKDEPTH
#define YYSTACKDEPTH 100
#endif
X
Xiaoyu Wang 已提交
125 126 127 128 129 130 131 132 133 134
#define ParseARG_SDECL  SAstCreateContext* pCxt ;
#define ParseARG_PDECL , SAstCreateContext* pCxt 
#define ParseARG_PARAM ,pCxt 
#define ParseARG_FETCH  SAstCreateContext* pCxt =yypParser->pCxt ;
#define ParseARG_STORE yypParser->pCxt =pCxt ;
#define ParseCTX_SDECL
#define ParseCTX_PDECL
#define ParseCTX_PARAM
#define ParseCTX_FETCH
#define ParseCTX_STORE
135 136 137 138 139 140 141 142 143 144 145
#define YYNSTATE             544
#define YYNRULE              408
#define YYNTOKEN             207
#define YY_MAX_SHIFT         543
#define YY_MIN_SHIFTREDUCE   802
#define YY_MAX_SHIFTREDUCE   1209
#define YY_ERROR_ACTION      1210
#define YY_ACCEPT_ACTION     1211
#define YY_NO_ACTION         1212
#define YY_MIN_REDUCE        1213
#define YY_MAX_REDUCE        1620
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
/************* End control #defines *******************************************/
#define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0])))

/* Define the yytestcase() macro to be a no-op if is not already defined
** otherwise.
**
** Applications can choose to define yytestcase() in the %include section
** to a macro that can assist in verifying code coverage.  For production
** code the yytestcase() macro should be turned off.  But it is useful
** for testing.
*/
#ifndef yytestcase
# define yytestcase(X)
#endif


/* Next are the tables used to determine what action to take based on the
** current state and lookahead token.  These tables are used to implement
** functions that take a state number and lookahead value and return an
** action integer.  
**
** Suppose the action integer is N.  Then the action is determined as
** follows
**
**   0 <= N <= YY_MAX_SHIFT             Shift N.  That is, push the lookahead
**                                      token onto the stack and goto state N.
**
**   N between YY_MIN_SHIFTREDUCE       Shift to an arbitrary state then
**     and YY_MAX_SHIFTREDUCE           reduce by rule N-YY_MIN_SHIFTREDUCE.
**
**   N == YY_ERROR_ACTION               A syntax error has occurred.
**
**   N == YY_ACCEPT_ACTION              The parser accepts its input.
**
**   N == YY_NO_ACTION                  No such action.  Denotes unused
**                                      slots in the yy_action[] table.
**
**   N between YY_MIN_REDUCE            Reduce by rule N-YY_MIN_REDUCE
**     and YY_MAX_REDUCE
**
** The action table is constructed as a single large table named yy_action[].
** Given state S and lookahead X, the action is computed as either:
**
**    (A)   N = yy_action[ yy_shift_ofst[S] + X ]
**    (B)   N = yy_default[S]
**
** The (A) formula is preferred.  The B formula is used instead if
** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X.
**
** The formulas above are for computing the action when the lookahead is
** a terminal symbol.  If the lookahead is a non-terminal (as occurs after
** a reduce action) then the yy_reduce_ofst[] array is used in place of
** the yy_shift_ofst[] array.
**
** The following are the tables generated in this section:
**
**  yy_action[]        A single table containing all actions.
**  yy_lookahead[]     A table containing the lookahead for each entry in
**                     yy_action.  Used to detect hash collisions.
**  yy_shift_ofst[]    For each state, the offset into yy_action for
**                     shifting terminals.
**  yy_reduce_ofst[]   For each state, the offset into yy_action for
**                     shifting non-terminals after a reduce.
**  yy_default[]       Default action for each state.
**
*********** Begin parsing tables **********************************************/
212
#define YY_ACTTAB_COUNT (1523)
213
static const YYACTIONTYPE yy_action[] = {
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
 /*     0 */    25,  193, 1473, 1322,  255,  446, 1489,  459,  267,  310,
 /*    10 */   275, 1422,   31,   29, 1469, 1476,  308, 1413, 1415, 1449,
 /*    20 */   264, 1473, 1046,  272,  427,   32,   30,   28,   27,   26,
 /*    30 */  1505,   21, 1333, 1469, 1475,  304,  458,  443, 1044,  236,
 /*    40 */  1473,   32,   30,   28,   27,   26, 1068,  445,   23,  100,
 /*    50 */    11, 1460, 1469, 1475, 1489,  287,  431, 1051,   32,   30,
 /*    60 */    28,   27,   26,   31,   29, 1152, 1599,  227, 1490, 1491,
 /*    70 */  1494,  264,  215, 1046,    1, 1363,   31,   29, 1505,  130,
 /*    80 */  1552,  136,   98, 1597,  264,  443, 1046, 1599, 1166, 1044,
 /*    90 */    52,  429,  126, 1545, 1546,  445, 1550,  540, 1549, 1460,
 /*   100 */   130,   11, 1044,   96, 1597, 1069, 1211,   50, 1051, 1045,
 /*   110 */    49, 1328,  378,  377,   11,   70, 1490, 1491, 1494, 1538,
 /*   120 */   458, 1051,  345, 1537, 1534,    1, 1214,  928,  482,  481,
 /*   130 */   480,  932,  479,  934,  935,  478,  937,  475,    1,  943,
 /*   140 */   472,  945,  946,  469,  466, 1047,  485,   84,  540, 1324,
 /*   150 */    83,   82,   81,   80,   79,   78,   77,   76,   75,  280,
 /*   160 */  1045,  540, 1050, 1070, 1071, 1096, 1097, 1098, 1099, 1100,
 /*   170 */  1101, 1102, 1103, 1045,   12, 1046,  459, 1066,  163,   31,
 /*   180 */    29,  116,  369, 1225,  131,  309,  380,  264,  374, 1046,
 /*   190 */  1599, 1044,  379,  403, 1460,   97, 1047,  375,  373,  156,
 /*   200 */   376, 1333,  154,  130,  371, 1044,  303, 1597,  302, 1047,
 /*   210 */  1051,  394,  458, 1050, 1070, 1071, 1096, 1097, 1098, 1099,
 /*   220 */  1100, 1101, 1102, 1103, 1051,  417, 1050, 1070, 1071, 1096,
 /*   230 */  1097, 1098, 1099, 1100, 1101, 1102, 1103,  404,  459, 1176,
 /*   240 */   131,    7, 1599,   31,   29,  444,  131,   72, 1070, 1071,
 /*   250 */   540,  264,  459, 1046,  366,  130,  890,   31,   29, 1597,
 /*   260 */  1072,  317, 1045, 1333,  540,  264,   12, 1046, 1599, 1044,
 /*   270 */   414, 1174, 1175, 1177, 1178,  892, 1045, 1333,   52,  422,
 /*   280 */   418,  130, 1489, 1044,  131, 1597,   84, 1599, 1051,   83,
 /*   290 */    82,   81,   80,   79,   78,   77,   76,   75, 1047, 1329,
 /*   300 */  1598,  331, 1051,   65, 1597,    7, 1505,   32,   30,   28,
 /*   310 */    27,   26, 1047,  443, 1505, 1050,  117,  101, 1236,    7,
 /*   320 */  1291,  443,  421,  445, 1325, 1489, 1311, 1460,  540, 1050,
 /*   330 */  1070, 1071, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103,
 /*   340 */  1045,  131,  540,  118, 1490, 1491, 1494,  140,  139, 1505,
 /*   350 */   235,  131, 1066,  420, 1045,  459,  443,  121,  494,  324,
 /*   360 */   459, 1552,  336, 1460,  318, 1067,  445,  427, 1373,  344,
 /*   370 */  1460,  337, 1380,  263, 1235,  345, 1047,  188,  254, 1548,
 /*   380 */  1333,  432, 1612, 1378, 1309, 1333,  231, 1490, 1491, 1494,
 /*   390 */  1047,  496,  100, 1050, 1070, 1071, 1096, 1097, 1098, 1099,
 /*   400 */  1100, 1101, 1102, 1103,   28,   27,   26, 1050, 1070, 1071,
 /*   410 */  1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103,  459, 1460,
 /*   420 */    31,   29,  434, 1380,  268,   98, 1234, 1330,  264,  269,
 /*   430 */  1046, 1262,  114,  494, 1378,  127, 1545, 1546, 1410, 1550,
 /*   440 */  1335,  536,  535, 1333,  335,  138, 1044,  330,  329,  328,
 /*   450 */   327,  326,   59,  323,  322,  321,  320,  316,  315,  314,
 /*   460 */   313,  312,  311,  459, 1151, 1051,   32,   30,   28,   27,
 /*   470 */    26, 1460,  456, 1326, 1318,   32,   30,   28,   27,   26,
 /*   480 */   248, 1320,    1,  516,  515,  514,  513,  279, 1333,  512,
 /*   490 */   511,  510,  102,  505,  504,  503,  502,  501,  500,  499,
 /*   500 */   498,  108, 1489,  459,  238,  540,  163,  508,  114,  459,
 /*   510 */   369,  298,   72,  238,  446,  274, 1336, 1045,  457,  372,
 /*   520 */  1423, 1316,  249,  114,  247,  246, 1505,  368, 1333, 1084,
 /*   530 */  1213, 1335,  371,  443, 1333, 1073,  277, 1115,   32,   30,
 /*   540 */    28,   27,   26,  445,  114, 1292, 1115, 1460,  839, 1117,
 /*   550 */   838, 1552, 1335, 1047,   93,   92,   91,   90,   89,   88,
 /*   560 */    87,   86,   85,  224, 1490, 1491, 1494, 1121,  840, 1547,
 /*   570 */  1050, 1070, 1071, 1096, 1097, 1098, 1099, 1100, 1101, 1102,
 /*   580 */  1103,  385,    9,    8,  459, 1116, 1380,  509,  507,  459,
 /*   590 */   115,   22,  276,  207, 1116,  221,  393, 1378,  278, 1480,
 /*   600 */   497, 1084, 1305, 1120, 1233,  838, 1232,  219, 1265, 1333,
 /*   610 */   165, 1478, 1120,  388, 1333, 1380, 1231,    6,  382,  433,
 /*   620 */   141,  364, 1230, 1489,  164, 1229, 1414,   24,  262, 1110,
 /*   630 */  1111, 1112, 1113, 1114, 1118, 1119,   24,  262, 1110, 1111,
 /*   640 */  1112, 1113, 1114, 1118, 1119, 1150,  168, 1505, 1380, 1460,
 /*   650 */    42, 1460,  174,   41,  443,  435, 1128, 1228, 1227, 1379,
 /*   660 */   380, 1460,  374,  484,  445, 1054,  379, 1460, 1460,   97,
 /*   670 */  1460,  375,  373,  431,  376, 1557, 1147, 1489, 1224, 1223,
 /*   680 */  1222, 1221,  295,   67,   68, 1490, 1491, 1494, 1538, 1220,
 /*   690 */   271,  270,  237, 1534,  392,    9,    8,  297, 1219, 1218,
 /*   700 */  1059, 1505, 1460, 1460, 1599, 1217,  438,  390,  430, 1216,
 /*   710 */    48,   47,  307,  402,  135, 1252, 1052,  130,  445,  301,
 /*   720 */  1226, 1597, 1460, 1460, 1460, 1460, 1460,  244, 1489,  293,
 /*   730 */  1053,  289,  285,  132, 1460, 1051, 1057,  381,   69, 1490,
 /*   740 */  1491, 1494, 1538, 1460, 1460,  864,  257, 1534,  125, 1159,
 /*   750 */  1460,  543, 1505,  190, 1460, 1068,  131, 1147,  158,  430,
 /*   760 */   189,  157, 1208, 1209,  865,  212,  410, 1565,   95,  445,
 /*   770 */   442, 1489, 1247, 1460,  532,  460,  528,  524,  520,  211,
 /*   780 */   415,  160,  162, 1489,  159,  161,  436, 1055, 1245,   69,
 /*   790 */  1490, 1491, 1494, 1538,  383, 1505, 1489,  257, 1534,  125,
 /*   800 */   340, 1056,  443, 1374,  401,   66,  183, 1505,  205,  106,
 /*   810 */   386,  363,  445,  406,  443,   44, 1460, 1568, 1566, 1173,
 /*   820 */  1505,  177,   33, 1060,  445,  179, 1122,  443, 1460,  428,
 /*   830 */  1506, 1489,  229, 1490, 1491, 1494,  192,  445,  455,  439,
 /*   840 */  1063, 1460,    2, 1489,   69, 1490, 1491, 1494, 1538, 1066,
 /*   850 */   282,  243,  257, 1534, 1611, 1505,  286,   70, 1490, 1491,
 /*   860 */  1494, 1538,  443, 1572,  890,  409, 1535, 1505,  170,   33,
 /*   870 */    64,   33,  445, 1081,  443, 1013, 1460,  196,  245, 1022,
 /*   880 */    61,  198, 1107, 1030,  445,  167,   94,  104, 1460,  213,
 /*   890 */   451,  204,   69, 1490, 1491, 1494, 1538,  319, 1412,  137,
 /*   900 */   257, 1534, 1611, 1489,   69, 1490, 1491, 1494, 1538,  325,
 /*   910 */   332, 1595,  257, 1534, 1611,  106,  333,  151,  427,  921,
 /*   920 */   124,  334,  338, 1556,  339, 1077,  362, 1505,  358,  354,
 /*   930 */   350,  150,   44,  464,  443, 1076,  916,  949,  104, 1489,
 /*   940 */   143,  105,  953,  100,  445,  959,  341,  106, 1460,  342,
 /*   950 */  1489,  958,   32,   30,   28,   27,   26,   53, 1075,  146,
 /*   960 */   148,  343,  431, 1505,   70, 1490, 1491, 1494, 1538,  365,
 /*   970 */   443,   51,  441, 1534, 1505,  104,   98,  346,  149,  107,
 /*   980 */   445,  443, 1074,  427, 1460,   74,  186, 1545,  426,  367,
 /*   990 */   425,  445, 1323, 1599,  370, 1460,  153, 1319,  411,  155,
 /*  1000 */   230, 1490, 1491, 1494, 1489,  109,  130,  110,  100, 1489,
 /*  1010 */  1597,  231, 1490, 1491, 1494, 1321,  147, 1317,  120,  253,
 /*  1020 */   144,  111,  408,  112,  396,  395,  397,  405, 1505,  169,
 /*  1030 */   398,  407,  423, 1505,  172,  443, 1073,  142, 1489,  416,
 /*  1040 */   443,   98,  449, 1579, 1051,  445, 1569,  175,  413, 1460,
 /*  1050 */   445,  128, 1545, 1546, 1460, 1550,  256,  261,  178,  419,
 /*  1060 */   412,  424, 1505,    5, 1489,  118, 1490, 1491, 1494,  443,
 /*  1070 */   231, 1490, 1491, 1494,    4, 1559, 1578,  182, 1206,  445,
 /*  1080 */  1147,  123,   99, 1460, 1072,   34,  265, 1553, 1505,  184,
 /*  1090 */   185,  258,  440,  437, 1614,  443,   17,  447,  191,  231,
 /*  1100 */  1490, 1491, 1494, 1520, 1613,  445, 1489,  452, 1421, 1460,
 /*  1110 */  1596, 1489,  448,  200, 1420,  266,  214, 1489,  453, 1334,
 /*  1120 */   454,  202,   60,   58,  462,  232, 1490, 1491, 1494,  491,
 /*  1130 */  1505,  539,  216,  210, 1306, 1505,  220,  443,  218,   40,
 /*  1140 */   222, 1505,  443, 1454, 1453, 1205,  281,  445,  443, 1310,
 /*  1150 */   223, 1460,  445, 1450,  283,  284, 1460, 1040,  445, 1489,
 /*  1160 */  1041,  133, 1460,  288, 1448,  290,  291,  225, 1490, 1491,
 /*  1170 */  1494, 1489,  233, 1490, 1491, 1494,  292, 1447,  226, 1490,
 /*  1180 */  1491, 1494, 1446, 1505, 1489,  294,  296, 1437,  134,  299,
 /*  1190 */   443,  300, 1025, 1431, 1024, 1505, 1430,  306,  305, 1429,
 /*  1200 */   445, 1308,  443, 1428, 1460, 1405,  996, 1404, 1505, 1403,
 /*  1210 */   208, 1402,  445, 1489,  490,  443, 1460, 1401, 1400, 1399,
 /*  1220 */   234, 1490, 1491, 1494, 1398,  445, 1397, 1396, 1395, 1460,
 /*  1230 */  1394, 1393, 1502, 1490, 1491, 1494,  492, 1505, 1392, 1489,
 /*  1240 */  1391,  103, 1390, 1389,  443, 1501, 1490, 1491, 1494, 1388,
 /*  1250 */  1387, 1386, 1385, 1384,  445,  489,  488,  487, 1460,  486,
 /*  1260 */  1383,  998,  208, 1505, 1382, 1489,  490, 1381, 1264, 1445,
 /*  1270 */   443, 1439, 1427, 1489, 1500, 1490, 1491, 1494, 1418,  145,
 /*  1280 */   445, 1312, 1263,  857, 1460, 1261,  347,  349,  492, 1505,
 /*  1290 */   348, 1259,  352,  351, 1257,  355,  443, 1505, 1255, 1489,
 /*  1300 */   241, 1490, 1491, 1494,  443,  353,  445,  489,  488,  487,
 /*  1310 */  1460,  486,  356,  357,  445,  359,  360,  361, 1460, 1244,
 /*  1320 */  1243, 1240, 1314, 1505,   73,  966,  240, 1490, 1491, 1494,
 /*  1330 */   443,  964,  508, 1313,  242, 1490, 1491, 1494,  889,  152,
 /*  1340 */   445, 1489,  888,  887, 1460,  886,  506, 1253,  883,  882,
 /*  1350 */   250, 1248,  251,  384, 1246,  387,  252, 1239,  389, 1238,
 /*  1360 */   239, 1490, 1491, 1494,  391, 1505,   71, 1444,  166, 1032,
 /*  1370 */    43, 1438,  443,  113,  399, 1426, 1425, 1417,  171,  122,
 /*  1380 */    54, 1478,  445,  400,   37,   14, 1460,    3,  176,   33,
 /*  1390 */  1172,  173,   15,   56,   38,   35,   10,    8,  119,  180,
 /*  1400 */    19,   55,  228, 1490, 1491, 1494, 1194, 1165,  181,   20,
 /*  1410 */  1193,  259, 1198, 1416, 1144, 1143,   36, 1197,  260, 1199,
 /*  1420 */    16,  450,  203, 1061,   13, 1108,  201,  187, 1082,  129,
 /*  1430 */    18,  463,  273,  195,  194, 1170,  197,  199,   45,   57,
 /*  1440 */   467, 1477,  470,   39,  473,   61,  476,  927,  961,  957,
 /*  1450 */   955,  871,  206,  950, 1260,  461,  465,  878,  877,  947,
 /*  1460 */   468,  876,  944,  938,  471,  474,  855,  936,  493,  896,
 /*  1470 */   477,  875,  874,  873,   62,  872,  891,  868,  893,   46,
 /*  1480 */   942,   63,  867,  866,  941,  209,  483,  863,  495,  862,
 /*  1490 */   861,  860,  518,  517, 1258,  522,  940,  939,  521, 1256,
 /*  1500 */   519,  523,  525,  526,  527, 1254,  529,  530,  531, 1242,
 /*  1510 */   533,  534,  960, 1241, 1237,  537,  538, 1212, 1048,  217,
 /*  1520 */  1212,  541,  542,
367 368
};
static const YYCODETYPE yy_lookahead[] = {
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
 /*     0 */   276,  277,  255,  235,  238,  251,  210,  216,  254,  216,
 /*    10 */   243,  257,   12,   13,  267,  268,  225,  250,  251,    0,
 /*    20 */    20,  255,   22,  238,  216,   12,   13,   14,   15,   16,
 /*    30 */   234,    2,  241,  267,  268,  260,   20,  241,   38,  246,
 /*    40 */   255,   12,   13,   14,   15,   16,   20,  251,    2,  241,
 /*    50 */    50,  255,  267,  268,  210,   36,  260,   57,   12,   13,
 /*    60 */    14,   15,   16,   12,   13,   14,  291,  271,  272,  273,
 /*    70 */   274,   20,  227,   22,   74,  230,   12,   13,  234,  304,
 /*    80 */   269,   47,  274,  308,   20,  241,   22,  291,   75,   38,
 /*    90 */   218,  283,  284,  285,  286,  251,  288,   97,  287,  255,
 /*   100 */   304,   50,   38,  231,  308,   20,  207,   73,   57,  109,
 /*   110 */    76,  239,  220,  221,   50,  271,  272,  273,  274,  275,
 /*   120 */    20,   57,   49,  279,  280,   74,    0,   88,   89,   90,
 /*   130 */    91,   92,   93,   94,   95,   96,   97,   98,   74,  100,
 /*   140 */   101,  102,  103,  104,  105,  145,   85,   21,   97,  210,
 /*   150 */    24,   25,   26,   27,   28,   29,   30,   31,   32,  260,
 /*   160 */   109,   97,  162,  163,  164,  165,  166,  167,  168,  169,
 /*   170 */   170,  171,  172,  109,   74,   22,  216,   20,   61,   12,
 /*   180 */    13,  209,   65,  211,  184,  225,   52,   20,   54,   22,
 /*   190 */   291,   38,   58,  216,  255,   61,  145,   63,   64,   78,
 /*   200 */    66,  241,   81,  304,   87,   38,  144,  308,  146,  145,
 /*   210 */    57,  260,   20,  162,  163,  164,  165,  166,  167,  168,
 /*   220 */   169,  170,  171,  172,   57,  135,  162,  163,  164,  165,
 /*   230 */   166,  167,  168,  169,  170,  171,  172,  260,  216,  162,
 /*   240 */   184,   74,  291,   12,   13,   14,  184,  225,  163,  164,
 /*   250 */    97,   20,  216,   22,  232,  304,   38,   12,   13,  308,
 /*   260 */    20,  225,  109,  241,   97,   20,   74,   22,  291,   38,
 /*   270 */   193,  194,  195,  196,  197,   57,  109,  241,  218,  189,
 /*   280 */   190,  304,  210,   38,  184,  308,   21,  291,   57,   24,
 /*   290 */    25,   26,   27,   28,   29,   30,   31,   32,  145,  239,
 /*   300 */   304,   67,   57,  215,  308,   74,  234,   12,   13,   14,
 /*   310 */    15,   16,  145,  241,  234,  162,  219,  229,  210,   74,
 /*   320 */   223,  241,   20,  251,  236,  210,    0,  255,   97,  162,
 /*   330 */   163,  164,  165,  166,  167,  168,  169,  170,  171,  172,
 /*   340 */   109,  184,   97,  271,  272,  273,  274,  113,  114,  234,
 /*   350 */    18,  184,   20,  273,  109,  216,  241,  233,   49,   27,
 /*   360 */   216,  269,   30,  255,  225,   20,  251,  216,  244,  225,
 /*   370 */   255,   39,  234,  258,  210,   49,  145,  137,  240,  287,
 /*   380 */   241,  309,  310,  245,    0,  241,  271,  272,  273,  274,
 /*   390 */   145,   57,  241,  162,  163,  164,  165,  166,  167,  168,
 /*   400 */   169,  170,  171,  172,   14,   15,   16,  162,  163,  164,
 /*   410 */   165,  166,  167,  168,  169,  170,  171,  172,  216,  255,
 /*   420 */    12,   13,    3,  234,  226,  274,  210,  225,   20,  240,
 /*   430 */    22,    0,  234,   49,  245,  284,  285,  286,  241,  288,
 /*   440 */   242,  213,  214,  241,  112,  248,   38,  115,  116,  117,
 /*   450 */   118,  119,  215,  121,  122,  123,  124,  125,  126,  127,
 /*   460 */   128,  129,  130,  216,    4,   57,   12,   13,   14,   15,
 /*   470 */    16,  255,  225,  236,  235,   12,   13,   14,   15,   16,
 /*   480 */    35,  235,   74,   52,   53,   54,   55,   56,  241,   58,
 /*   490 */    59,   60,   61,   62,   63,   64,   65,   66,   67,   68,
 /*   500 */    69,   70,  210,  216,   50,   97,   61,   71,  234,  216,
 /*   510 */    65,   75,  225,   50,  251,  226,  242,  109,  225,  232,
 /*   520 */   257,  235,   77,  234,   79,   80,  234,   82,  241,   75,
 /*   530 */     0,  242,   87,  241,  241,   20,  226,   83,   12,   13,
 /*   540 */    14,   15,   16,  251,  234,  223,   83,  255,   20,  131,
 /*   550 */    22,  269,  242,  145,   24,   25,   26,   27,   28,   29,
 /*   560 */    30,   31,   32,  271,  272,  273,  274,  149,   40,  287,
 /*   570 */   162,  163,  164,  165,  166,  167,  168,  169,  170,  171,
 /*   580 */   172,    4,    1,    2,  216,  131,  234,  220,  221,  216,
 /*   590 */    18,  173,  240,  225,  131,   23,   19,  245,  225,   74,
 /*   600 */   222,   75,  224,  149,  210,   22,  210,   35,    0,  241,
 /*   610 */    33,   86,  149,   36,  241,  234,  210,   43,   41,  200,
 /*   620 */    48,   38,  210,  210,   47,  210,  245,  173,  174,  175,
 /*   630 */   176,  177,  178,  179,  180,  181,  173,  174,  175,  176,
 /*   640 */   177,  178,  179,  180,  181,  185,  235,  234,  234,  255,
 /*   650 */    73,  255,  137,   76,  241,   71,   75,  210,  210,  245,
 /*   660 */    52,  255,   54,  235,  251,   38,   58,  255,  255,   61,
 /*   670 */   255,   63,   64,  260,   66,  182,  183,  210,  210,  210,
 /*   680 */   210,  210,  141,  111,  271,  272,  273,  274,  275,  210,
 /*   690 */    12,   13,  279,  280,   21,    1,    2,  156,  210,  210,
 /*   700 */    22,  234,  255,  255,  291,  210,   71,   34,  241,  210,
 /*   710 */   138,  139,  140,  263,  142,    0,   38,  304,  251,  147,
 /*   720 */   211,  308,  255,  255,  255,  255,  255,  155,  210,  157,
 /*   730 */    38,  159,  160,  161,  255,   57,  109,   22,  271,  272,
 /*   740 */   273,  274,  275,  255,  255,   38,  279,  280,  281,   14,
 /*   750 */   255,   19,  234,  311,  255,   20,  184,  183,   78,  241,
 /*   760 */   293,   81,  163,  164,   57,   33,  299,  300,   36,  251,
 /*   770 */    50,  210,    0,  255,   42,   97,   44,   45,   46,   47,
 /*   780 */   302,   78,   78,  210,   81,   81,  202,  109,    0,  271,
 /*   790 */   272,  273,  274,  275,   22,  234,  210,  279,  280,  281,
 /*   800 */   251,  109,  241,  244,  251,   73,  296,  234,   76,   71,
 /*   810 */    22,  213,  251,   75,  241,   71,  255,  270,  300,   75,
 /*   820 */   234,   71,   71,  145,  251,   75,   75,  241,  255,  289,
 /*   830 */   234,  210,  271,  272,  273,  274,  305,  251,  106,  204,
 /*   840 */   162,  255,  292,  210,  271,  272,  273,  274,  275,   20,
 /*   850 */   216,  266,  279,  280,  281,  234,   36,  271,  272,  273,
 /*   860 */   274,  275,  241,  290,   38,  133,  280,  234,  136,   71,
 /*   870 */    74,   71,  251,   75,  241,   75,  255,   71,  220,  143,
 /*   880 */    84,   75,  162,  151,  251,  153,   71,   71,  255,  261,
 /*   890 */    75,   75,  271,  272,  273,  274,  275,  216,  216,  120,
 /*   900 */   279,  280,  281,  210,  271,  272,  273,  274,  275,  249,
 /*   910 */   247,  290,  279,  280,  281,   71,  131,   33,  216,   75,
 /*   920 */    36,  247,  216,  290,  265,   20,   42,  234,   44,   45,
 /*   930 */    46,   47,   71,   71,  241,   20,   75,   75,   71,  210,
 /*   940 */   218,   71,   75,  241,  251,   75,  259,   71,  255,  241,
 /*   950 */   210,   75,   12,   13,   14,   15,   16,   73,   20,  218,
 /*   960 */    76,  252,  260,  234,  271,  272,  273,  274,  275,  212,
 /*   970 */   241,  218,  279,  280,  234,   71,  274,  216,  218,   75,
 /*   980 */   251,  241,   20,  216,  255,  216,  284,  285,  286,  234,
 /*   990 */   288,  251,  234,  291,  220,  255,  234,  234,  258,  234,
 /*  1000 */   271,  272,  273,  274,  210,  234,  304,  234,  241,  210,
 /*  1010 */   308,  271,  272,  273,  274,  234,  132,  234,  134,  212,
 /*  1020 */   136,  234,  252,  234,  265,  241,  152,  259,  234,  215,
 /*  1030 */   264,  241,  303,  234,  215,  241,   20,  153,  210,  192,
 /*  1040 */   241,  274,  191,  301,   57,  251,  270,  256,  255,  255,
 /*  1050 */   251,  284,  285,  286,  255,  288,  255,  258,  256,  255,
 /*  1060 */   187,  198,  234,  199,  210,  271,  272,  273,  274,  241,
 /*  1070 */   271,  272,  273,  274,  186,  298,  301,  297,  138,  251,
 /*  1080 */   183,  295,  241,  255,   20,  120,  258,  269,  234,  294,
 /*  1090 */   282,  206,  203,  201,  312,  241,   74,  255,  306,  271,
 /*  1100 */   272,  273,  274,  278,  310,  251,  210,  134,  256,  255,
 /*  1110 */   307,  210,  255,  241,  256,  255,  230,  210,  253,  241,
 /*  1120 */   252,  215,   74,  215,  237,  271,  272,  273,  274,  220,
 /*  1130 */   234,  212,  216,  215,  224,  234,  208,  241,  217,  262,
 /*  1140 */   228,  234,  241,    0,    0,  205,   64,  251,  241,    0,
 /*  1150 */   228,  255,  251,    0,   38,  158,  255,   38,  251,  210,
 /*  1160 */    38,   38,  255,  158,    0,   38,   38,  271,  272,  273,
 /*  1170 */   274,  210,  271,  272,  273,  274,  158,    0,  271,  272,
 /*  1180 */   273,  274,    0,  234,  210,   38,   38,    0,   74,  149,
 /*  1190 */   241,  148,  109,    0,  145,  234,    0,  141,   53,    0,
 /*  1200 */   251,    0,  241,    0,  255,    0,   86,    0,  234,    0,
 /*  1210 */    61,    0,  251,  210,   65,  241,  255,    0,    0,    0,
 /*  1220 */   271,  272,  273,  274,    0,  251,    0,    0,    0,  255,
 /*  1230 */     0,    0,  271,  272,  273,  274,   87,  234,    0,  210,
 /*  1240 */     0,  120,    0,    0,  241,  271,  272,  273,  274,    0,
 /*  1250 */     0,    0,    0,    0,  251,  106,  107,  108,  255,  110,
 /*  1260 */     0,   22,   61,  234,    0,  210,   65,    0,    0,    0,
 /*  1270 */   241,    0,    0,  210,  271,  272,  273,  274,    0,   43,
 /*  1280 */   251,    0,    0,   51,  255,    0,   38,   43,   87,  234,
 /*  1290 */    36,    0,   36,   38,    0,   38,  241,  234,    0,  210,
 /*  1300 */   271,  272,  273,  274,  241,   43,  251,  106,  107,  108,
 /*  1310 */   255,  110,   36,   43,  251,   38,   36,   43,  255,    0,
 /*  1320 */     0,    0,    0,  234,   83,   38,  271,  272,  273,  274,
 /*  1330 */   241,   22,   71,    0,  271,  272,  273,  274,   38,   81,
 /*  1340 */   251,  210,   38,   38,  255,   38,   71,    0,   38,   38,
 /*  1350 */    22,    0,   22,   39,    0,   38,   22,    0,   22,    0,
 /*  1360 */   271,  272,  273,  274,   22,  234,   20,    0,  154,   38,
 /*  1370 */   137,    0,  241,  150,   22,    0,    0,    0,   43,  134,
 /*  1380 */    74,   86,  251,  137,  137,  188,  255,   71,   75,   71,
 /*  1390 */    75,  132,  188,    4,   71,  182,  188,    2,   74,   74,
 /*  1400 */    74,   74,  271,  272,  273,  274,   38,   75,   71,   71,
 /*  1410 */    38,   38,   38,    0,   75,   75,   71,   38,   38,   75,
 /*  1420 */    71,  135,  132,   22,   74,  162,   43,   86,   75,   86,
 /*  1430 */    74,   38,   38,   75,   86,   75,   74,   74,   74,   74,
 /*  1440 */    38,   86,   38,   74,   38,   84,   38,   22,   38,   38,
 /*  1450 */    22,   22,   86,   75,    0,   85,   74,   38,   38,   75,
 /*  1460 */    74,   38,   75,   75,   74,   74,   51,   75,   50,   57,
 /*  1470 */    74,   38,   38,   38,   74,   38,   38,   38,   57,   74,
 /*  1480 */    99,   74,   38,   38,   99,   71,   87,   38,   72,   38,
 /*  1490 */    38,   38,   36,   38,    0,   36,   99,   99,   38,    0,
 /*  1500 */    43,   43,   38,   36,   43,    0,   38,   36,   43,    0,
 /*  1510 */    38,   37,  109,    0,    0,   22,   21,  313,   22,   22,
 /*  1520 */   313,   21,   20,  313,  313,  313,  313,  313,  313,  313,
 /*  1530 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1540 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1550 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1560 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1570 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1580 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1590 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1600 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1610 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1620 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1630 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1640 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1650 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1660 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1670 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1680 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1690 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1700 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1710 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
 /*  1720 */   313,  313,  313,  313,  313,  313,  313,  313,  313,  313,
542
};
543
#define YY_SHIFT_COUNT    (543)
544
#define YY_SHIFT_MIN      (0)
545
#define YY_SHIFT_MAX      (1514)
546
static const unsigned short int yy_shift_ofst[] = {
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
 /*     0 */   572,    0,   51,   64,   64,   64,   64,  167,   64,   64,
 /*    10 */   245,  408,  100,  231,  245,  245,  245,  245,  245,  245,
 /*    20 */   245,  245,  245,  245,  245,  245,  245,  245,  245,  245,
 /*    30 */   245,  245,  245,  245,  192,  192,  192,  157,  678,  678,
 /*    40 */    62,   16,   16,   56,  678,   85,   85,   16,   16,   16,
 /*    50 */    16,   16,   16,   73,   26,  302,   56,   26,   16,   16,
 /*    60 */    26,   16,   26,   26,   26,   16,  309,  332,  454,  463,
 /*    70 */   463,  265,  445,  153,  134,  153,  153,  153,  153,  153,
 /*    80 */   153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
 /*    90 */   153,  153,  153,  153,   85,  528,  326,  218,  240,  240,
 /*   100 */   240,  384,  218,  345,   26,   26,   26,   61,  334,   39,
 /*   110 */    39,   39,   39,   39,   39,  732,  126,  608,  940,   77,
 /*   120 */    85,  117,   85,   90,  583,  515,  493,  574,  493,  735,
 /*   130 */   419,  460,  829,  820,  826,  736,  829,  829,  779,  785,
 /*   140 */   785,  829,  905,  915,   73,  345,  938,   73,   73,  829,
 /*   150 */    73,  962,   26,   26,   26,   26,   26,   26,   26,   26,
 /*   160 */    26,   26,   26,  826,  829,  962,  345,  905,  874,  915,
 /*   170 */   309,  345,  938,  309, 1016,  847,  851,  987,  847,  851,
 /*   180 */   987,  987,  864,  863,  873,  888,  897,  345, 1064,  965,
 /*   190 */   885,  889,  892, 1022,   26,  851,  987,  987,  851,  987,
 /*   200 */   973,  345,  938,  309,   61,  309,  345, 1048,  826,  334,
 /*   210 */   829,  309,  962, 1523, 1523, 1523, 1523, 1523,  431,  884,
 /*   220 */   530,  577, 1149, 1201,   13,   29,   46,  526,  295,  295,
 /*   230 */   295,  295,  295,  295,  295,   34,  234,  581,  418,  390,
 /*   240 */   390,  390,  390,   19,  541,  436,  121,  680,  703,  704,
 /*   250 */   715,  772,  788,  673,  738,  744,  750,  694,  599,  584,
 /*   260 */   635,  751,  720,  798,  525,  800,  806,  815,  816,  844,
 /*   270 */   627,  692,  861,  862,  867,  870,  876,  904,  796,  707,
 /*   280 */  1143, 1144, 1082, 1153, 1116,  997, 1119, 1122, 1123, 1005,
 /*   290 */  1164, 1127, 1128, 1018, 1177, 1147, 1182, 1148, 1187, 1114,
 /*   300 */  1040, 1043, 1083, 1049, 1193, 1196, 1145, 1056, 1199, 1203,
 /*   310 */  1120, 1205, 1207, 1209, 1211, 1217, 1218, 1219, 1224, 1226,
 /*   320 */  1227, 1228, 1230, 1231, 1238, 1240, 1121, 1242, 1243, 1249,
 /*   330 */  1250, 1251, 1252, 1239, 1253, 1260, 1264, 1267, 1268, 1269,
 /*   340 */  1271, 1272, 1278, 1236, 1281, 1232, 1282, 1285, 1248, 1254,
 /*   350 */  1244, 1291, 1255, 1256, 1262, 1294, 1257, 1276, 1270, 1298,
 /*   360 */  1277, 1280, 1274, 1319, 1320, 1321, 1322, 1241, 1258, 1287,
 /*   370 */  1261, 1309, 1333, 1300, 1304, 1305, 1307, 1275, 1261, 1310,
 /*   380 */  1311, 1347, 1328, 1351, 1330, 1314, 1354, 1334, 1317, 1357,
 /*   390 */  1336, 1359, 1342, 1346, 1367, 1233, 1214, 1331, 1371, 1223,
 /*   400 */  1352, 1246, 1245, 1375, 1376, 1247, 1377, 1306, 1335, 1259,
 /*   410 */  1316, 1318, 1197, 1313, 1323, 1315, 1324, 1325, 1326, 1332,
 /*   420 */  1337, 1295, 1327, 1338, 1204, 1339, 1340, 1341, 1213, 1345,
 /*   430 */  1343, 1344, 1349, 1208, 1389, 1368, 1372, 1373, 1374, 1379,
 /*   440 */  1380, 1395, 1263, 1348, 1353, 1350, 1356, 1358, 1360, 1362,
 /*   450 */  1363, 1286, 1364, 1413, 1383, 1290, 1365, 1361, 1355, 1366,
 /*   460 */  1401, 1369, 1370, 1378, 1393, 1394, 1382, 1384, 1402, 1386,
 /*   470 */  1387, 1404, 1390, 1388, 1406, 1391, 1392, 1408, 1396, 1381,
 /*   480 */  1385, 1397, 1398, 1425, 1399, 1400, 1410, 1403, 1405, 1407,
 /*   490 */  1411, 1261, 1428, 1415, 1418, 1412, 1416, 1414, 1419, 1420,
 /*   500 */  1423, 1433, 1434, 1435, 1437, 1429, 1421, 1275, 1438, 1261,
 /*   510 */  1439, 1444, 1445, 1449, 1451, 1452, 1453, 1454, 1455, 1456,
 /*   520 */  1457, 1494, 1460, 1459, 1458, 1499, 1464, 1467, 1461, 1505,
 /*   530 */  1468, 1471, 1465, 1509, 1472, 1474, 1513, 1514, 1493, 1495,
 /*   540 */  1496, 1497, 1500, 1502,
602
};
X
Xiaoyu Wang 已提交
603
#define YY_REDUCE_COUNT (217)
604 605
#define YY_REDUCE_MIN   (-276)
#define YY_REDUCE_MAX   (1131)
606
static const short yy_reduce_ofst[] = {
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
 /*     0 */  -101,  413,  467,  518,  573,  621,  633, -204, -156,  693,
 /*    10 */    72,  586,  702,  115,  740,  729,  794,  799,  828,  292,
 /*    20 */   561,  854,  896,  901,  907,  949,  961,  974, 1003, 1029,
 /*    30 */  1055, 1063, 1089, 1131, -192,  151,  767,  -23, -234, -215,
 /*    40 */  -225,   22,  287,  -49, -253, -246, -233, -209,  -40,   36,
 /*    50 */   139,  144,  202, -128,  138,   80,   -4,  198,  247,  293,
 /*    60 */   189,  368,  289,  352,  310,  373,   88, -207, -276, -276,
 /*    70 */  -276,  -28,  124,  -61,   97,  108,  164,  216,  394,  396,
 /*    80 */   406,  412,  415,  447,  448,  468,  469,  470,  471,  479,
 /*    90 */   488,  489,  495,  499,  263,  228,   60, -108, -189,   92,
 /*   100 */   282,  237,  367,  197,  274,  381,  414, -155,  378, -232,
 /*   110 */   239,  246,  286,  411,  428,  450,  509,  322,  442,  478,
 /*   120 */   549,  559,  553,  510,  598,  547,  540,  540,  540,  596,
 /*   130 */   531,  550,  634,  585,  658,  628,  681,  682,  660,  663,
 /*   140 */   674,  706,  659,  687,  722,  708,  709,  741,  753,  761,
 /*   150 */   760,  757,  755,  758,  762,  763,  765,  771,  773,  781,
 /*   160 */   783,  787,  789,  774,  769,  807,  784,  759,  766,  768,
 /*   170 */   814,  790,  770,  819,  776,  742,  791,  793,  775,  802,
 /*   180 */   801,  804,  777,  780,  786,  795,  540,  841,  818,  808,
 /*   190 */   782,  803,  792,  825,  596,  852,  842,  857,  858,  860,
 /*   200 */   865,  872,  868,  906,  886,  908,  878,  887,  909,  910,
 /*   210 */   916,  918,  919,  877,  912,  922,  921,  928,
629 630
};
static const YYACTIONTYPE yy_default[] = {
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
 /*     0 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    10 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    20 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    30 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    40 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    50 */  1210, 1210, 1210, 1269, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    60 */  1210, 1210, 1210, 1210, 1210, 1210, 1267, 1406, 1210, 1540,
 /*    70 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    80 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*    90 */  1210, 1210, 1210, 1210, 1210, 1210, 1269, 1210, 1551, 1551,
 /*   100 */  1551, 1267, 1210, 1210, 1210, 1210, 1210, 1362, 1210, 1210,
 /*   110 */  1210, 1210, 1210, 1210, 1210, 1440, 1210, 1210, 1615, 1210,
 /*   120 */  1210, 1315, 1210, 1575, 1210, 1567, 1543, 1557, 1544, 1210,
 /*   130 */  1600, 1560, 1210, 1210, 1210, 1432, 1210, 1210, 1411, 1408,
 /*   140 */  1408, 1210, 1210, 1210, 1269, 1210, 1210, 1269, 1269, 1210,
 /*   150 */  1269, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   160 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1442, 1210,
 /*   170 */  1267, 1210, 1210, 1267, 1210, 1582, 1580, 1210, 1582, 1580,
 /*   180 */  1210, 1210, 1594, 1590, 1573, 1571, 1557, 1210, 1210, 1210,
 /*   190 */  1618, 1606, 1602, 1210, 1210, 1580, 1210, 1210, 1580, 1210,
 /*   200 */  1419, 1210, 1210, 1267, 1210, 1267, 1210, 1331, 1210, 1210,
 /*   210 */  1210, 1267, 1210, 1434, 1365, 1365, 1270, 1215, 1210, 1210,
 /*   220 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1504, 1593,
 /*   230 */  1592, 1503, 1517, 1516, 1515, 1210, 1210, 1210, 1210, 1498,
 /*   240 */  1499, 1497, 1496, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   250 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1541, 1210, 1603,
 /*   260 */  1607, 1210, 1210, 1210, 1479, 1210, 1210, 1210, 1210, 1210,
 /*   270 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   280 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   290 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   300 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   310 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   320 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   330 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   340 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   350 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   360 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   370 */  1376, 1210, 1210, 1210, 1210, 1210, 1210, 1296, 1295, 1210,
 /*   380 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   390 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   400 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   410 */  1564, 1574, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   420 */  1210, 1479, 1210, 1591, 1210, 1550, 1546, 1210, 1210, 1542,
 /*   430 */  1210, 1210, 1601, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   440 */  1210, 1536, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   450 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1478, 1210,
 /*   460 */  1210, 1210, 1210, 1210, 1210, 1210, 1359, 1210, 1210, 1210,
 /*   470 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1344,
 /*   480 */  1342, 1341, 1340, 1210, 1337, 1210, 1210, 1210, 1210, 1210,
 /*   490 */  1210, 1367, 1210, 1210, 1210, 1210, 1210, 1290, 1210, 1210,
 /*   500 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1281, 1210, 1280,
 /*   510 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   520 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   530 */  1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
 /*   540 */  1210, 1210, 1210, 1210,
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
};
/********** End of lemon-generated parsing tables *****************************/

/* The next table maps tokens (terminal symbols) into fallback tokens.  
** If a construct like the following:
** 
**      %fallback ID X Y Z.
**
** appears in the grammar, then ID becomes a fallback token for X, Y,
** and Z.  Whenever one of the tokens X, Y, or Z is input to the parser
** but it does not parse, the type of the token is changed to ID and
** the parse is retried before an error is thrown.
**
** This feature can be used, for example, to cause some keywords in a language
** to revert to identifiers if they keyword does not apply in the context where
** it appears.
*/
#ifdef YYFALLBACK
static const YYCODETYPE yyFallback[] = {
};
#endif /* YYFALLBACK */

/* The following structure represents a single element of the
** parser's stack.  Information stored includes:
**
**   +  The state number for the parser at this level of the stack.
**
**   +  The value of the token stored at this level of the stack.
**      (In other words, the "major" token.)
**
**   +  The semantic value stored at this level of the stack.  This is
**      the information used by the action routines in the grammar.
**      It is sometimes called the "minor" token.
**
** After the "shift" half of a SHIFTREDUCE action, the stateno field
** actually contains the reduce action for the second half of the
** SHIFTREDUCE.
*/
struct yyStackEntry {
  YYACTIONTYPE stateno;  /* The state-number, or reduce action in SHIFTREDUCE */
  YYCODETYPE major;      /* The major token value.  This is the code
                         ** number for the token at this stack level */
  YYMINORTYPE minor;     /* The user-supplied minor token value.  This
                         ** is the value of the token  */
};
typedef struct yyStackEntry yyStackEntry;

/* The state of the parser is completely contained in an instance of
** the following structure */
struct yyParser {
  yyStackEntry *yytos;          /* Pointer to top element of the stack */
#ifdef YYTRACKMAXSTACKDEPTH
  int yyhwm;                    /* High-water mark of the stack */
#endif
#ifndef YYNOERRORRECOVERY
  int yyerrcnt;                 /* Shifts left before out of the error */
#endif
X
Xiaoyu Wang 已提交
743 744
  ParseARG_SDECL                /* A place to hold %extra_argument */
  ParseCTX_SDECL                /* A place to hold %extra_context */
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
#if YYSTACKDEPTH<=0
  int yystksz;                  /* Current side of the stack */
  yyStackEntry *yystack;        /* The parser's stack */
  yyStackEntry yystk0;          /* First stack entry */
#else
  yyStackEntry yystack[YYSTACKDEPTH];  /* The parser's stack */
  yyStackEntry *yystackEnd;            /* Last entry in the stack */
#endif
};
typedef struct yyParser yyParser;

#ifndef NDEBUG
#include <stdio.h>
static FILE *yyTraceFILE = 0;
static char *yyTracePrompt = 0;
#endif /* NDEBUG */

#ifndef NDEBUG
/* 
** Turn parser tracing on by giving a stream to which to write the trace
** and a prompt to preface each trace message.  Tracing is turned off
** by making either argument NULL 
**
** Inputs:
** <ul>
** <li> A FILE* to which trace output should be written.
**      If NULL, then tracing is turned off.
** <li> A prefix string written at the beginning of every
**      line of trace output.  If NULL, then tracing is
**      turned off.
** </ul>
**
** Outputs:
** None.
*/
X
Xiaoyu Wang 已提交
780
void ParseTrace(FILE *TraceFILE, char *zTracePrompt){
781 782 783 784 785 786 787 788 789 790 791 792
  yyTraceFILE = TraceFILE;
  yyTracePrompt = zTracePrompt;
  if( yyTraceFILE==0 ) yyTracePrompt = 0;
  else if( yyTracePrompt==0 ) yyTraceFILE = 0;
}
#endif /* NDEBUG */

#if defined(YYCOVERAGE) || !defined(NDEBUG)
/* For tracing shifts, the names of all terminals and nonterminals
** are required.  The following table supplies these names */
static const char *const yyTokenName[] = { 
  /*    0 */ "$",
793 794
  /*    1 */ "OR",
  /*    2 */ "AND",
795 796 797 798 799
  /*    3 */ "UNION",
  /*    4 */ "ALL",
  /*    5 */ "MINUS",
  /*    6 */ "EXCEPT",
  /*    7 */ "INTERSECT",
800 801 802 803 804 805 806 807 808 809
  /*    8 */ "NK_BITAND",
  /*    9 */ "NK_BITOR",
  /*   10 */ "NK_LSHIFT",
  /*   11 */ "NK_RSHIFT",
  /*   12 */ "NK_PLUS",
  /*   13 */ "NK_MINUS",
  /*   14 */ "NK_STAR",
  /*   15 */ "NK_SLASH",
  /*   16 */ "NK_REM",
  /*   17 */ "NK_CONCAT",
810
  /*   18 */ "CREATE",
811 812 813
  /*   19 */ "ACCOUNT",
  /*   20 */ "NK_ID",
  /*   21 */ "PASS",
814 815 816 817 818 819 820 821 822 823 824 825
  /*   22 */ "NK_STRING",
  /*   23 */ "ALTER",
  /*   24 */ "PPS",
  /*   25 */ "TSERIES",
  /*   26 */ "STORAGE",
  /*   27 */ "STREAMS",
  /*   28 */ "QTIME",
  /*   29 */ "DBS",
  /*   30 */ "USERS",
  /*   31 */ "CONNS",
  /*   32 */ "STATE",
  /*   33 */ "USER",
826 827
  /*   34 */ "PRIVILEGE",
  /*   35 */ "DROP",
X
Xiaoyu Wang 已提交
828 829 830 831 832 833 834 835
  /*   36 */ "DNODE",
  /*   37 */ "PORT",
  /*   38 */ "NK_INTEGER",
  /*   39 */ "DNODES",
  /*   40 */ "NK_IPTOKEN",
  /*   41 */ "LOCAL",
  /*   42 */ "QNODE",
  /*   43 */ "ON",
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
  /*   44 */ "BNODE",
  /*   45 */ "SNODE",
  /*   46 */ "MNODE",
  /*   47 */ "DATABASE",
  /*   48 */ "USE",
  /*   49 */ "IF",
  /*   50 */ "NOT",
  /*   51 */ "EXISTS",
  /*   52 */ "BLOCKS",
  /*   53 */ "CACHE",
  /*   54 */ "CACHELAST",
  /*   55 */ "COMP",
  /*   56 */ "DAYS",
  /*   57 */ "NK_VARIABLE",
  /*   58 */ "FSYNC",
  /*   59 */ "MAXROWS",
  /*   60 */ "MINROWS",
  /*   61 */ "KEEP",
  /*   62 */ "PRECISION",
  /*   63 */ "QUORUM",
  /*   64 */ "REPLICA",
  /*   65 */ "TTL",
  /*   66 */ "WAL",
  /*   67 */ "VGROUPS",
  /*   68 */ "SINGLE_STABLE",
  /*   69 */ "STREAM_MODE",
  /*   70 */ "RETENTIONS",
  /*   71 */ "NK_COMMA",
  /*   72 */ "NK_COLON",
  /*   73 */ "TABLE",
  /*   74 */ "NK_LP",
  /*   75 */ "NK_RP",
  /*   76 */ "STABLE",
  /*   77 */ "ADD",
  /*   78 */ "COLUMN",
  /*   79 */ "MODIFY",
  /*   80 */ "RENAME",
  /*   81 */ "TAG",
  /*   82 */ "SET",
  /*   83 */ "NK_EQ",
  /*   84 */ "USING",
  /*   85 */ "TAGS",
  /*   86 */ "NK_DOT",
  /*   87 */ "COMMENT",
  /*   88 */ "BOOL",
  /*   89 */ "TINYINT",
  /*   90 */ "SMALLINT",
  /*   91 */ "INT",
  /*   92 */ "INTEGER",
  /*   93 */ "BIGINT",
  /*   94 */ "FLOAT",
  /*   95 */ "DOUBLE",
  /*   96 */ "BINARY",
  /*   97 */ "TIMESTAMP",
  /*   98 */ "NCHAR",
  /*   99 */ "UNSIGNED",
  /*  100 */ "JSON",
  /*  101 */ "VARCHAR",
  /*  102 */ "MEDIUMBLOB",
  /*  103 */ "BLOB",
  /*  104 */ "VARBINARY",
  /*  105 */ "DECIMAL",
  /*  106 */ "SMA",
  /*  107 */ "ROLLUP",
  /*  108 */ "FILE_FACTOR",
  /*  109 */ "NK_FLOAT",
  /*  110 */ "DELAY",
  /*  111 */ "SHOW",
  /*  112 */ "DATABASES",
  /*  113 */ "TABLES",
  /*  114 */ "STABLES",
  /*  115 */ "MNODES",
  /*  116 */ "MODULES",
  /*  117 */ "QNODES",
  /*  118 */ "FUNCTIONS",
  /*  119 */ "INDEXES",
  /*  120 */ "FROM",
  /*  121 */ "ACCOUNTS",
  /*  122 */ "APPS",
  /*  123 */ "CONNECTIONS",
  /*  124 */ "LICENCE",
  /*  125 */ "QUERIES",
  /*  126 */ "SCORES",
  /*  127 */ "TOPICS",
  /*  128 */ "VARIABLES",
  /*  129 */ "BNODES",
  /*  130 */ "SNODES",
  /*  131 */ "LIKE",
  /*  132 */ "INDEX",
  /*  133 */ "FULLTEXT",
  /*  134 */ "FUNCTION",
  /*  135 */ "INTERVAL",
  /*  136 */ "TOPIC",
  /*  137 */ "AS",
  /*  138 */ "DESC",
  /*  139 */ "DESCRIBE",
  /*  140 */ "RESET",
  /*  141 */ "QUERY",
  /*  142 */ "EXPLAIN",
  /*  143 */ "ANALYZE",
  /*  144 */ "VERBOSE",
  /*  145 */ "NK_BOOL",
  /*  146 */ "RATIO",
  /*  147 */ "COMPACT",
  /*  148 */ "VNODES",
  /*  149 */ "IN",
  /*  150 */ "OUTPUTTYPE",
  /*  151 */ "AGGREGATE",
  /*  152 */ "BUFSIZE",
  /*  153 */ "STREAM",
  /*  154 */ "INTO",
  /*  155 */ "KILL",
  /*  156 */ "CONNECTION",
  /*  157 */ "MERGE",
  /*  158 */ "VGROUP",
  /*  159 */ "REDISTRIBUTE",
  /*  160 */ "SPLIT",
  /*  161 */ "SYNCDB",
  /*  162 */ "NULL",
  /*  163 */ "FIRST",
  /*  164 */ "LAST",
  /*  165 */ "NOW",
  /*  166 */ "ROWTS",
  /*  167 */ "TBNAME",
  /*  168 */ "QSTARTTS",
  /*  169 */ "QENDTS",
  /*  170 */ "WSTARTTS",
  /*  171 */ "WENDTS",
  /*  172 */ "WDURATION",
  /*  173 */ "BETWEEN",
  /*  174 */ "IS",
  /*  175 */ "NK_LT",
  /*  176 */ "NK_GT",
  /*  177 */ "NK_LE",
  /*  178 */ "NK_GE",
  /*  179 */ "NK_NE",
  /*  180 */ "MATCH",
  /*  181 */ "NMATCH",
  /*  182 */ "JOIN",
  /*  183 */ "INNER",
  /*  184 */ "SELECT",
  /*  185 */ "DISTINCT",
  /*  186 */ "WHERE",
  /*  187 */ "PARTITION",
  /*  188 */ "BY",
  /*  189 */ "SESSION",
  /*  190 */ "STATE_WINDOW",
  /*  191 */ "SLIDING",
  /*  192 */ "FILL",
  /*  193 */ "VALUE",
  /*  194 */ "NONE",
  /*  195 */ "PREV",
  /*  196 */ "LINEAR",
  /*  197 */ "NEXT",
  /*  198 */ "GROUP",
  /*  199 */ "HAVING",
  /*  200 */ "ORDER",
  /*  201 */ "SLIMIT",
  /*  202 */ "SOFFSET",
  /*  203 */ "LIMIT",
  /*  204 */ "OFFSET",
  /*  205 */ "ASC",
  /*  206 */ "NULLS",
  /*  207 */ "cmd",
  /*  208 */ "account_options",
  /*  209 */ "alter_account_options",
  /*  210 */ "literal",
  /*  211 */ "alter_account_option",
  /*  212 */ "user_name",
  /*  213 */ "dnode_endpoint",
  /*  214 */ "dnode_host_name",
  /*  215 */ "not_exists_opt",
  /*  216 */ "db_name",
  /*  217 */ "db_options",
  /*  218 */ "exists_opt",
  /*  219 */ "alter_db_options",
  /*  220 */ "integer_list",
  /*  221 */ "variable_list",
  /*  222 */ "retention_list",
  /*  223 */ "alter_db_option",
  /*  224 */ "retention",
  /*  225 */ "full_table_name",
  /*  226 */ "column_def_list",
  /*  227 */ "tags_def_opt",
  /*  228 */ "table_options",
  /*  229 */ "multi_create_clause",
  /*  230 */ "tags_def",
  /*  231 */ "multi_drop_clause",
  /*  232 */ "alter_table_clause",
  /*  233 */ "alter_table_options",
  /*  234 */ "column_name",
  /*  235 */ "type_name",
  /*  236 */ "create_subtable_clause",
  /*  237 */ "specific_tags_opt",
  /*  238 */ "literal_list",
  /*  239 */ "drop_table_clause",
  /*  240 */ "col_name_list",
  /*  241 */ "table_name",
  /*  242 */ "column_def",
  /*  243 */ "func_name_list",
  /*  244 */ "alter_table_option",
  /*  245 */ "col_name",
  /*  246 */ "db_name_cond_opt",
  /*  247 */ "like_pattern_opt",
  /*  248 */ "table_name_cond",
  /*  249 */ "from_db_opt",
  /*  250 */ "func_name",
  /*  251 */ "function_name",
  /*  252 */ "index_name",
  /*  253 */ "index_options",
  /*  254 */ "func_list",
  /*  255 */ "duration_literal",
  /*  256 */ "sliding_opt",
  /*  257 */ "func",
  /*  258 */ "expression_list",
  /*  259 */ "topic_name",
  /*  260 */ "query_expression",
  /*  261 */ "analyze_opt",
  /*  262 */ "explain_options",
  /*  263 */ "agg_func_opt",
  /*  264 */ "bufsize_opt",
  /*  265 */ "stream_name",
  /*  266 */ "dnode_list",
  /*  267 */ "signed",
  /*  268 */ "signed_literal",
  /*  269 */ "table_alias",
  /*  270 */ "column_alias",
  /*  271 */ "expression",
  /*  272 */ "pseudo_column",
  /*  273 */ "column_reference",
  /*  274 */ "subquery",
  /*  275 */ "predicate",
  /*  276 */ "compare_op",
  /*  277 */ "in_op",
  /*  278 */ "in_predicate_value",
  /*  279 */ "boolean_value_expression",
  /*  280 */ "boolean_primary",
  /*  281 */ "common_expression",
  /*  282 */ "from_clause",
  /*  283 */ "table_reference_list",
  /*  284 */ "table_reference",
  /*  285 */ "table_primary",
  /*  286 */ "joined_table",
  /*  287 */ "alias_opt",
  /*  288 */ "parenthesized_joined_table",
  /*  289 */ "join_type",
  /*  290 */ "search_condition",
  /*  291 */ "query_specification",
  /*  292 */ "set_quantifier_opt",
  /*  293 */ "select_list",
  /*  294 */ "where_clause_opt",
  /*  295 */ "partition_by_clause_opt",
  /*  296 */ "twindow_clause_opt",
  /*  297 */ "group_by_clause_opt",
  /*  298 */ "having_clause_opt",
  /*  299 */ "select_sublist",
  /*  300 */ "select_item",
  /*  301 */ "fill_opt",
  /*  302 */ "fill_mode",
  /*  303 */ "group_by_list",
  /*  304 */ "query_expression_body",
  /*  305 */ "order_by_clause_opt",
  /*  306 */ "slimit_clause_opt",
  /*  307 */ "limit_clause_opt",
  /*  308 */ "query_primary",
  /*  309 */ "sort_specification_list",
  /*  310 */ "sort_specification",
  /*  311 */ "ordering_specification_opt",
  /*  312 */ "null_ordering_opt",
1105 1106 1107 1108 1109 1110 1111
};
#endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */

#ifndef NDEBUG
/* For tracing reduce actions, the names of all rules are required.
*/
static const char *const yyRuleName[] = {
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
 /*   0 */ "cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options",
 /*   1 */ "cmd ::= ALTER ACCOUNT NK_ID alter_account_options",
 /*   2 */ "account_options ::=",
 /*   3 */ "account_options ::= account_options PPS literal",
 /*   4 */ "account_options ::= account_options TSERIES literal",
 /*   5 */ "account_options ::= account_options STORAGE literal",
 /*   6 */ "account_options ::= account_options STREAMS literal",
 /*   7 */ "account_options ::= account_options QTIME literal",
 /*   8 */ "account_options ::= account_options DBS literal",
 /*   9 */ "account_options ::= account_options USERS literal",
 /*  10 */ "account_options ::= account_options CONNS literal",
 /*  11 */ "account_options ::= account_options STATE literal",
 /*  12 */ "alter_account_options ::= alter_account_option",
 /*  13 */ "alter_account_options ::= alter_account_options alter_account_option",
 /*  14 */ "alter_account_option ::= PASS literal",
 /*  15 */ "alter_account_option ::= PPS literal",
 /*  16 */ "alter_account_option ::= TSERIES literal",
 /*  17 */ "alter_account_option ::= STORAGE literal",
 /*  18 */ "alter_account_option ::= STREAMS literal",
 /*  19 */ "alter_account_option ::= QTIME literal",
 /*  20 */ "alter_account_option ::= DBS literal",
 /*  21 */ "alter_account_option ::= USERS literal",
 /*  22 */ "alter_account_option ::= CONNS literal",
 /*  23 */ "alter_account_option ::= STATE literal",
 /*  24 */ "cmd ::= CREATE USER user_name PASS NK_STRING",
 /*  25 */ "cmd ::= ALTER USER user_name PASS NK_STRING",
 /*  26 */ "cmd ::= ALTER USER user_name PRIVILEGE NK_STRING",
 /*  27 */ "cmd ::= DROP USER user_name",
X
Xiaoyu Wang 已提交
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
 /*  28 */ "cmd ::= CREATE DNODE dnode_endpoint",
 /*  29 */ "cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER",
 /*  30 */ "cmd ::= DROP DNODE NK_INTEGER",
 /*  31 */ "cmd ::= DROP DNODE dnode_endpoint",
 /*  32 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING",
 /*  33 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING",
 /*  34 */ "cmd ::= ALTER ALL DNODES NK_STRING",
 /*  35 */ "cmd ::= ALTER ALL DNODES NK_STRING NK_STRING",
 /*  36 */ "dnode_endpoint ::= NK_STRING",
 /*  37 */ "dnode_host_name ::= NK_ID",
 /*  38 */ "dnode_host_name ::= NK_IPTOKEN",
 /*  39 */ "cmd ::= ALTER LOCAL NK_STRING",
 /*  40 */ "cmd ::= ALTER LOCAL NK_STRING NK_STRING",
 /*  41 */ "cmd ::= CREATE QNODE ON DNODE NK_INTEGER",
 /*  42 */ "cmd ::= DROP QNODE ON DNODE NK_INTEGER",
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
 /*  43 */ "cmd ::= CREATE BNODE ON DNODE NK_INTEGER",
 /*  44 */ "cmd ::= DROP BNODE ON DNODE NK_INTEGER",
 /*  45 */ "cmd ::= CREATE SNODE ON DNODE NK_INTEGER",
 /*  46 */ "cmd ::= DROP SNODE ON DNODE NK_INTEGER",
 /*  47 */ "cmd ::= CREATE MNODE ON DNODE NK_INTEGER",
 /*  48 */ "cmd ::= DROP MNODE ON DNODE NK_INTEGER",
 /*  49 */ "cmd ::= CREATE DATABASE not_exists_opt db_name db_options",
 /*  50 */ "cmd ::= DROP DATABASE exists_opt db_name",
 /*  51 */ "cmd ::= USE db_name",
 /*  52 */ "cmd ::= ALTER DATABASE db_name alter_db_options",
 /*  53 */ "not_exists_opt ::= IF NOT EXISTS",
 /*  54 */ "not_exists_opt ::=",
 /*  55 */ "exists_opt ::= IF EXISTS",
 /*  56 */ "exists_opt ::=",
 /*  57 */ "db_options ::=",
 /*  58 */ "db_options ::= db_options BLOCKS NK_INTEGER",
 /*  59 */ "db_options ::= db_options CACHE NK_INTEGER",
 /*  60 */ "db_options ::= db_options CACHELAST NK_INTEGER",
 /*  61 */ "db_options ::= db_options COMP NK_INTEGER",
 /*  62 */ "db_options ::= db_options DAYS NK_INTEGER",
 /*  63 */ "db_options ::= db_options DAYS NK_VARIABLE",
 /*  64 */ "db_options ::= db_options FSYNC NK_INTEGER",
 /*  65 */ "db_options ::= db_options MAXROWS NK_INTEGER",
 /*  66 */ "db_options ::= db_options MINROWS NK_INTEGER",
 /*  67 */ "db_options ::= db_options KEEP integer_list",
 /*  68 */ "db_options ::= db_options KEEP variable_list",
 /*  69 */ "db_options ::= db_options PRECISION NK_STRING",
 /*  70 */ "db_options ::= db_options QUORUM NK_INTEGER",
 /*  71 */ "db_options ::= db_options REPLICA NK_INTEGER",
 /*  72 */ "db_options ::= db_options TTL NK_INTEGER",
 /*  73 */ "db_options ::= db_options WAL NK_INTEGER",
 /*  74 */ "db_options ::= db_options VGROUPS NK_INTEGER",
 /*  75 */ "db_options ::= db_options SINGLE_STABLE NK_INTEGER",
 /*  76 */ "db_options ::= db_options STREAM_MODE NK_INTEGER",
 /*  77 */ "db_options ::= db_options RETENTIONS retention_list",
 /*  78 */ "alter_db_options ::= alter_db_option",
 /*  79 */ "alter_db_options ::= alter_db_options alter_db_option",
 /*  80 */ "alter_db_option ::= BLOCKS NK_INTEGER",
 /*  81 */ "alter_db_option ::= FSYNC NK_INTEGER",
 /*  82 */ "alter_db_option ::= KEEP integer_list",
 /*  83 */ "alter_db_option ::= KEEP variable_list",
 /*  84 */ "alter_db_option ::= WAL NK_INTEGER",
 /*  85 */ "alter_db_option ::= QUORUM NK_INTEGER",
 /*  86 */ "alter_db_option ::= CACHELAST NK_INTEGER",
 /*  87 */ "alter_db_option ::= REPLICA NK_INTEGER",
 /*  88 */ "integer_list ::= NK_INTEGER",
 /*  89 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER",
 /*  90 */ "variable_list ::= NK_VARIABLE",
 /*  91 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE",
 /*  92 */ "retention_list ::= retention",
 /*  93 */ "retention_list ::= retention_list NK_COMMA retention",
 /*  94 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE",
 /*  95 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options",
 /*  96 */ "cmd ::= CREATE TABLE multi_create_clause",
 /*  97 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options",
 /*  98 */ "cmd ::= DROP TABLE multi_drop_clause",
 /*  99 */ "cmd ::= DROP STABLE exists_opt full_table_name",
 /* 100 */ "cmd ::= ALTER TABLE alter_table_clause",
 /* 101 */ "cmd ::= ALTER STABLE alter_table_clause",
 /* 102 */ "alter_table_clause ::= full_table_name alter_table_options",
 /* 103 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name",
 /* 104 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name",
 /* 105 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name",
 /* 106 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name",
 /* 107 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name",
 /* 108 */ "alter_table_clause ::= full_table_name DROP TAG column_name",
 /* 109 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name",
 /* 110 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name",
 /* 111 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal",
 /* 112 */ "multi_create_clause ::= create_subtable_clause",
 /* 113 */ "multi_create_clause ::= multi_create_clause create_subtable_clause",
 /* 114 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP",
 /* 115 */ "multi_drop_clause ::= drop_table_clause",
 /* 116 */ "multi_drop_clause ::= multi_drop_clause drop_table_clause",
 /* 117 */ "drop_table_clause ::= exists_opt full_table_name",
 /* 118 */ "specific_tags_opt ::=",
 /* 119 */ "specific_tags_opt ::= NK_LP col_name_list NK_RP",
 /* 120 */ "full_table_name ::= table_name",
 /* 121 */ "full_table_name ::= db_name NK_DOT table_name",
 /* 122 */ "column_def_list ::= column_def",
 /* 123 */ "column_def_list ::= column_def_list NK_COMMA column_def",
 /* 124 */ "column_def ::= column_name type_name",
 /* 125 */ "column_def ::= column_name type_name COMMENT NK_STRING",
 /* 126 */ "type_name ::= BOOL",
 /* 127 */ "type_name ::= TINYINT",
 /* 128 */ "type_name ::= SMALLINT",
 /* 129 */ "type_name ::= INT",
 /* 130 */ "type_name ::= INTEGER",
 /* 131 */ "type_name ::= BIGINT",
 /* 132 */ "type_name ::= FLOAT",
 /* 133 */ "type_name ::= DOUBLE",
 /* 134 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP",
 /* 135 */ "type_name ::= TIMESTAMP",
 /* 136 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP",
 /* 137 */ "type_name ::= TINYINT UNSIGNED",
 /* 138 */ "type_name ::= SMALLINT UNSIGNED",
 /* 139 */ "type_name ::= INT UNSIGNED",
 /* 140 */ "type_name ::= BIGINT UNSIGNED",
 /* 141 */ "type_name ::= JSON",
 /* 142 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP",
 /* 143 */ "type_name ::= MEDIUMBLOB",
 /* 144 */ "type_name ::= BLOB",
 /* 145 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP",
 /* 146 */ "type_name ::= DECIMAL",
 /* 147 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP",
 /* 148 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP",
 /* 149 */ "tags_def_opt ::=",
 /* 150 */ "tags_def_opt ::= tags_def",
 /* 151 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP",
 /* 152 */ "table_options ::=",
 /* 153 */ "table_options ::= table_options COMMENT NK_STRING",
 /* 154 */ "table_options ::= table_options KEEP integer_list",
 /* 155 */ "table_options ::= table_options TTL NK_INTEGER",
 /* 156 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP",
 /* 157 */ "table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP",
 /* 158 */ "table_options ::= table_options FILE_FACTOR NK_FLOAT",
 /* 159 */ "table_options ::= table_options DELAY NK_INTEGER",
 /* 160 */ "alter_table_options ::= alter_table_option",
 /* 161 */ "alter_table_options ::= alter_table_options alter_table_option",
 /* 162 */ "alter_table_option ::= COMMENT NK_STRING",
 /* 163 */ "alter_table_option ::= KEEP integer_list",
 /* 164 */ "alter_table_option ::= TTL NK_INTEGER",
 /* 165 */ "col_name_list ::= col_name",
 /* 166 */ "col_name_list ::= col_name_list NK_COMMA col_name",
 /* 167 */ "col_name ::= column_name",
 /* 168 */ "cmd ::= SHOW DNODES",
 /* 169 */ "cmd ::= SHOW USERS",
 /* 170 */ "cmd ::= SHOW DATABASES",
 /* 171 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt",
 /* 172 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt",
 /* 173 */ "cmd ::= SHOW db_name_cond_opt VGROUPS",
 /* 174 */ "cmd ::= SHOW MNODES",
 /* 175 */ "cmd ::= SHOW MODULES",
 /* 176 */ "cmd ::= SHOW QNODES",
 /* 177 */ "cmd ::= SHOW FUNCTIONS",
 /* 178 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt",
 /* 179 */ "cmd ::= SHOW STREAMS",
 /* 180 */ "cmd ::= SHOW ACCOUNTS",
 /* 181 */ "cmd ::= SHOW APPS",
 /* 182 */ "cmd ::= SHOW CONNECTIONS",
 /* 183 */ "cmd ::= SHOW LICENCE",
 /* 184 */ "cmd ::= SHOW CREATE DATABASE db_name",
 /* 185 */ "cmd ::= SHOW CREATE TABLE full_table_name",
 /* 186 */ "cmd ::= SHOW CREATE STABLE full_table_name",
 /* 187 */ "cmd ::= SHOW QUERIES",
 /* 188 */ "cmd ::= SHOW SCORES",
 /* 189 */ "cmd ::= SHOW TOPICS",
 /* 190 */ "cmd ::= SHOW VARIABLES",
 /* 191 */ "cmd ::= SHOW BNODES",
 /* 192 */ "cmd ::= SHOW SNODES",
 /* 193 */ "db_name_cond_opt ::=",
 /* 194 */ "db_name_cond_opt ::= db_name NK_DOT",
 /* 195 */ "like_pattern_opt ::=",
 /* 196 */ "like_pattern_opt ::= LIKE NK_STRING",
 /* 197 */ "table_name_cond ::= table_name",
 /* 198 */ "from_db_opt ::=",
 /* 199 */ "from_db_opt ::= FROM db_name",
 /* 200 */ "func_name_list ::= func_name",
 /* 201 */ "func_name_list ::= func_name_list NK_COMMA col_name",
 /* 202 */ "func_name ::= function_name",
 /* 203 */ "cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options",
 /* 204 */ "cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP",
 /* 205 */ "cmd ::= DROP INDEX exists_opt index_name ON table_name",
 /* 206 */ "index_options ::=",
 /* 207 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt",
 /* 208 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt",
 /* 209 */ "func_list ::= func",
 /* 210 */ "func_list ::= func_list NK_COMMA func",
 /* 211 */ "func ::= function_name NK_LP expression_list NK_RP",
 /* 212 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression",
 /* 213 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name",
 /* 214 */ "cmd ::= DROP TOPIC exists_opt topic_name",
 /* 215 */ "cmd ::= DESC full_table_name",
 /* 216 */ "cmd ::= DESCRIBE full_table_name",
 /* 217 */ "cmd ::= RESET QUERY CACHE",
 /* 218 */ "cmd ::= EXPLAIN analyze_opt explain_options query_expression",
 /* 219 */ "analyze_opt ::=",
 /* 220 */ "analyze_opt ::= ANALYZE",
 /* 221 */ "explain_options ::=",
 /* 222 */ "explain_options ::= explain_options VERBOSE NK_BOOL",
 /* 223 */ "explain_options ::= explain_options RATIO NK_FLOAT",
 /* 224 */ "cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP",
 /* 225 */ "cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt",
 /* 226 */ "cmd ::= DROP FUNCTION function_name",
 /* 227 */ "agg_func_opt ::=",
 /* 228 */ "agg_func_opt ::= AGGREGATE",
 /* 229 */ "bufsize_opt ::=",
 /* 230 */ "bufsize_opt ::= BUFSIZE NK_INTEGER",
 /* 231 */ "cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression",
 /* 232 */ "cmd ::= DROP STREAM stream_name",
 /* 233 */ "cmd ::= KILL CONNECTION NK_INTEGER",
 /* 234 */ "cmd ::= KILL QUERY NK_INTEGER",
 /* 235 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER",
 /* 236 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list",
 /* 237 */ "cmd ::= SPLIT VGROUP NK_INTEGER",
 /* 238 */ "dnode_list ::= DNODE NK_INTEGER",
 /* 239 */ "dnode_list ::= dnode_list DNODE NK_INTEGER",
 /* 240 */ "cmd ::= SYNCDB db_name REPLICA",
 /* 241 */ "cmd ::= query_expression",
 /* 242 */ "literal ::= NK_INTEGER",
 /* 243 */ "literal ::= NK_FLOAT",
 /* 244 */ "literal ::= NK_STRING",
 /* 245 */ "literal ::= NK_BOOL",
 /* 246 */ "literal ::= TIMESTAMP NK_STRING",
 /* 247 */ "literal ::= duration_literal",
 /* 248 */ "literal ::= NULL",
 /* 249 */ "duration_literal ::= NK_VARIABLE",
 /* 250 */ "signed ::= NK_INTEGER",
 /* 251 */ "signed ::= NK_PLUS NK_INTEGER",
 /* 252 */ "signed ::= NK_MINUS NK_INTEGER",
 /* 253 */ "signed ::= NK_FLOAT",
 /* 254 */ "signed ::= NK_PLUS NK_FLOAT",
 /* 255 */ "signed ::= NK_MINUS NK_FLOAT",
 /* 256 */ "signed_literal ::= signed",
 /* 257 */ "signed_literal ::= NK_STRING",
 /* 258 */ "signed_literal ::= NK_BOOL",
 /* 259 */ "signed_literal ::= TIMESTAMP NK_STRING",
 /* 260 */ "signed_literal ::= duration_literal",
 /* 261 */ "signed_literal ::= NULL",
 /* 262 */ "literal_list ::= signed_literal",
 /* 263 */ "literal_list ::= literal_list NK_COMMA signed_literal",
 /* 264 */ "db_name ::= NK_ID",
 /* 265 */ "table_name ::= NK_ID",
 /* 266 */ "column_name ::= NK_ID",
 /* 267 */ "function_name ::= NK_ID",
 /* 268 */ "function_name ::= FIRST",
 /* 269 */ "function_name ::= LAST",
 /* 270 */ "table_alias ::= NK_ID",
 /* 271 */ "column_alias ::= NK_ID",
 /* 272 */ "user_name ::= NK_ID",
 /* 273 */ "index_name ::= NK_ID",
 /* 274 */ "topic_name ::= NK_ID",
 /* 275 */ "stream_name ::= NK_ID",
 /* 276 */ "expression ::= literal",
 /* 277 */ "expression ::= pseudo_column",
 /* 278 */ "expression ::= column_reference",
 /* 279 */ "expression ::= function_name NK_LP expression_list NK_RP",
 /* 280 */ "expression ::= function_name NK_LP NK_STAR NK_RP",
 /* 281 */ "expression ::= subquery",
 /* 282 */ "expression ::= NK_LP expression NK_RP",
 /* 283 */ "expression ::= NK_PLUS expression",
 /* 284 */ "expression ::= NK_MINUS expression",
 /* 285 */ "expression ::= expression NK_PLUS expression",
 /* 286 */ "expression ::= expression NK_MINUS expression",
 /* 287 */ "expression ::= expression NK_STAR expression",
 /* 288 */ "expression ::= expression NK_SLASH expression",
 /* 289 */ "expression ::= expression NK_REM expression",
 /* 290 */ "expression_list ::= expression",
 /* 291 */ "expression_list ::= expression_list NK_COMMA expression",
 /* 292 */ "column_reference ::= column_name",
 /* 293 */ "column_reference ::= table_name NK_DOT column_name",
 /* 294 */ "pseudo_column ::= NOW",
 /* 295 */ "pseudo_column ::= ROWTS",
 /* 296 */ "pseudo_column ::= TBNAME",
 /* 297 */ "pseudo_column ::= QSTARTTS",
 /* 298 */ "pseudo_column ::= QENDTS",
 /* 299 */ "pseudo_column ::= WSTARTTS",
 /* 300 */ "pseudo_column ::= WENDTS",
 /* 301 */ "pseudo_column ::= WDURATION",
 /* 302 */ "predicate ::= expression compare_op expression",
 /* 303 */ "predicate ::= expression BETWEEN expression AND expression",
 /* 304 */ "predicate ::= expression NOT BETWEEN expression AND expression",
 /* 305 */ "predicate ::= expression IS NULL",
 /* 306 */ "predicate ::= expression IS NOT NULL",
 /* 307 */ "predicate ::= expression in_op in_predicate_value",
 /* 308 */ "compare_op ::= NK_LT",
 /* 309 */ "compare_op ::= NK_GT",
 /* 310 */ "compare_op ::= NK_LE",
 /* 311 */ "compare_op ::= NK_GE",
 /* 312 */ "compare_op ::= NK_NE",
 /* 313 */ "compare_op ::= NK_EQ",
 /* 314 */ "compare_op ::= LIKE",
 /* 315 */ "compare_op ::= NOT LIKE",
 /* 316 */ "compare_op ::= MATCH",
 /* 317 */ "compare_op ::= NMATCH",
 /* 318 */ "in_op ::= IN",
 /* 319 */ "in_op ::= NOT IN",
 /* 320 */ "in_predicate_value ::= NK_LP expression_list NK_RP",
 /* 321 */ "boolean_value_expression ::= boolean_primary",
 /* 322 */ "boolean_value_expression ::= NOT boolean_primary",
 /* 323 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression",
 /* 324 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression",
 /* 325 */ "boolean_primary ::= predicate",
 /* 326 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP",
 /* 327 */ "common_expression ::= expression",
 /* 328 */ "common_expression ::= boolean_value_expression",
 /* 329 */ "from_clause ::= FROM table_reference_list",
 /* 330 */ "table_reference_list ::= table_reference",
 /* 331 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference",
 /* 332 */ "table_reference ::= table_primary",
 /* 333 */ "table_reference ::= joined_table",
 /* 334 */ "table_primary ::= table_name alias_opt",
 /* 335 */ "table_primary ::= db_name NK_DOT table_name alias_opt",
 /* 336 */ "table_primary ::= subquery alias_opt",
 /* 337 */ "table_primary ::= parenthesized_joined_table",
 /* 338 */ "alias_opt ::=",
 /* 339 */ "alias_opt ::= table_alias",
 /* 340 */ "alias_opt ::= AS table_alias",
 /* 341 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP",
 /* 342 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP",
 /* 343 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition",
 /* 344 */ "join_type ::=",
 /* 345 */ "join_type ::= INNER",
 /* 346 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt",
 /* 347 */ "set_quantifier_opt ::=",
 /* 348 */ "set_quantifier_opt ::= DISTINCT",
 /* 349 */ "set_quantifier_opt ::= ALL",
 /* 350 */ "select_list ::= NK_STAR",
 /* 351 */ "select_list ::= select_sublist",
 /* 352 */ "select_sublist ::= select_item",
 /* 353 */ "select_sublist ::= select_sublist NK_COMMA select_item",
 /* 354 */ "select_item ::= common_expression",
 /* 355 */ "select_item ::= common_expression column_alias",
 /* 356 */ "select_item ::= common_expression AS column_alias",
 /* 357 */ "select_item ::= table_name NK_DOT NK_STAR",
 /* 358 */ "where_clause_opt ::=",
 /* 359 */ "where_clause_opt ::= WHERE search_condition",
 /* 360 */ "partition_by_clause_opt ::=",
 /* 361 */ "partition_by_clause_opt ::= PARTITION BY expression_list",
 /* 362 */ "twindow_clause_opt ::=",
 /* 363 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP",
 /* 364 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP",
 /* 365 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt",
 /* 366 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt",
 /* 367 */ "sliding_opt ::=",
 /* 368 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP",
 /* 369 */ "fill_opt ::=",
 /* 370 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP",
 /* 371 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP",
 /* 372 */ "fill_mode ::= NONE",
 /* 373 */ "fill_mode ::= PREV",
 /* 374 */ "fill_mode ::= NULL",
 /* 375 */ "fill_mode ::= LINEAR",
 /* 376 */ "fill_mode ::= NEXT",
 /* 377 */ "group_by_clause_opt ::=",
 /* 378 */ "group_by_clause_opt ::= GROUP BY group_by_list",
 /* 379 */ "group_by_list ::= expression",
 /* 380 */ "group_by_list ::= group_by_list NK_COMMA expression",
 /* 381 */ "having_clause_opt ::=",
 /* 382 */ "having_clause_opt ::= HAVING search_condition",
 /* 383 */ "query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt",
 /* 384 */ "query_expression_body ::= query_primary",
 /* 385 */ "query_expression_body ::= query_expression_body UNION ALL query_expression_body",
 /* 386 */ "query_primary ::= query_specification",
 /* 387 */ "order_by_clause_opt ::=",
 /* 388 */ "order_by_clause_opt ::= ORDER BY sort_specification_list",
 /* 389 */ "slimit_clause_opt ::=",
 /* 390 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER",
 /* 391 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER",
 /* 392 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER",
 /* 393 */ "limit_clause_opt ::=",
 /* 394 */ "limit_clause_opt ::= LIMIT NK_INTEGER",
 /* 395 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER",
 /* 396 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER",
 /* 397 */ "subquery ::= NK_LP query_expression NK_RP",
 /* 398 */ "search_condition ::= common_expression",
 /* 399 */ "sort_specification_list ::= sort_specification",
 /* 400 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification",
 /* 401 */ "sort_specification ::= expression ordering_specification_opt null_ordering_opt",
 /* 402 */ "ordering_specification_opt ::=",
 /* 403 */ "ordering_specification_opt ::= ASC",
 /* 404 */ "ordering_specification_opt ::= DESC",
 /* 405 */ "null_ordering_opt ::=",
 /* 406 */ "null_ordering_opt ::= NULLS FIRST",
 /* 407 */ "null_ordering_opt ::= NULLS LAST",
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
};
#endif /* NDEBUG */


#if YYSTACKDEPTH<=0
/*
** Try to increase the size of the parser stack.  Return the number
** of errors.  Return 0 on success.
*/
static int yyGrowStack(yyParser *p){
  int newSize;
  int idx;
  yyStackEntry *pNew;

  newSize = p->yystksz*2 + 100;
  idx = p->yytos ? (int)(p->yytos - p->yystack) : 0;
  if( p->yystack==&p->yystk0 ){
X
Xiaoyu Wang 已提交
1537
    pNew = malloc(newSize*sizeof(pNew[0]));
1538 1539
    if( pNew ) pNew[0] = p->yystk0;
  }else{
X
Xiaoyu Wang 已提交
1540
    pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
  }
  if( pNew ){
    p->yystack = pNew;
    p->yytos = &p->yystack[idx];
#ifndef NDEBUG
    if( yyTraceFILE ){
      fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n",
              yyTracePrompt, p->yystksz, newSize);
    }
#endif
    p->yystksz = newSize;
  }
  return pNew==0; 
}
#endif

/* Datatype of the argument to the memory allocated passed as the
X
Xiaoyu Wang 已提交
1558
** second argument to ParseAlloc() below.  This can be changed by
1559 1560 1561 1562 1563 1564 1565 1566 1567
** putting an appropriate #define in the %include section of the input
** grammar.
*/
#ifndef YYMALLOCARGTYPE
# define YYMALLOCARGTYPE size_t
#endif

/* Initialize a new parser that has already been allocated.
*/
X
Xiaoyu Wang 已提交
1568
void ParseInit(void *yypRawParser ParseCTX_PDECL){
1569
  yyParser *yypParser = (yyParser*)yypRawParser;
X
Xiaoyu Wang 已提交
1570
  ParseCTX_STORE
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
#ifdef YYTRACKMAXSTACKDEPTH
  yypParser->yyhwm = 0;
#endif
#if YYSTACKDEPTH<=0
  yypParser->yytos = NULL;
  yypParser->yystack = NULL;
  yypParser->yystksz = 0;
  if( yyGrowStack(yypParser) ){
    yypParser->yystack = &yypParser->yystk0;
    yypParser->yystksz = 1;
  }
#endif
#ifndef YYNOERRORRECOVERY
  yypParser->yyerrcnt = -1;
#endif
  yypParser->yytos = yypParser->yystack;
  yypParser->yystack[0].stateno = 0;
  yypParser->yystack[0].major = 0;
#if YYSTACKDEPTH>0
  yypParser->yystackEnd = &yypParser->yystack[YYSTACKDEPTH-1];
#endif
}

X
Xiaoyu Wang 已提交
1594
#ifndef Parse_ENGINEALWAYSONSTACK
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
/* 
** This function allocates a new parser.
** The only argument is a pointer to a function which works like
** malloc.
**
** Inputs:
** A pointer to the function used to allocate memory.
**
** Outputs:
** A pointer to a parser.  This pointer is used in subsequent calls
X
Xiaoyu Wang 已提交
1605
** to Parse and ParseFree.
1606
*/
X
Xiaoyu Wang 已提交
1607
void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE) ParseCTX_PDECL){
1608 1609 1610
  yyParser *yypParser;
  yypParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) );
  if( yypParser ){
X
Xiaoyu Wang 已提交
1611 1612
    ParseCTX_STORE
    ParseInit(yypParser ParseCTX_PARAM);
1613 1614 1615
  }
  return (void*)yypParser;
}
X
Xiaoyu Wang 已提交
1616
#endif /* Parse_ENGINEALWAYSONSTACK */
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630


/* The following function deletes the "minor type" or semantic value
** associated with a symbol.  The symbol can be either a terminal
** or nonterminal. "yymajor" is the symbol code, and "yypminor" is
** a pointer to the value to be deleted.  The code used to do the 
** deletions is derived from the %destructor and/or %token_destructor
** directives of the input grammar.
*/
static void yy_destructor(
  yyParser *yypParser,    /* The parser */
  YYCODETYPE yymajor,     /* Type code for object to destroy */
  YYMINORTYPE *yypminor   /* The object to be destroyed */
){
X
Xiaoyu Wang 已提交
1631 1632
  ParseARG_FETCH
  ParseCTX_FETCH
1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
  switch( yymajor ){
    /* Here is inserted the actions which take place when a
    ** terminal or non-terminal is destroyed.  This can happen
    ** when the symbol is popped from the stack during a
    ** reduce or during error processing or when a parser is 
    ** being destroyed before it is finished parsing.
    **
    ** Note: during a reduce, the only symbols destroyed are those
    ** which appear on the RHS of the rule, but which are *not* used
    ** inside the C code.
    */
/********* Begin destructor definitions ***************************************/
      /* Default NON-TERMINAL Destructor */
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
    case 207: /* cmd */
    case 210: /* literal */
    case 217: /* db_options */
    case 219: /* alter_db_options */
    case 224: /* retention */
    case 225: /* full_table_name */
    case 228: /* table_options */
    case 232: /* alter_table_clause */
    case 233: /* alter_table_options */
    case 236: /* create_subtable_clause */
    case 239: /* drop_table_clause */
    case 242: /* column_def */
    case 245: /* col_name */
    case 246: /* db_name_cond_opt */
    case 247: /* like_pattern_opt */
    case 248: /* table_name_cond */
    case 249: /* from_db_opt */
    case 250: /* func_name */
    case 253: /* index_options */
    case 255: /* duration_literal */
    case 256: /* sliding_opt */
    case 257: /* func */
    case 260: /* query_expression */
    case 262: /* explain_options */
    case 267: /* signed */
    case 268: /* signed_literal */
    case 271: /* expression */
    case 272: /* pseudo_column */
    case 273: /* column_reference */
    case 274: /* subquery */
    case 275: /* predicate */
    case 278: /* in_predicate_value */
    case 279: /* boolean_value_expression */
    case 280: /* boolean_primary */
    case 281: /* common_expression */
    case 282: /* from_clause */
    case 283: /* table_reference_list */
    case 284: /* table_reference */
    case 285: /* table_primary */
    case 286: /* joined_table */
    case 288: /* parenthesized_joined_table */
    case 290: /* search_condition */
    case 291: /* query_specification */
    case 294: /* where_clause_opt */
    case 296: /* twindow_clause_opt */
    case 298: /* having_clause_opt */
    case 300: /* select_item */
    case 301: /* fill_opt */
    case 304: /* query_expression_body */
    case 306: /* slimit_clause_opt */
    case 307: /* limit_clause_opt */
    case 308: /* query_primary */
    case 310: /* sort_specification */
1699
{
1700
 nodesDestroyNode((yypminor->yy564)); 
1701 1702
}
      break;
1703 1704 1705 1706
    case 208: /* account_options */
    case 209: /* alter_account_options */
    case 211: /* alter_account_option */
    case 264: /* bufsize_opt */
1707
{
1708
 
1709 1710
}
      break;
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
    case 212: /* user_name */
    case 213: /* dnode_endpoint */
    case 214: /* dnode_host_name */
    case 216: /* db_name */
    case 234: /* column_name */
    case 241: /* table_name */
    case 251: /* function_name */
    case 252: /* index_name */
    case 259: /* topic_name */
    case 265: /* stream_name */
    case 269: /* table_alias */
    case 270: /* column_alias */
    case 287: /* alias_opt */
1724
{
1725
 
1726 1727
}
      break;
1728 1729 1730 1731 1732
    case 215: /* not_exists_opt */
    case 218: /* exists_opt */
    case 261: /* analyze_opt */
    case 263: /* agg_func_opt */
    case 292: /* set_quantifier_opt */
1733
{
1734 1735 1736
 
}
      break;
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
    case 220: /* integer_list */
    case 221: /* variable_list */
    case 222: /* retention_list */
    case 226: /* column_def_list */
    case 227: /* tags_def_opt */
    case 229: /* multi_create_clause */
    case 230: /* tags_def */
    case 231: /* multi_drop_clause */
    case 237: /* specific_tags_opt */
    case 238: /* literal_list */
    case 240: /* col_name_list */
    case 243: /* func_name_list */
    case 254: /* func_list */
    case 258: /* expression_list */
    case 266: /* dnode_list */
    case 293: /* select_list */
    case 295: /* partition_by_clause_opt */
    case 297: /* group_by_clause_opt */
    case 299: /* select_sublist */
    case 303: /* group_by_list */
    case 305: /* order_by_clause_opt */
    case 309: /* sort_specification_list */
1759
{
1760
 nodesDestroyList((yypminor->yy476)); 
1761 1762
}
      break;
1763 1764
    case 223: /* alter_db_option */
    case 244: /* alter_table_option */
1765
{
X
Xiaoyu Wang 已提交
1766
 
1767 1768
}
      break;
1769
    case 235: /* type_name */
1770
{
1771
 
1772 1773
}
      break;
1774 1775
    case 276: /* compare_op */
    case 277: /* in_op */
1776
{
1777
 
1778 1779
}
      break;
1780
    case 289: /* join_type */
1781
{
1782
 
1783 1784
}
      break;
1785
    case 302: /* fill_mode */
1786
{
1787
 
1788 1789
}
      break;
1790
    case 311: /* ordering_specification_opt */
1791
{
1792
 
1793 1794
}
      break;
1795
    case 312: /* null_ordering_opt */
1796
{
1797
 
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
}
      break;
/********* End destructor definitions *****************************************/
    default:  break;   /* If no destructor action specified: do nothing */
  }
}

/*
** Pop the parser's stack once.
**
** If there is a destructor routine associated with the token which
** is popped from the stack, then call it.
*/
static void yy_pop_parser_stack(yyParser *pParser){
  yyStackEntry *yytos;
  assert( pParser->yytos!=0 );
  assert( pParser->yytos > pParser->yystack );
  yytos = pParser->yytos--;
#ifndef NDEBUG
  if( yyTraceFILE ){
    fprintf(yyTraceFILE,"%sPopping %s\n",
      yyTracePrompt,
      yyTokenName[yytos->major]);
  }
#endif
  yy_destructor(pParser, yytos->major, &yytos->minor);
}

/*
** Clear all secondary memory allocations from the parser
*/
X
Xiaoyu Wang 已提交
1829
void ParseFinalize(void *p){
1830 1831 1832
  yyParser *pParser = (yyParser*)p;
  while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser);
#if YYSTACKDEPTH<=0
X
Xiaoyu Wang 已提交
1833
  if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack);
1834 1835 1836
#endif
}

X
Xiaoyu Wang 已提交
1837
#ifndef Parse_ENGINEALWAYSONSTACK
1838 1839 1840 1841 1842 1843 1844 1845
/* 
** Deallocate and destroy a parser.  Destructors are called for
** all stack elements before shutting the parser down.
**
** If the YYPARSEFREENEVERNULL macro exists (for example because it
** is defined in a %include section of the input grammar) then it is
** assumed that the input pointer is never NULL.
*/
X
Xiaoyu Wang 已提交
1846
void ParseFree(
1847 1848 1849 1850 1851 1852
  void *p,                    /* The parser to be deleted */
  void (*freeProc)(void*)     /* Function used to reclaim memory */
){
#ifndef YYPARSEFREENEVERNULL
  if( p==0 ) return;
#endif
X
Xiaoyu Wang 已提交
1853
  ParseFinalize(p);
1854 1855
  (*freeProc)(p);
}
X
Xiaoyu Wang 已提交
1856
#endif /* Parse_ENGINEALWAYSONSTACK */
1857 1858 1859 1860 1861

/*
** Return the peak depth of the stack for a parser.
*/
#ifdef YYTRACKMAXSTACKDEPTH
X
Xiaoyu Wang 已提交
1862
int ParseStackPeak(void *p){
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
  yyParser *pParser = (yyParser*)p;
  return pParser->yyhwm;
}
#endif

/* This array of booleans keeps track of the parser statement
** coverage.  The element yycoverage[X][Y] is set when the parser
** is in state X and has a lookahead token Y.  In a well-tested
** systems, every element of this matrix should end up being set.
*/
#if defined(YYCOVERAGE)
static unsigned char yycoverage[YYNSTATE][YYNTOKEN];
#endif

/*
** Write into out a description of every state/lookahead combination that
**
**   (1)  has not been used by the parser, and
**   (2)  is not a syntax error.
**
** Return the number of missed state/lookahead combinations.
*/
#if defined(YYCOVERAGE)
X
Xiaoyu Wang 已提交
1886
int ParseCoverage(FILE *out){
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
  int stateno, iLookAhead, i;
  int nMissed = 0;
  for(stateno=0; stateno<YYNSTATE; stateno++){
    i = yy_shift_ofst[stateno];
    for(iLookAhead=0; iLookAhead<YYNTOKEN; iLookAhead++){
      if( yy_lookahead[i+iLookAhead]!=iLookAhead ) continue;
      if( yycoverage[stateno][iLookAhead]==0 ) nMissed++;
      if( out ){
        fprintf(out,"State %d lookahead %s %s\n", stateno,
                yyTokenName[iLookAhead],
                yycoverage[stateno][iLookAhead] ? "ok" : "missed");
      }
    }
  }
  return nMissed;
}
#endif

/*
** Find the appropriate action for a parser given the terminal
** look-ahead token iLookAhead.
*/
static YYACTIONTYPE yy_find_shift_action(
  YYCODETYPE iLookAhead,    /* The look-ahead token */
  YYACTIONTYPE stateno      /* Current state number */
){
  int i;

  if( stateno>YY_MAX_SHIFT ) return stateno;
  assert( stateno <= YY_SHIFT_COUNT );
#if defined(YYCOVERAGE)
  yycoverage[stateno][iLookAhead] = 1;
#endif
  do{
    i = yy_shift_ofst[stateno];
    assert( i>=0 );
    /* assert( i+YYNTOKEN<=(int)YY_NLOOKAHEAD ); */
    assert( iLookAhead!=YYNOCODE );
    assert( iLookAhead < YYNTOKEN );
    i += iLookAhead;
    if( i>=YY_NLOOKAHEAD || yy_lookahead[i]!=iLookAhead ){
#ifdef YYFALLBACK
      YYCODETYPE iFallback;            /* Fallback token */
      if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0])
             && (iFallback = yyFallback[iLookAhead])!=0 ){
#ifndef NDEBUG
        if( yyTraceFILE ){
          fprintf(yyTraceFILE, "%sFALLBACK %s => %s\n",
             yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]);
        }
#endif
        assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */
        iLookAhead = iFallback;
        continue;
      }
#endif
#ifdef YYWILDCARD
      {
        int j = i - iLookAhead + YYWILDCARD;
        if( 
#if YY_SHIFT_MIN+YYWILDCARD<0
          j>=0 &&
#endif
#if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT
          j<YY_ACTTAB_COUNT &&
#endif
          j<(int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0])) &&
          yy_lookahead[j]==YYWILDCARD && iLookAhead>0
        ){
#ifndef NDEBUG
          if( yyTraceFILE ){
            fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n",
               yyTracePrompt, yyTokenName[iLookAhead],
               yyTokenName[YYWILDCARD]);
          }
#endif /* NDEBUG */
          return yy_action[j];
        }
      }
#endif /* YYWILDCARD */
      return yy_default[stateno];
    }else{
      return yy_action[i];
    }
  }while(1);
}

/*
** Find the appropriate action for a parser given the non-terminal
** look-ahead token iLookAhead.
*/
static YYACTIONTYPE yy_find_reduce_action(
  YYACTIONTYPE stateno,     /* Current state number */
  YYCODETYPE iLookAhead     /* The look-ahead token */
){
  int i;
#ifdef YYERRORSYMBOL
  if( stateno>YY_REDUCE_COUNT ){
    return yy_default[stateno];
  }
#else
  assert( stateno<=YY_REDUCE_COUNT );
#endif
  i = yy_reduce_ofst[stateno];
  assert( iLookAhead!=YYNOCODE );
  i += iLookAhead;
#ifdef YYERRORSYMBOL
  if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){
    return yy_default[stateno];
  }
#else
  assert( i>=0 && i<YY_ACTTAB_COUNT );
  assert( yy_lookahead[i]==iLookAhead );
#endif
  return yy_action[i];
}

/*
** The following routine is called if the stack overflows.
*/
static void yyStackOverflow(yyParser *yypParser){
X
Xiaoyu Wang 已提交
2008 2009
   ParseARG_FETCH
   ParseCTX_FETCH
2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
#ifndef NDEBUG
   if( yyTraceFILE ){
     fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt);
   }
#endif
   while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser);
   /* Here code is inserted which will execute if the parser
   ** stack every overflows */
/******** Begin %stack_overflow code ******************************************/
/******** End %stack_overflow code ********************************************/
X
Xiaoyu Wang 已提交
2020 2021
   ParseARG_STORE /* Suppress warning about unused %extra_argument var */
   ParseCTX_STORE
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
}

/*
** Print tracing information for a SHIFT action
*/
#ifndef NDEBUG
static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){
  if( yyTraceFILE ){
    if( yyNewState<YYNSTATE ){
      fprintf(yyTraceFILE,"%s%s '%s', go to state %d\n",
         yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major],
         yyNewState);
    }else{
      fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n",
         yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major],
         yyNewState - YY_MIN_REDUCE);
    }
  }
}
#else
# define yyTraceShift(X,Y,Z)
#endif

/*
** Perform a shift action.
*/
static void yy_shift(
  yyParser *yypParser,          /* The parser to be shifted */
  YYACTIONTYPE yyNewState,      /* The new state to shift in */
  YYCODETYPE yyMajor,           /* The major token to shift in */
X
Xiaoyu Wang 已提交
2052
  ParseTOKENTYPE yyMinor        /* The minor token to shift in */
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
){
  yyStackEntry *yytos;
  yypParser->yytos++;
#ifdef YYTRACKMAXSTACKDEPTH
  if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){
    yypParser->yyhwm++;
    assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) );
  }
#endif
#if YYSTACKDEPTH>0 
  if( yypParser->yytos>yypParser->yystackEnd ){
    yypParser->yytos--;
    yyStackOverflow(yypParser);
    return;
  }
#else
  if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){
    if( yyGrowStack(yypParser) ){
      yypParser->yytos--;
      yyStackOverflow(yypParser);
      return;
    }
  }
#endif
  if( yyNewState > YY_MAX_SHIFT ){
    yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE;
  }
  yytos = yypParser->yytos;
  yytos->stateno = yyNewState;
  yytos->major = yyMajor;
  yytos->minor.yy0 = yyMinor;
  yyTraceShift(yypParser, yyNewState, "Shift");
}

/* The following table contains information about every rule that
** is used during the reduce.
*/
static const struct {
  YYCODETYPE lhs;       /* Symbol on the left-hand side of the rule */
  signed char nrhs;     /* Negative of the number of RHS symbols in the rule */
} yyRuleInfo[] = {
2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
  {  207,   -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */
  {  207,   -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */
  {  208,    0 }, /* (2) account_options ::= */
  {  208,   -3 }, /* (3) account_options ::= account_options PPS literal */
  {  208,   -3 }, /* (4) account_options ::= account_options TSERIES literal */
  {  208,   -3 }, /* (5) account_options ::= account_options STORAGE literal */
  {  208,   -3 }, /* (6) account_options ::= account_options STREAMS literal */
  {  208,   -3 }, /* (7) account_options ::= account_options QTIME literal */
  {  208,   -3 }, /* (8) account_options ::= account_options DBS literal */
  {  208,   -3 }, /* (9) account_options ::= account_options USERS literal */
  {  208,   -3 }, /* (10) account_options ::= account_options CONNS literal */
  {  208,   -3 }, /* (11) account_options ::= account_options STATE literal */
  {  209,   -1 }, /* (12) alter_account_options ::= alter_account_option */
  {  209,   -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */
  {  211,   -2 }, /* (14) alter_account_option ::= PASS literal */
  {  211,   -2 }, /* (15) alter_account_option ::= PPS literal */
  {  211,   -2 }, /* (16) alter_account_option ::= TSERIES literal */
  {  211,   -2 }, /* (17) alter_account_option ::= STORAGE literal */
  {  211,   -2 }, /* (18) alter_account_option ::= STREAMS literal */
  {  211,   -2 }, /* (19) alter_account_option ::= QTIME literal */
  {  211,   -2 }, /* (20) alter_account_option ::= DBS literal */
  {  211,   -2 }, /* (21) alter_account_option ::= USERS literal */
  {  211,   -2 }, /* (22) alter_account_option ::= CONNS literal */
  {  211,   -2 }, /* (23) alter_account_option ::= STATE literal */
  {  207,   -5 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING */
  {  207,   -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */
  {  207,   -5 }, /* (26) cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */
  {  207,   -3 }, /* (27) cmd ::= DROP USER user_name */
  {  207,   -3 }, /* (28) cmd ::= CREATE DNODE dnode_endpoint */
  {  207,   -5 }, /* (29) cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */
  {  207,   -3 }, /* (30) cmd ::= DROP DNODE NK_INTEGER */
  {  207,   -3 }, /* (31) cmd ::= DROP DNODE dnode_endpoint */
  {  207,   -4 }, /* (32) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */
  {  207,   -5 }, /* (33) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */
  {  207,   -4 }, /* (34) cmd ::= ALTER ALL DNODES NK_STRING */
  {  207,   -5 }, /* (35) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */
  {  213,   -1 }, /* (36) dnode_endpoint ::= NK_STRING */
  {  214,   -1 }, /* (37) dnode_host_name ::= NK_ID */
  {  214,   -1 }, /* (38) dnode_host_name ::= NK_IPTOKEN */
  {  207,   -3 }, /* (39) cmd ::= ALTER LOCAL NK_STRING */
  {  207,   -4 }, /* (40) cmd ::= ALTER LOCAL NK_STRING NK_STRING */
  {  207,   -5 }, /* (41) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (42) cmd ::= DROP QNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (43) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (44) cmd ::= DROP BNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (45) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (46) cmd ::= DROP SNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (47) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (48) cmd ::= DROP MNODE ON DNODE NK_INTEGER */
  {  207,   -5 }, /* (49) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */
  {  207,   -4 }, /* (50) cmd ::= DROP DATABASE exists_opt db_name */
  {  207,   -2 }, /* (51) cmd ::= USE db_name */
  {  207,   -4 }, /* (52) cmd ::= ALTER DATABASE db_name alter_db_options */
  {  215,   -3 }, /* (53) not_exists_opt ::= IF NOT EXISTS */
  {  215,    0 }, /* (54) not_exists_opt ::= */
  {  218,   -2 }, /* (55) exists_opt ::= IF EXISTS */
  {  218,    0 }, /* (56) exists_opt ::= */
  {  217,    0 }, /* (57) db_options ::= */
  {  217,   -3 }, /* (58) db_options ::= db_options BLOCKS NK_INTEGER */
  {  217,   -3 }, /* (59) db_options ::= db_options CACHE NK_INTEGER */
  {  217,   -3 }, /* (60) db_options ::= db_options CACHELAST NK_INTEGER */
  {  217,   -3 }, /* (61) db_options ::= db_options COMP NK_INTEGER */
  {  217,   -3 }, /* (62) db_options ::= db_options DAYS NK_INTEGER */
  {  217,   -3 }, /* (63) db_options ::= db_options DAYS NK_VARIABLE */
  {  217,   -3 }, /* (64) db_options ::= db_options FSYNC NK_INTEGER */
  {  217,   -3 }, /* (65) db_options ::= db_options MAXROWS NK_INTEGER */
  {  217,   -3 }, /* (66) db_options ::= db_options MINROWS NK_INTEGER */
  {  217,   -3 }, /* (67) db_options ::= db_options KEEP integer_list */
  {  217,   -3 }, /* (68) db_options ::= db_options KEEP variable_list */
  {  217,   -3 }, /* (69) db_options ::= db_options PRECISION NK_STRING */
  {  217,   -3 }, /* (70) db_options ::= db_options QUORUM NK_INTEGER */
  {  217,   -3 }, /* (71) db_options ::= db_options REPLICA NK_INTEGER */
  {  217,   -3 }, /* (72) db_options ::= db_options TTL NK_INTEGER */
  {  217,   -3 }, /* (73) db_options ::= db_options WAL NK_INTEGER */
  {  217,   -3 }, /* (74) db_options ::= db_options VGROUPS NK_INTEGER */
  {  217,   -3 }, /* (75) db_options ::= db_options SINGLE_STABLE NK_INTEGER */
  {  217,   -3 }, /* (76) db_options ::= db_options STREAM_MODE NK_INTEGER */
  {  217,   -3 }, /* (77) db_options ::= db_options RETENTIONS retention_list */
  {  219,   -1 }, /* (78) alter_db_options ::= alter_db_option */
  {  219,   -2 }, /* (79) alter_db_options ::= alter_db_options alter_db_option */
  {  223,   -2 }, /* (80) alter_db_option ::= BLOCKS NK_INTEGER */
  {  223,   -2 }, /* (81) alter_db_option ::= FSYNC NK_INTEGER */
  {  223,   -2 }, /* (82) alter_db_option ::= KEEP integer_list */
  {  223,   -2 }, /* (83) alter_db_option ::= KEEP variable_list */
  {  223,   -2 }, /* (84) alter_db_option ::= WAL NK_INTEGER */
  {  223,   -2 }, /* (85) alter_db_option ::= QUORUM NK_INTEGER */
  {  223,   -2 }, /* (86) alter_db_option ::= CACHELAST NK_INTEGER */
  {  223,   -2 }, /* (87) alter_db_option ::= REPLICA NK_INTEGER */
  {  220,   -1 }, /* (88) integer_list ::= NK_INTEGER */
  {  220,   -3 }, /* (89) integer_list ::= integer_list NK_COMMA NK_INTEGER */
  {  221,   -1 }, /* (90) variable_list ::= NK_VARIABLE */
  {  221,   -3 }, /* (91) variable_list ::= variable_list NK_COMMA NK_VARIABLE */
  {  222,   -1 }, /* (92) retention_list ::= retention */
  {  222,   -3 }, /* (93) retention_list ::= retention_list NK_COMMA retention */
  {  224,   -3 }, /* (94) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */
  {  207,   -9 }, /* (95) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */
  {  207,   -3 }, /* (96) cmd ::= CREATE TABLE multi_create_clause */
  {  207,   -9 }, /* (97) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */
  {  207,   -3 }, /* (98) cmd ::= DROP TABLE multi_drop_clause */
  {  207,   -4 }, /* (99) cmd ::= DROP STABLE exists_opt full_table_name */
  {  207,   -3 }, /* (100) cmd ::= ALTER TABLE alter_table_clause */
  {  207,   -3 }, /* (101) cmd ::= ALTER STABLE alter_table_clause */
  {  232,   -2 }, /* (102) alter_table_clause ::= full_table_name alter_table_options */
  {  232,   -5 }, /* (103) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */
  {  232,   -4 }, /* (104) alter_table_clause ::= full_table_name DROP COLUMN column_name */
  {  232,   -5 }, /* (105) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */
  {  232,   -5 }, /* (106) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */
  {  232,   -5 }, /* (107) alter_table_clause ::= full_table_name ADD TAG column_name type_name */
  {  232,   -4 }, /* (108) alter_table_clause ::= full_table_name DROP TAG column_name */
  {  232,   -5 }, /* (109) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */
  {  232,   -5 }, /* (110) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */
  {  232,   -6 }, /* (111) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */
  {  229,   -1 }, /* (112) multi_create_clause ::= create_subtable_clause */
  {  229,   -2 }, /* (113) multi_create_clause ::= multi_create_clause create_subtable_clause */
  {  236,   -9 }, /* (114) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */
  {  231,   -1 }, /* (115) multi_drop_clause ::= drop_table_clause */
  {  231,   -2 }, /* (116) multi_drop_clause ::= multi_drop_clause drop_table_clause */
  {  239,   -2 }, /* (117) drop_table_clause ::= exists_opt full_table_name */
  {  237,    0 }, /* (118) specific_tags_opt ::= */
  {  237,   -3 }, /* (119) specific_tags_opt ::= NK_LP col_name_list NK_RP */
  {  225,   -1 }, /* (120) full_table_name ::= table_name */
  {  225,   -3 }, /* (121) full_table_name ::= db_name NK_DOT table_name */
  {  226,   -1 }, /* (122) column_def_list ::= column_def */
  {  226,   -3 }, /* (123) column_def_list ::= column_def_list NK_COMMA column_def */
  {  242,   -2 }, /* (124) column_def ::= column_name type_name */
  {  242,   -4 }, /* (125) column_def ::= column_name type_name COMMENT NK_STRING */
  {  235,   -1 }, /* (126) type_name ::= BOOL */
  {  235,   -1 }, /* (127) type_name ::= TINYINT */
  {  235,   -1 }, /* (128) type_name ::= SMALLINT */
  {  235,   -1 }, /* (129) type_name ::= INT */
  {  235,   -1 }, /* (130) type_name ::= INTEGER */
  {  235,   -1 }, /* (131) type_name ::= BIGINT */
  {  235,   -1 }, /* (132) type_name ::= FLOAT */
  {  235,   -1 }, /* (133) type_name ::= DOUBLE */
  {  235,   -4 }, /* (134) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */
  {  235,   -1 }, /* (135) type_name ::= TIMESTAMP */
  {  235,   -4 }, /* (136) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */
  {  235,   -2 }, /* (137) type_name ::= TINYINT UNSIGNED */
  {  235,   -2 }, /* (138) type_name ::= SMALLINT UNSIGNED */
  {  235,   -2 }, /* (139) type_name ::= INT UNSIGNED */
  {  235,   -2 }, /* (140) type_name ::= BIGINT UNSIGNED */
  {  235,   -1 }, /* (141) type_name ::= JSON */
  {  235,   -4 }, /* (142) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */
  {  235,   -1 }, /* (143) type_name ::= MEDIUMBLOB */
  {  235,   -1 }, /* (144) type_name ::= BLOB */
  {  235,   -4 }, /* (145) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */
  {  235,   -1 }, /* (146) type_name ::= DECIMAL */
  {  235,   -4 }, /* (147) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */
  {  235,   -6 }, /* (148) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */
  {  227,    0 }, /* (149) tags_def_opt ::= */
  {  227,   -1 }, /* (150) tags_def_opt ::= tags_def */
  {  230,   -4 }, /* (151) tags_def ::= TAGS NK_LP column_def_list NK_RP */
  {  228,    0 }, /* (152) table_options ::= */
  {  228,   -3 }, /* (153) table_options ::= table_options COMMENT NK_STRING */
  {  228,   -3 }, /* (154) table_options ::= table_options KEEP integer_list */
  {  228,   -3 }, /* (155) table_options ::= table_options TTL NK_INTEGER */
  {  228,   -5 }, /* (156) table_options ::= table_options SMA NK_LP col_name_list NK_RP */
  {  228,   -5 }, /* (157) table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */
  {  228,   -3 }, /* (158) table_options ::= table_options FILE_FACTOR NK_FLOAT */
  {  228,   -3 }, /* (159) table_options ::= table_options DELAY NK_INTEGER */
  {  233,   -1 }, /* (160) alter_table_options ::= alter_table_option */
  {  233,   -2 }, /* (161) alter_table_options ::= alter_table_options alter_table_option */
  {  244,   -2 }, /* (162) alter_table_option ::= COMMENT NK_STRING */
  {  244,   -2 }, /* (163) alter_table_option ::= KEEP integer_list */
  {  244,   -2 }, /* (164) alter_table_option ::= TTL NK_INTEGER */
  {  240,   -1 }, /* (165) col_name_list ::= col_name */
  {  240,   -3 }, /* (166) col_name_list ::= col_name_list NK_COMMA col_name */
  {  245,   -1 }, /* (167) col_name ::= column_name */
  {  207,   -2 }, /* (168) cmd ::= SHOW DNODES */
  {  207,   -2 }, /* (169) cmd ::= SHOW USERS */
  {  207,   -2 }, /* (170) cmd ::= SHOW DATABASES */
  {  207,   -4 }, /* (171) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */
  {  207,   -4 }, /* (172) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */
  {  207,   -3 }, /* (173) cmd ::= SHOW db_name_cond_opt VGROUPS */
  {  207,   -2 }, /* (174) cmd ::= SHOW MNODES */
  {  207,   -2 }, /* (175) cmd ::= SHOW MODULES */
  {  207,   -2 }, /* (176) cmd ::= SHOW QNODES */
  {  207,   -2 }, /* (177) cmd ::= SHOW FUNCTIONS */
  {  207,   -5 }, /* (178) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */
  {  207,   -2 }, /* (179) cmd ::= SHOW STREAMS */
  {  207,   -2 }, /* (180) cmd ::= SHOW ACCOUNTS */
  {  207,   -2 }, /* (181) cmd ::= SHOW APPS */
  {  207,   -2 }, /* (182) cmd ::= SHOW CONNECTIONS */
  {  207,   -2 }, /* (183) cmd ::= SHOW LICENCE */
  {  207,   -4 }, /* (184) cmd ::= SHOW CREATE DATABASE db_name */
  {  207,   -4 }, /* (185) cmd ::= SHOW CREATE TABLE full_table_name */
  {  207,   -4 }, /* (186) cmd ::= SHOW CREATE STABLE full_table_name */
  {  207,   -2 }, /* (187) cmd ::= SHOW QUERIES */
  {  207,   -2 }, /* (188) cmd ::= SHOW SCORES */
  {  207,   -2 }, /* (189) cmd ::= SHOW TOPICS */
  {  207,   -2 }, /* (190) cmd ::= SHOW VARIABLES */
  {  207,   -2 }, /* (191) cmd ::= SHOW BNODES */
  {  207,   -2 }, /* (192) cmd ::= SHOW SNODES */
  {  246,    0 }, /* (193) db_name_cond_opt ::= */
  {  246,   -2 }, /* (194) db_name_cond_opt ::= db_name NK_DOT */
  {  247,    0 }, /* (195) like_pattern_opt ::= */
  {  247,   -2 }, /* (196) like_pattern_opt ::= LIKE NK_STRING */
  {  248,   -1 }, /* (197) table_name_cond ::= table_name */
  {  249,    0 }, /* (198) from_db_opt ::= */
  {  249,   -2 }, /* (199) from_db_opt ::= FROM db_name */
  {  243,   -1 }, /* (200) func_name_list ::= func_name */
  {  243,   -3 }, /* (201) func_name_list ::= func_name_list NK_COMMA col_name */
  {  250,   -1 }, /* (202) func_name ::= function_name */
  {  207,   -8 }, /* (203) cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */
  {  207,  -10 }, /* (204) cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */
  {  207,   -6 }, /* (205) cmd ::= DROP INDEX exists_opt index_name ON table_name */
  {  253,    0 }, /* (206) index_options ::= */
  {  253,   -9 }, /* (207) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */
  {  253,  -11 }, /* (208) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */
  {  254,   -1 }, /* (209) func_list ::= func */
  {  254,   -3 }, /* (210) func_list ::= func_list NK_COMMA func */
  {  257,   -4 }, /* (211) func ::= function_name NK_LP expression_list NK_RP */
  {  207,   -6 }, /* (212) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */
  {  207,   -6 }, /* (213) cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */
  {  207,   -4 }, /* (214) cmd ::= DROP TOPIC exists_opt topic_name */
  {  207,   -2 }, /* (215) cmd ::= DESC full_table_name */
  {  207,   -2 }, /* (216) cmd ::= DESCRIBE full_table_name */
  {  207,   -3 }, /* (217) cmd ::= RESET QUERY CACHE */
  {  207,   -4 }, /* (218) cmd ::= EXPLAIN analyze_opt explain_options query_expression */
  {  261,    0 }, /* (219) analyze_opt ::= */
  {  261,   -1 }, /* (220) analyze_opt ::= ANALYZE */
  {  262,    0 }, /* (221) explain_options ::= */
  {  262,   -3 }, /* (222) explain_options ::= explain_options VERBOSE NK_BOOL */
  {  262,   -3 }, /* (223) explain_options ::= explain_options RATIO NK_FLOAT */
  {  207,   -6 }, /* (224) cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */
  {  207,   -9 }, /* (225) cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */
  {  207,   -3 }, /* (226) cmd ::= DROP FUNCTION function_name */
  {  263,    0 }, /* (227) agg_func_opt ::= */
  {  263,   -1 }, /* (228) agg_func_opt ::= AGGREGATE */
  {  264,    0 }, /* (229) bufsize_opt ::= */
  {  264,   -2 }, /* (230) bufsize_opt ::= BUFSIZE NK_INTEGER */
  {  207,   -7 }, /* (231) cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression */
  {  207,   -3 }, /* (232) cmd ::= DROP STREAM stream_name */
  {  207,   -3 }, /* (233) cmd ::= KILL CONNECTION NK_INTEGER */
  {  207,   -3 }, /* (234) cmd ::= KILL QUERY NK_INTEGER */
  {  207,   -4 }, /* (235) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */
  {  207,   -4 }, /* (236) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */
  {  207,   -3 }, /* (237) cmd ::= SPLIT VGROUP NK_INTEGER */
  {  266,   -2 }, /* (238) dnode_list ::= DNODE NK_INTEGER */
  {  266,   -3 }, /* (239) dnode_list ::= dnode_list DNODE NK_INTEGER */
  {  207,   -3 }, /* (240) cmd ::= SYNCDB db_name REPLICA */
  {  207,   -1 }, /* (241) cmd ::= query_expression */
  {  210,   -1 }, /* (242) literal ::= NK_INTEGER */
  {  210,   -1 }, /* (243) literal ::= NK_FLOAT */
  {  210,   -1 }, /* (244) literal ::= NK_STRING */
  {  210,   -1 }, /* (245) literal ::= NK_BOOL */
  {  210,   -2 }, /* (246) literal ::= TIMESTAMP NK_STRING */
  {  210,   -1 }, /* (247) literal ::= duration_literal */
  {  210,   -1 }, /* (248) literal ::= NULL */
  {  255,   -1 }, /* (249) duration_literal ::= NK_VARIABLE */
  {  267,   -1 }, /* (250) signed ::= NK_INTEGER */
  {  267,   -2 }, /* (251) signed ::= NK_PLUS NK_INTEGER */
  {  267,   -2 }, /* (252) signed ::= NK_MINUS NK_INTEGER */
  {  267,   -1 }, /* (253) signed ::= NK_FLOAT */
  {  267,   -2 }, /* (254) signed ::= NK_PLUS NK_FLOAT */
  {  267,   -2 }, /* (255) signed ::= NK_MINUS NK_FLOAT */
  {  268,   -1 }, /* (256) signed_literal ::= signed */
  {  268,   -1 }, /* (257) signed_literal ::= NK_STRING */
  {  268,   -1 }, /* (258) signed_literal ::= NK_BOOL */
  {  268,   -2 }, /* (259) signed_literal ::= TIMESTAMP NK_STRING */
  {  268,   -1 }, /* (260) signed_literal ::= duration_literal */
  {  268,   -1 }, /* (261) signed_literal ::= NULL */
  {  238,   -1 }, /* (262) literal_list ::= signed_literal */
  {  238,   -3 }, /* (263) literal_list ::= literal_list NK_COMMA signed_literal */
  {  216,   -1 }, /* (264) db_name ::= NK_ID */
  {  241,   -1 }, /* (265) table_name ::= NK_ID */
  {  234,   -1 }, /* (266) column_name ::= NK_ID */
  {  251,   -1 }, /* (267) function_name ::= NK_ID */
  {  251,   -1 }, /* (268) function_name ::= FIRST */
  {  251,   -1 }, /* (269) function_name ::= LAST */
  {  269,   -1 }, /* (270) table_alias ::= NK_ID */
  {  270,   -1 }, /* (271) column_alias ::= NK_ID */
  {  212,   -1 }, /* (272) user_name ::= NK_ID */
  {  252,   -1 }, /* (273) index_name ::= NK_ID */
  {  259,   -1 }, /* (274) topic_name ::= NK_ID */
  {  265,   -1 }, /* (275) stream_name ::= NK_ID */
  {  271,   -1 }, /* (276) expression ::= literal */
  {  271,   -1 }, /* (277) expression ::= pseudo_column */
  {  271,   -1 }, /* (278) expression ::= column_reference */
  {  271,   -4 }, /* (279) expression ::= function_name NK_LP expression_list NK_RP */
  {  271,   -4 }, /* (280) expression ::= function_name NK_LP NK_STAR NK_RP */
  {  271,   -1 }, /* (281) expression ::= subquery */
  {  271,   -3 }, /* (282) expression ::= NK_LP expression NK_RP */
  {  271,   -2 }, /* (283) expression ::= NK_PLUS expression */
  {  271,   -2 }, /* (284) expression ::= NK_MINUS expression */
  {  271,   -3 }, /* (285) expression ::= expression NK_PLUS expression */
  {  271,   -3 }, /* (286) expression ::= expression NK_MINUS expression */
  {  271,   -3 }, /* (287) expression ::= expression NK_STAR expression */
  {  271,   -3 }, /* (288) expression ::= expression NK_SLASH expression */
  {  271,   -3 }, /* (289) expression ::= expression NK_REM expression */
  {  258,   -1 }, /* (290) expression_list ::= expression */
  {  258,   -3 }, /* (291) expression_list ::= expression_list NK_COMMA expression */
  {  273,   -1 }, /* (292) column_reference ::= column_name */
  {  273,   -3 }, /* (293) column_reference ::= table_name NK_DOT column_name */
  {  272,   -1 }, /* (294) pseudo_column ::= NOW */
  {  272,   -1 }, /* (295) pseudo_column ::= ROWTS */
  {  272,   -1 }, /* (296) pseudo_column ::= TBNAME */
  {  272,   -1 }, /* (297) pseudo_column ::= QSTARTTS */
  {  272,   -1 }, /* (298) pseudo_column ::= QENDTS */
  {  272,   -1 }, /* (299) pseudo_column ::= WSTARTTS */
  {  272,   -1 }, /* (300) pseudo_column ::= WENDTS */
  {  272,   -1 }, /* (301) pseudo_column ::= WDURATION */
  {  275,   -3 }, /* (302) predicate ::= expression compare_op expression */
  {  275,   -5 }, /* (303) predicate ::= expression BETWEEN expression AND expression */
  {  275,   -6 }, /* (304) predicate ::= expression NOT BETWEEN expression AND expression */
  {  275,   -3 }, /* (305) predicate ::= expression IS NULL */
  {  275,   -4 }, /* (306) predicate ::= expression IS NOT NULL */
  {  275,   -3 }, /* (307) predicate ::= expression in_op in_predicate_value */
  {  276,   -1 }, /* (308) compare_op ::= NK_LT */
  {  276,   -1 }, /* (309) compare_op ::= NK_GT */
  {  276,   -1 }, /* (310) compare_op ::= NK_LE */
  {  276,   -1 }, /* (311) compare_op ::= NK_GE */
  {  276,   -1 }, /* (312) compare_op ::= NK_NE */
  {  276,   -1 }, /* (313) compare_op ::= NK_EQ */
  {  276,   -1 }, /* (314) compare_op ::= LIKE */
  {  276,   -2 }, /* (315) compare_op ::= NOT LIKE */
  {  276,   -1 }, /* (316) compare_op ::= MATCH */
  {  276,   -1 }, /* (317) compare_op ::= NMATCH */
  {  277,   -1 }, /* (318) in_op ::= IN */
  {  277,   -2 }, /* (319) in_op ::= NOT IN */
  {  278,   -3 }, /* (320) in_predicate_value ::= NK_LP expression_list NK_RP */
  {  279,   -1 }, /* (321) boolean_value_expression ::= boolean_primary */
  {  279,   -2 }, /* (322) boolean_value_expression ::= NOT boolean_primary */
  {  279,   -3 }, /* (323) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */
  {  279,   -3 }, /* (324) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */
  {  280,   -1 }, /* (325) boolean_primary ::= predicate */
  {  280,   -3 }, /* (326) boolean_primary ::= NK_LP boolean_value_expression NK_RP */
  {  281,   -1 }, /* (327) common_expression ::= expression */
  {  281,   -1 }, /* (328) common_expression ::= boolean_value_expression */
  {  282,   -2 }, /* (329) from_clause ::= FROM table_reference_list */
  {  283,   -1 }, /* (330) table_reference_list ::= table_reference */
  {  283,   -3 }, /* (331) table_reference_list ::= table_reference_list NK_COMMA table_reference */
  {  284,   -1 }, /* (332) table_reference ::= table_primary */
  {  284,   -1 }, /* (333) table_reference ::= joined_table */
  {  285,   -2 }, /* (334) table_primary ::= table_name alias_opt */
  {  285,   -4 }, /* (335) table_primary ::= db_name NK_DOT table_name alias_opt */
  {  285,   -2 }, /* (336) table_primary ::= subquery alias_opt */
  {  285,   -1 }, /* (337) table_primary ::= parenthesized_joined_table */
  {  287,    0 }, /* (338) alias_opt ::= */
  {  287,   -1 }, /* (339) alias_opt ::= table_alias */
  {  287,   -2 }, /* (340) alias_opt ::= AS table_alias */
  {  288,   -3 }, /* (341) parenthesized_joined_table ::= NK_LP joined_table NK_RP */
  {  288,   -3 }, /* (342) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */
  {  286,   -6 }, /* (343) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */
  {  289,    0 }, /* (344) join_type ::= */
  {  289,   -1 }, /* (345) join_type ::= INNER */
  {  291,   -9 }, /* (346) query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */
  {  292,    0 }, /* (347) set_quantifier_opt ::= */
  {  292,   -1 }, /* (348) set_quantifier_opt ::= DISTINCT */
  {  292,   -1 }, /* (349) set_quantifier_opt ::= ALL */
  {  293,   -1 }, /* (350) select_list ::= NK_STAR */
  {  293,   -1 }, /* (351) select_list ::= select_sublist */
  {  299,   -1 }, /* (352) select_sublist ::= select_item */
  {  299,   -3 }, /* (353) select_sublist ::= select_sublist NK_COMMA select_item */
  {  300,   -1 }, /* (354) select_item ::= common_expression */
  {  300,   -2 }, /* (355) select_item ::= common_expression column_alias */
  {  300,   -3 }, /* (356) select_item ::= common_expression AS column_alias */
  {  300,   -3 }, /* (357) select_item ::= table_name NK_DOT NK_STAR */
  {  294,    0 }, /* (358) where_clause_opt ::= */
  {  294,   -2 }, /* (359) where_clause_opt ::= WHERE search_condition */
  {  295,    0 }, /* (360) partition_by_clause_opt ::= */
  {  295,   -3 }, /* (361) partition_by_clause_opt ::= PARTITION BY expression_list */
  {  296,    0 }, /* (362) twindow_clause_opt ::= */
  {  296,   -6 }, /* (363) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */
  {  296,   -4 }, /* (364) twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */
  {  296,   -6 }, /* (365) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */
  {  296,   -8 }, /* (366) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */
  {  256,    0 }, /* (367) sliding_opt ::= */
  {  256,   -4 }, /* (368) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */
  {  301,    0 }, /* (369) fill_opt ::= */
  {  301,   -4 }, /* (370) fill_opt ::= FILL NK_LP fill_mode NK_RP */
  {  301,   -6 }, /* (371) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */
  {  302,   -1 }, /* (372) fill_mode ::= NONE */
  {  302,   -1 }, /* (373) fill_mode ::= PREV */
  {  302,   -1 }, /* (374) fill_mode ::= NULL */
  {  302,   -1 }, /* (375) fill_mode ::= LINEAR */
  {  302,   -1 }, /* (376) fill_mode ::= NEXT */
  {  297,    0 }, /* (377) group_by_clause_opt ::= */
  {  297,   -3 }, /* (378) group_by_clause_opt ::= GROUP BY group_by_list */
  {  303,   -1 }, /* (379) group_by_list ::= expression */
  {  303,   -3 }, /* (380) group_by_list ::= group_by_list NK_COMMA expression */
  {  298,    0 }, /* (381) having_clause_opt ::= */
  {  298,   -2 }, /* (382) having_clause_opt ::= HAVING search_condition */
  {  260,   -4 }, /* (383) query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */
  {  304,   -1 }, /* (384) query_expression_body ::= query_primary */
  {  304,   -4 }, /* (385) query_expression_body ::= query_expression_body UNION ALL query_expression_body */
  {  308,   -1 }, /* (386) query_primary ::= query_specification */
  {  305,    0 }, /* (387) order_by_clause_opt ::= */
  {  305,   -3 }, /* (388) order_by_clause_opt ::= ORDER BY sort_specification_list */
  {  306,    0 }, /* (389) slimit_clause_opt ::= */
  {  306,   -2 }, /* (390) slimit_clause_opt ::= SLIMIT NK_INTEGER */
  {  306,   -4 }, /* (391) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */
  {  306,   -4 }, /* (392) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */
  {  307,    0 }, /* (393) limit_clause_opt ::= */
  {  307,   -2 }, /* (394) limit_clause_opt ::= LIMIT NK_INTEGER */
  {  307,   -4 }, /* (395) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */
  {  307,   -4 }, /* (396) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */
  {  274,   -3 }, /* (397) subquery ::= NK_LP query_expression NK_RP */
  {  290,   -1 }, /* (398) search_condition ::= common_expression */
  {  309,   -1 }, /* (399) sort_specification_list ::= sort_specification */
  {  309,   -3 }, /* (400) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */
  {  310,   -3 }, /* (401) sort_specification ::= expression ordering_specification_opt null_ordering_opt */
  {  311,    0 }, /* (402) ordering_specification_opt ::= */
  {  311,   -1 }, /* (403) ordering_specification_opt ::= ASC */
  {  311,   -1 }, /* (404) ordering_specification_opt ::= DESC */
  {  312,    0 }, /* (405) null_ordering_opt ::= */
  {  312,   -2 }, /* (406) null_ordering_opt ::= NULLS FIRST */
  {  312,   -2 }, /* (407) null_ordering_opt ::= NULLS LAST */
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519
};

static void yy_accept(yyParser*);  /* Forward Declaration */

/*
** Perform a reduce action and the shift that must immediately
** follow the reduce.
**
** The yyLookahead and yyLookaheadToken parameters provide reduce actions
** access to the lookahead token (if any).  The yyLookahead will be YYNOCODE
** if the lookahead token has already been consumed.  As this procedure is
** only called from one place, optimizing compilers will in-line it, which
** means that the extra parameters have no performance impact.
*/
static YYACTIONTYPE yy_reduce(
  yyParser *yypParser,         /* The parser */
  unsigned int yyruleno,       /* Number of the rule by which to reduce */
  int yyLookahead,             /* Lookahead token, or YYNOCODE if none */
X
Xiaoyu Wang 已提交
2520 2521
  ParseTOKENTYPE yyLookaheadToken  /* Value of the lookahead token */
  ParseCTX_PDECL                   /* %extra_context */
2522 2523 2524 2525 2526
){
  int yygoto;                     /* The next state */
  YYACTIONTYPE yyact;             /* The next action */
  yyStackEntry *yymsp;            /* The top of the parser's stack */
  int yysize;                     /* Amount to pop the stack */
X
Xiaoyu Wang 已提交
2527
  ParseARG_FETCH
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
  (void)yyLookahead;
  (void)yyLookaheadToken;
  yymsp = yypParser->yytos;
#ifndef NDEBUG
  if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){
    yysize = yyRuleInfo[yyruleno].nrhs;
    if( yysize ){
      fprintf(yyTraceFILE, "%sReduce %d [%s], go to state %d.\n",
        yyTracePrompt,
        yyruleno, yyRuleName[yyruleno], yymsp[yysize].stateno);
    }else{
      fprintf(yyTraceFILE, "%sReduce %d [%s].\n",
        yyTracePrompt, yyruleno, yyRuleName[yyruleno]);
    }
  }
#endif /* NDEBUG */

  /* Check that the stack is large enough to grow by a single entry
  ** if the RHS of the rule is empty.  This ensures that there is room
  ** enough on the stack to push the LHS value */
  if( yyRuleInfo[yyruleno].nrhs==0 ){
#ifdef YYTRACKMAXSTACKDEPTH
    if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){
      yypParser->yyhwm++;
      assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack));
    }
#endif
#if YYSTACKDEPTH>0 
    if( yypParser->yytos>=yypParser->yystackEnd ){
      yyStackOverflow(yypParser);
      /* The call to yyStackOverflow() above pops the stack until it is
      ** empty, causing the main parser loop to exit.  So the return value
      ** is never used and does not matter. */
      return 0;
    }
#else
    if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){
      if( yyGrowStack(yypParser) ){
        yyStackOverflow(yypParser);
        /* The call to yyStackOverflow() above pops the stack until it is
        ** empty, causing the main parser loop to exit.  So the return value
        ** is never used and does not matter. */
        return 0;
      }
      yymsp = yypParser->yytos;
    }
#endif
  }

  switch( yyruleno ){
  /* Beginning here are the reduction cases.  A typical example
  ** follows:
  **   case 0:
  **  #line <lineno> <grammarfile>
  **     { ... }           // User supplied code
  **  #line <lineno> <thisfile>
  **     break;
  */
/********** Begin reduce actions **********************************************/
        YYMINORTYPE yylhsminor;
2588
      case 0: /* cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */
2589
{ pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); }
2590
  yy_destructor(yypParser,208,&yymsp[0].minor);
2591
        break;
2592 2593
      case 1: /* cmd ::= ALTER ACCOUNT NK_ID alter_account_options */
{ pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); }
2594
  yy_destructor(yypParser,209,&yymsp[0].minor);
2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607
        break;
      case 2: /* account_options ::= */
{ }
        break;
      case 3: /* account_options ::= account_options PPS literal */
      case 4: /* account_options ::= account_options TSERIES literal */ yytestcase(yyruleno==4);
      case 5: /* account_options ::= account_options STORAGE literal */ yytestcase(yyruleno==5);
      case 6: /* account_options ::= account_options STREAMS literal */ yytestcase(yyruleno==6);
      case 7: /* account_options ::= account_options QTIME literal */ yytestcase(yyruleno==7);
      case 8: /* account_options ::= account_options DBS literal */ yytestcase(yyruleno==8);
      case 9: /* account_options ::= account_options USERS literal */ yytestcase(yyruleno==9);
      case 10: /* account_options ::= account_options CONNS literal */ yytestcase(yyruleno==10);
      case 11: /* account_options ::= account_options STATE literal */ yytestcase(yyruleno==11);
2608
{  yy_destructor(yypParser,208,&yymsp[-2].minor);
2609
{ }
2610
  yy_destructor(yypParser,210,&yymsp[0].minor);
2611
}
2612
        break;
2613
      case 12: /* alter_account_options ::= alter_account_option */
2614
{  yy_destructor(yypParser,211,&yymsp[0].minor);
2615 2616 2617
{ }
}
        break;
2618
      case 13: /* alter_account_options ::= alter_account_options alter_account_option */
2619
{  yy_destructor(yypParser,209,&yymsp[-1].minor);
2620
{ }
2621
  yy_destructor(yypParser,211,&yymsp[0].minor);
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
}
        break;
      case 14: /* alter_account_option ::= PASS literal */
      case 15: /* alter_account_option ::= PPS literal */ yytestcase(yyruleno==15);
      case 16: /* alter_account_option ::= TSERIES literal */ yytestcase(yyruleno==16);
      case 17: /* alter_account_option ::= STORAGE literal */ yytestcase(yyruleno==17);
      case 18: /* alter_account_option ::= STREAMS literal */ yytestcase(yyruleno==18);
      case 19: /* alter_account_option ::= QTIME literal */ yytestcase(yyruleno==19);
      case 20: /* alter_account_option ::= DBS literal */ yytestcase(yyruleno==20);
      case 21: /* alter_account_option ::= USERS literal */ yytestcase(yyruleno==21);
      case 22: /* alter_account_option ::= CONNS literal */ yytestcase(yyruleno==22);
      case 23: /* alter_account_option ::= STATE literal */ yytestcase(yyruleno==23);
2634
{ }
2635
  yy_destructor(yypParser,210,&yymsp[0].minor);
2636
        break;
2637
      case 24: /* cmd ::= CREATE USER user_name PASS NK_STRING */
2638
{ pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); }
2639
        break;
2640
      case 25: /* cmd ::= ALTER USER user_name PASS NK_STRING */
2641
{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy21, TSDB_ALTER_USER_PASSWD, &yymsp[0].minor.yy0); }
2642
        break;
2643
      case 26: /* cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */
2644
{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy21, TSDB_ALTER_USER_PRIVILEGES, &yymsp[0].minor.yy0); }
2645
        break;
2646
      case 27: /* cmd ::= DROP USER user_name */
2647
{ pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy21); }
2648
        break;
X
Xiaoyu Wang 已提交
2649
      case 28: /* cmd ::= CREATE DNODE dnode_endpoint */
2650
{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy21, NULL); }
2651
        break;
X
Xiaoyu Wang 已提交
2652
      case 29: /* cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */
2653
{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); }
2654
        break;
X
Xiaoyu Wang 已提交
2655
      case 30: /* cmd ::= DROP DNODE NK_INTEGER */
2656
{ pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy0); }
2657
        break;
X
Xiaoyu Wang 已提交
2658
      case 31: /* cmd ::= DROP DNODE dnode_endpoint */
2659
{ pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy21); }
2660
        break;
X
Xiaoyu Wang 已提交
2661
      case 32: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING */
2662 2663
{ pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, NULL); }
        break;
X
Xiaoyu Wang 已提交
2664
      case 33: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */
2665 2666
{ pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-2].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); }
        break;
X
Xiaoyu Wang 已提交
2667
      case 34: /* cmd ::= ALTER ALL DNODES NK_STRING */
2668 2669
{ pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[0].minor.yy0, NULL); }
        break;
X
Xiaoyu Wang 已提交
2670
      case 35: /* cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */
2671 2672
{ pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); }
        break;
X
Xiaoyu Wang 已提交
2673 2674 2675
      case 36: /* dnode_endpoint ::= NK_STRING */
      case 37: /* dnode_host_name ::= NK_ID */ yytestcase(yyruleno==37);
      case 38: /* dnode_host_name ::= NK_IPTOKEN */ yytestcase(yyruleno==38);
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
      case 264: /* db_name ::= NK_ID */ yytestcase(yyruleno==264);
      case 265: /* table_name ::= NK_ID */ yytestcase(yyruleno==265);
      case 266: /* column_name ::= NK_ID */ yytestcase(yyruleno==266);
      case 267: /* function_name ::= NK_ID */ yytestcase(yyruleno==267);
      case 268: /* function_name ::= FIRST */ yytestcase(yyruleno==268);
      case 269: /* function_name ::= LAST */ yytestcase(yyruleno==269);
      case 270: /* table_alias ::= NK_ID */ yytestcase(yyruleno==270);
      case 271: /* column_alias ::= NK_ID */ yytestcase(yyruleno==271);
      case 272: /* user_name ::= NK_ID */ yytestcase(yyruleno==272);
      case 273: /* index_name ::= NK_ID */ yytestcase(yyruleno==273);
      case 274: /* topic_name ::= NK_ID */ yytestcase(yyruleno==274);
      case 275: /* stream_name ::= NK_ID */ yytestcase(yyruleno==275);
{ yylhsminor.yy21 = yymsp[0].minor.yy0; }
  yymsp[0].minor.yy21 = yylhsminor.yy21;
X
Xiaoyu Wang 已提交
2690 2691
        break;
      case 39: /* cmd ::= ALTER LOCAL NK_STRING */
2692 2693
{ pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[0].minor.yy0, NULL); }
        break;
X
Xiaoyu Wang 已提交
2694
      case 40: /* cmd ::= ALTER LOCAL NK_STRING NK_STRING */
2695 2696
{ pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); }
        break;
X
Xiaoyu Wang 已提交
2697
      case 41: /* cmd ::= CREATE QNODE ON DNODE NK_INTEGER */
2698
{ pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_QNODE_STMT, &yymsp[0].minor.yy0); }
X
Xiaoyu Wang 已提交
2699
        break;
X
Xiaoyu Wang 已提交
2700
      case 42: /* cmd ::= DROP QNODE ON DNODE NK_INTEGER */
2701
{ pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_QNODE_STMT, &yymsp[0].minor.yy0); }
2702
        break;
2703 2704
      case 43: /* cmd ::= CREATE BNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_BNODE_STMT, &yymsp[0].minor.yy0); }
X
Xiaoyu Wang 已提交
2705
        break;
2706 2707
      case 44: /* cmd ::= DROP BNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_BNODE_STMT, &yymsp[0].minor.yy0); }
X
Xiaoyu Wang 已提交
2708
        break;
2709 2710
      case 45: /* cmd ::= CREATE SNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_SNODE_STMT, &yymsp[0].minor.yy0); }
2711
        break;
2712 2713
      case 46: /* cmd ::= DROP SNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_SNODE_STMT, &yymsp[0].minor.yy0); }
2714
        break;
2715 2716
      case 47: /* cmd ::= CREATE MNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_MNODE_STMT, &yymsp[0].minor.yy0); }
2717
        break;
2718 2719
      case 48: /* cmd ::= DROP MNODE ON DNODE NK_INTEGER */
{ pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_MNODE_STMT, &yymsp[0].minor.yy0); }
2720
        break;
2721 2722
      case 49: /* cmd ::= CREATE DATABASE not_exists_opt db_name db_options */
{ pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy173, &yymsp[-1].minor.yy21, yymsp[0].minor.yy564); }
2723
        break;
2724 2725
      case 50: /* cmd ::= DROP DATABASE exists_opt db_name */
{ pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy173, &yymsp[0].minor.yy21); }
2726
        break;
2727 2728
      case 51: /* cmd ::= USE db_name */
{ pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy21); }
2729
        break;
2730 2731
      case 52: /* cmd ::= ALTER DATABASE db_name alter_db_options */
{ pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy21, yymsp[0].minor.yy564); }
2732
        break;
2733 2734
      case 53: /* not_exists_opt ::= IF NOT EXISTS */
{ yymsp[-2].minor.yy173 = true; }
2735
        break;
2736 2737 2738 2739 2740 2741
      case 54: /* not_exists_opt ::= */
      case 56: /* exists_opt ::= */ yytestcase(yyruleno==56);
      case 219: /* analyze_opt ::= */ yytestcase(yyruleno==219);
      case 227: /* agg_func_opt ::= */ yytestcase(yyruleno==227);
      case 347: /* set_quantifier_opt ::= */ yytestcase(yyruleno==347);
{ yymsp[1].minor.yy173 = false; }
2742
        break;
2743 2744
      case 55: /* exists_opt ::= IF EXISTS */
{ yymsp[-1].minor.yy173 = true; }
X
Xiaoyu Wang 已提交
2745
        break;
2746 2747
      case 57: /* db_options ::= */
{ yymsp[1].minor.yy564 = createDatabaseOptions(pCxt); }
2748
        break;
2749 2750 2751
      case 58: /* db_options ::= db_options BLOCKS NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pNumOfBlocks = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2752
        break;
2753 2754 2755
      case 59: /* db_options ::= db_options CACHE NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCacheBlockSize = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2756
        break;
2757 2758 2759
      case 60: /* db_options ::= db_options CACHELAST NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCachelast = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2760
        break;
2761 2762 2763
      case 61: /* db_options ::= db_options COMP NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCompressionLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2764
        break;
2765 2766 2767
      case 62: /* db_options ::= db_options DAYS NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pDaysPerFile = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2768
        break;
2769 2770 2771
      case 63: /* db_options ::= db_options DAYS NK_VARIABLE */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pDaysPerFile = (SValueNode*)createDurationValueNode(pCxt, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2772
        break;
2773 2774 2775
      case 64: /* db_options ::= db_options FSYNC NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pFsyncPeriod = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2776
        break;
2777 2778 2779
      case 65: /* db_options ::= db_options MAXROWS NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pMaxRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2780
        break;
2781 2782 2783
      case 66: /* db_options ::= db_options MINROWS NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pMinRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2784
        break;
2785 2786 2787 2788
      case 67: /* db_options ::= db_options KEEP integer_list */
      case 68: /* db_options ::= db_options KEEP variable_list */ yytestcase(yyruleno==68);
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pKeep = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
2789
        break;
2790 2791 2792
      case 69: /* db_options ::= db_options PRECISION NK_STRING */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pPrecision = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2793
        break;
2794 2795 2796
      case 70: /* db_options ::= db_options QUORUM NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pQuorum = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2797
        break;
2798 2799 2800
      case 71: /* db_options ::= db_options REPLICA NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pReplica = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2801
        break;
2802 2803 2804
      case 72: /* db_options ::= db_options TTL NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2805
        break;
2806 2807 2808 2809 2810 2811 2812
      case 73: /* db_options ::= db_options WAL NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pWalLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 74: /* db_options ::= db_options VGROUPS NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pNumOfVgroups = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2813
        break;
2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933
      case 75: /* db_options ::= db_options SINGLE_STABLE NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pSingleStable = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 76: /* db_options ::= db_options STREAM_MODE NK_INTEGER */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pStreamMode = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 77: /* db_options ::= db_options RETENTIONS retention_list */
{ ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pRetentions = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 78: /* alter_db_options ::= alter_db_option */
{ yylhsminor.yy564 = createDatabaseOptions(pCxt); yylhsminor.yy564 = setDatabaseAlterOption(pCxt, yylhsminor.yy564, &yymsp[0].minor.yy289); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 79: /* alter_db_options ::= alter_db_options alter_db_option */
{ yylhsminor.yy564 = setDatabaseAlterOption(pCxt, yymsp[-1].minor.yy564, &yymsp[0].minor.yy289); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
        break;
      case 80: /* alter_db_option ::= BLOCKS NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_BLOCKS; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 81: /* alter_db_option ::= FSYNC NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 82: /* alter_db_option ::= KEEP integer_list */
      case 83: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==83);
{ yymsp[-1].minor.yy289.type = DB_OPTION_KEEP; yymsp[-1].minor.yy289.pList = yymsp[0].minor.yy476; }
        break;
      case 84: /* alter_db_option ::= WAL NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_WAL; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 85: /* alter_db_option ::= QUORUM NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_QUORUM; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 86: /* alter_db_option ::= CACHELAST NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_CACHELAST; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 87: /* alter_db_option ::= REPLICA NK_INTEGER */
{ yymsp[-1].minor.yy289.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 88: /* integer_list ::= NK_INTEGER */
{ yylhsminor.yy476 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
        break;
      case 89: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */
      case 239: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==239);
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); }
  yymsp[-2].minor.yy476 = yylhsminor.yy476;
        break;
      case 90: /* variable_list ::= NK_VARIABLE */
{ yylhsminor.yy476 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
        break;
      case 91: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); }
  yymsp[-2].minor.yy476 = yylhsminor.yy476;
        break;
      case 92: /* retention_list ::= retention */
      case 112: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==112);
      case 115: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==115);
      case 122: /* column_def_list ::= column_def */ yytestcase(yyruleno==122);
      case 165: /* col_name_list ::= col_name */ yytestcase(yyruleno==165);
      case 200: /* func_name_list ::= func_name */ yytestcase(yyruleno==200);
      case 209: /* func_list ::= func */ yytestcase(yyruleno==209);
      case 262: /* literal_list ::= signed_literal */ yytestcase(yyruleno==262);
      case 352: /* select_sublist ::= select_item */ yytestcase(yyruleno==352);
      case 399: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==399);
{ yylhsminor.yy476 = createNodeList(pCxt, yymsp[0].minor.yy564); }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
        break;
      case 93: /* retention_list ::= retention_list NK_COMMA retention */
      case 123: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==123);
      case 166: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==166);
      case 201: /* func_name_list ::= func_name_list NK_COMMA col_name */ yytestcase(yyruleno==201);
      case 210: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==210);
      case 263: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==263);
      case 353: /* select_sublist ::= select_sublist NK_COMMA select_item */ yytestcase(yyruleno==353);
      case 400: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==400);
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, yymsp[0].minor.yy564); }
  yymsp[-2].minor.yy476 = yylhsminor.yy476;
        break;
      case 94: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */
{ yylhsminor.yy564 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 95: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */
      case 97: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==97);
{ pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy173, yymsp[-5].minor.yy564, yymsp[-3].minor.yy476, yymsp[-1].minor.yy476, yymsp[0].minor.yy564); }
        break;
      case 96: /* cmd ::= CREATE TABLE multi_create_clause */
{ pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy476); }
        break;
      case 98: /* cmd ::= DROP TABLE multi_drop_clause */
{ pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy476); }
        break;
      case 99: /* cmd ::= DROP STABLE exists_opt full_table_name */
{ pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy173, yymsp[0].minor.yy564); }
        break;
      case 100: /* cmd ::= ALTER TABLE alter_table_clause */
      case 101: /* cmd ::= ALTER STABLE alter_table_clause */ yytestcase(yyruleno==101);
      case 241: /* cmd ::= query_expression */ yytestcase(yyruleno==241);
{ pCxt->pRootNode = yymsp[0].minor.yy564; }
        break;
      case 102: /* alter_table_clause ::= full_table_name alter_table_options */
{ yylhsminor.yy564 = createAlterTableOption(pCxt, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
        break;
      case 103: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */
{ yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
        break;
      case 104: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */
{ yylhsminor.yy564 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy564, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy21); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
        break;
      case 105: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */
{ yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
2934
        break;
2935 2936 2937
      case 106: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */
{ yylhsminor.yy564 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
2938
        break;
2939 2940 2941
      case 107: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */
{ yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
2942
        break;
2943 2944 2945
      case 108: /* alter_table_clause ::= full_table_name DROP TAG column_name */
{ yylhsminor.yy564 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy564, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy21); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
2946
        break;
2947 2948 2949
      case 109: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */
{ yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
2950
        break;
2951 2952 2953
      case 110: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */
{ yylhsminor.yy564 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
2954
        break;
2955 2956 2957
      case 111: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */
{ yylhsminor.yy564 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy564, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564); }
  yymsp[-5].minor.yy564 = yylhsminor.yy564;
2958
        break;
2959 2960 2961 2962
      case 113: /* multi_create_clause ::= multi_create_clause create_subtable_clause */
      case 116: /* multi_drop_clause ::= multi_drop_clause drop_table_clause */ yytestcase(yyruleno==116);
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-1].minor.yy476, yymsp[0].minor.yy564); }
  yymsp[-1].minor.yy476 = yylhsminor.yy476;
2963
        break;
2964 2965 2966
      case 114: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */
{ yylhsminor.yy564 = createCreateSubTableClause(pCxt, yymsp[-8].minor.yy173, yymsp[-7].minor.yy564, yymsp[-5].minor.yy564, yymsp[-4].minor.yy476, yymsp[-1].minor.yy476); }
  yymsp[-8].minor.yy564 = yylhsminor.yy564;
2967
        break;
2968 2969 2970
      case 117: /* drop_table_clause ::= exists_opt full_table_name */
{ yylhsminor.yy564 = createDropTableClause(pCxt, yymsp[-1].minor.yy173, yymsp[0].minor.yy564); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
2971
        break;
2972 2973 2974 2975 2976 2977
      case 118: /* specific_tags_opt ::= */
      case 149: /* tags_def_opt ::= */ yytestcase(yyruleno==149);
      case 360: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==360);
      case 377: /* group_by_clause_opt ::= */ yytestcase(yyruleno==377);
      case 387: /* order_by_clause_opt ::= */ yytestcase(yyruleno==387);
{ yymsp[1].minor.yy476 = NULL; }
2978
        break;
2979 2980
      case 119: /* specific_tags_opt ::= NK_LP col_name_list NK_RP */
{ yymsp[-2].minor.yy476 = yymsp[-1].minor.yy476; }
2981
        break;
2982 2983 2984
      case 120: /* full_table_name ::= table_name */
{ yylhsminor.yy564 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy21, NULL); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
2985
        break;
2986 2987 2988
      case 121: /* full_table_name ::= db_name NK_DOT table_name */
{ yylhsminor.yy564 = createRealTableNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21, NULL); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
2989
        break;
2990 2991 2992
      case 124: /* column_def ::= column_name type_name */
{ yylhsminor.yy564 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288, NULL); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
2993
        break;
2994 2995 2996
      case 125: /* column_def ::= column_name type_name COMMENT NK_STRING */
{ yylhsminor.yy564 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-2].minor.yy288, &yymsp[0].minor.yy0); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
2997
        break;
2998 2999
      case 126: /* type_name ::= BOOL */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BOOL); }
3000
        break;
3001 3002
      case 127: /* type_name ::= TINYINT */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_TINYINT); }
3003
        break;
3004 3005
      case 128: /* type_name ::= SMALLINT */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_SMALLINT); }
3006
        break;
3007 3008 3009
      case 129: /* type_name ::= INT */
      case 130: /* type_name ::= INTEGER */ yytestcase(yyruleno==130);
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_INT); }
3010
        break;
3011 3012
      case 131: /* type_name ::= BIGINT */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BIGINT); }
3013
        break;
3014 3015
      case 132: /* type_name ::= FLOAT */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_FLOAT); }
3016
        break;
3017 3018
      case 133: /* type_name ::= DOUBLE */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_DOUBLE); }
3019
        break;
3020 3021
      case 134: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */
{ yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); }
3022
        break;
3023 3024
      case 135: /* type_name ::= TIMESTAMP */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); }
3025
        break;
3026 3027
      case 136: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */
{ yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); }
3028
        break;
3029 3030
      case 137: /* type_name ::= TINYINT UNSIGNED */
{ yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UTINYINT); }
3031
        break;
3032 3033
      case 138: /* type_name ::= SMALLINT UNSIGNED */
{ yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_USMALLINT); }
3034
        break;
3035 3036
      case 139: /* type_name ::= INT UNSIGNED */
{ yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UINT); }
3037
        break;
3038 3039
      case 140: /* type_name ::= BIGINT UNSIGNED */
{ yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UBIGINT); }
3040
        break;
3041 3042
      case 141: /* type_name ::= JSON */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_JSON); }
3043
        break;
3044 3045
      case 142: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */
{ yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); }
3046
        break;
3047 3048
      case 143: /* type_name ::= MEDIUMBLOB */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); }
3049
        break;
3050 3051
      case 144: /* type_name ::= BLOB */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BLOB); }
3052
        break;
3053 3054
      case 145: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */
{ yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); }
3055
        break;
3056 3057
      case 146: /* type_name ::= DECIMAL */
{ yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); }
3058
        break;
3059 3060
      case 147: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */
{ yymsp[-3].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); }
3061
        break;
3062 3063
      case 148: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */
{ yymsp[-5].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); }
3064
        break;
3065 3066 3067 3068
      case 150: /* tags_def_opt ::= tags_def */
      case 351: /* select_list ::= select_sublist */ yytestcase(yyruleno==351);
{ yylhsminor.yy476 = yymsp[0].minor.yy476; }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
3069
        break;
3070 3071
      case 151: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */
{ yymsp[-3].minor.yy476 = yymsp[-1].minor.yy476; }
3072
        break;
3073 3074
      case 152: /* table_options ::= */
{ yymsp[1].minor.yy564 = createTableOptions(pCxt); }
3075
        break;
3076 3077 3078
      case 153: /* table_options ::= table_options COMMENT NK_STRING */
{ ((STableOptions*)yymsp[-2].minor.yy564)->pComments = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3079
        break;
3080 3081 3082
      case 154: /* table_options ::= table_options KEEP integer_list */
{ ((STableOptions*)yymsp[-2].minor.yy564)->pKeep = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3083
        break;
3084 3085 3086
      case 155: /* table_options ::= table_options TTL NK_INTEGER */
{ ((STableOptions*)yymsp[-2].minor.yy564)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3087
        break;
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125
      case 156: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */
{ ((STableOptions*)yymsp[-4].minor.yy564)->pSma = yymsp[-1].minor.yy476; yylhsminor.yy564 = yymsp[-4].minor.yy564; }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
        break;
      case 157: /* table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */
{ ((STableOptions*)yymsp[-4].minor.yy564)->pFuncs = yymsp[-1].minor.yy476; yylhsminor.yy564 = yymsp[-4].minor.yy564; }
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
        break;
      case 158: /* table_options ::= table_options FILE_FACTOR NK_FLOAT */
{ ((STableOptions*)yymsp[-2].minor.yy564)->pFilesFactor = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 159: /* table_options ::= table_options DELAY NK_INTEGER */
{ ((STableOptions*)yymsp[-2].minor.yy564)->pDelay = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 160: /* alter_table_options ::= alter_table_option */
{ yylhsminor.yy564 = createTableOptions(pCxt); yylhsminor.yy564 = setTableAlterOption(pCxt, yylhsminor.yy564, &yymsp[0].minor.yy289); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 161: /* alter_table_options ::= alter_table_options alter_table_option */
{ yylhsminor.yy564 = setTableAlterOption(pCxt, yymsp[-1].minor.yy564, &yymsp[0].minor.yy289); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
        break;
      case 162: /* alter_table_option ::= COMMENT NK_STRING */
{ yymsp[-1].minor.yy289.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); }
        break;
      case 163: /* alter_table_option ::= KEEP integer_list */
{ yymsp[-1].minor.yy289.type = TABLE_OPTION_KEEP; yymsp[-1].minor.yy289.pList = yymsp[0].minor.yy476; }
        break;
      case 164: /* alter_table_option ::= TTL NK_INTEGER */
{ yymsp[-1].minor.yy289.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 167: /* col_name ::= column_name */
{ yylhsminor.yy564 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy21); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 168: /* cmd ::= SHOW DNODES */
X
Xiaoyu Wang 已提交
3126
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT, NULL, NULL); }
3127
        break;
3128
      case 169: /* cmd ::= SHOW USERS */
X
Xiaoyu Wang 已提交
3129
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT, NULL, NULL); }
3130
        break;
3131
      case 170: /* cmd ::= SHOW DATABASES */
X
Xiaoyu Wang 已提交
3132
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT, NULL, NULL); }
3133
        break;
3134 3135
      case 171: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); }
3136
        break;
3137 3138
      case 172: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); }
3139
        break;
3140 3141
      case 173: /* cmd ::= SHOW db_name_cond_opt VGROUPS */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy564, NULL); }
3142
        break;
3143
      case 174: /* cmd ::= SHOW MNODES */
X
Xiaoyu Wang 已提交
3144
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT, NULL, NULL); }
3145
        break;
3146
      case 175: /* cmd ::= SHOW MODULES */
X
Xiaoyu Wang 已提交
3147
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MODULES_STMT, NULL, NULL); }
3148
        break;
3149
      case 176: /* cmd ::= SHOW QNODES */
X
Xiaoyu Wang 已提交
3150
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT, NULL, NULL); }
3151
        break;
3152
      case 177: /* cmd ::= SHOW FUNCTIONS */
X
Xiaoyu Wang 已提交
3153
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT, NULL, NULL); }
3154
        break;
3155 3156
      case 178: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); }
3157
        break;
3158
      case 179: /* cmd ::= SHOW STREAMS */
X
Xiaoyu Wang 已提交
3159
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT, NULL, NULL); }
3160
        break;
3161
      case 180: /* cmd ::= SHOW ACCOUNTS */
3162 3163
{ pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); }
        break;
3164
      case 181: /* cmd ::= SHOW APPS */
3165 3166
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT, NULL, NULL); }
        break;
3167
      case 182: /* cmd ::= SHOW CONNECTIONS */
3168 3169
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT, NULL, NULL); }
        break;
3170
      case 183: /* cmd ::= SHOW LICENCE */
3171 3172
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCE_STMT, NULL, NULL); }
        break;
3173 3174
      case 184: /* cmd ::= SHOW CREATE DATABASE db_name */
{ pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy21); }
3175
        break;
3176 3177
      case 185: /* cmd ::= SHOW CREATE TABLE full_table_name */
{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy564); }
3178
        break;
3179 3180
      case 186: /* cmd ::= SHOW CREATE STABLE full_table_name */
{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy564); }
3181
        break;
3182
      case 187: /* cmd ::= SHOW QUERIES */
3183 3184
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT, NULL, NULL); }
        break;
3185
      case 188: /* cmd ::= SHOW SCORES */
3186 3187
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT, NULL, NULL); }
        break;
3188
      case 189: /* cmd ::= SHOW TOPICS */
3189 3190
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT, NULL, NULL); }
        break;
3191
      case 190: /* cmd ::= SHOW VARIABLES */
3192
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLE_STMT, NULL, NULL); }
X
Xiaoyu Wang 已提交
3193
        break;
3194 3195 3196 3197 3198 3199 3200 3201 3202
      case 191: /* cmd ::= SHOW BNODES */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT, NULL, NULL); }
        break;
      case 192: /* cmd ::= SHOW SNODES */
{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT, NULL, NULL); }
        break;
      case 193: /* db_name_cond_opt ::= */
      case 198: /* from_db_opt ::= */ yytestcase(yyruleno==198);
{ yymsp[1].minor.yy564 = createDefaultDatabaseCondValue(pCxt); }
X
Xiaoyu Wang 已提交
3203
        break;
3204 3205 3206
      case 194: /* db_name_cond_opt ::= db_name NK_DOT */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy21); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3207
        break;
3208 3209 3210 3211 3212 3213 3214 3215 3216 3217
      case 195: /* like_pattern_opt ::= */
      case 206: /* index_options ::= */ yytestcase(yyruleno==206);
      case 358: /* where_clause_opt ::= */ yytestcase(yyruleno==358);
      case 362: /* twindow_clause_opt ::= */ yytestcase(yyruleno==362);
      case 367: /* sliding_opt ::= */ yytestcase(yyruleno==367);
      case 369: /* fill_opt ::= */ yytestcase(yyruleno==369);
      case 381: /* having_clause_opt ::= */ yytestcase(yyruleno==381);
      case 389: /* slimit_clause_opt ::= */ yytestcase(yyruleno==389);
      case 393: /* limit_clause_opt ::= */ yytestcase(yyruleno==393);
{ yymsp[1].minor.yy564 = NULL; }
X
Xiaoyu Wang 已提交
3218
        break;
3219 3220
      case 196: /* like_pattern_opt ::= LIKE NK_STRING */
{ yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); }
X
Xiaoyu Wang 已提交
3221
        break;
3222 3223 3224
      case 197: /* table_name_cond ::= table_name */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy21); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3225
        break;
3226 3227
      case 199: /* from_db_opt ::= FROM db_name */
{ yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy21); }
X
Xiaoyu Wang 已提交
3228
        break;
3229 3230 3231
      case 202: /* func_name ::= function_name */
{ yylhsminor.yy564 = createFunctionNode(pCxt, &yymsp[0].minor.yy21, NULL); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3232
        break;
3233 3234
      case 203: /* cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */
{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy173, &yymsp[-3].minor.yy21, &yymsp[-1].minor.yy21, NULL, yymsp[0].minor.yy564); }
X
Xiaoyu Wang 已提交
3235
        break;
3236 3237
      case 204: /* cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */
{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_FULLTEXT, yymsp[-6].minor.yy173, &yymsp[-5].minor.yy21, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476, NULL); }
X
Xiaoyu Wang 已提交
3238
        break;
3239 3240
      case 205: /* cmd ::= DROP INDEX exists_opt index_name ON table_name */
{ pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21); }
X
Xiaoyu Wang 已提交
3241
        break;
3242 3243
      case 207: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */
{ yymsp[-8].minor.yy564 = createIndexOption(pCxt, yymsp[-6].minor.yy476, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), NULL, yymsp[0].minor.yy564); }
X
Xiaoyu Wang 已提交
3244
        break;
3245 3246
      case 208: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */
{ yymsp[-10].minor.yy564 = createIndexOption(pCxt, yymsp[-8].minor.yy476, releaseRawExprNode(pCxt, yymsp[-4].minor.yy564), releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), yymsp[0].minor.yy564); }
X
Xiaoyu Wang 已提交
3247
        break;
3248 3249 3250
      case 211: /* func ::= function_name NK_LP expression_list NK_RP */
{ yylhsminor.yy564 = createFunctionNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3251
        break;
3252 3253
      case 212: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */
{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564, NULL); }
X
Xiaoyu Wang 已提交
3254
        break;
3255 3256
      case 213: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */
{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, NULL, &yymsp[0].minor.yy21); }
3257
        break;
3258 3259
      case 214: /* cmd ::= DROP TOPIC exists_opt topic_name */
{ pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy173, &yymsp[0].minor.yy21); }
3260
        break;
3261 3262 3263
      case 215: /* cmd ::= DESC full_table_name */
      case 216: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==216);
{ pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy564); }
3264
        break;
3265
      case 217: /* cmd ::= RESET QUERY CACHE */
3266 3267
{ pCxt->pRootNode = createResetQueryCacheStmt(pCxt); }
        break;
3268 3269
      case 218: /* cmd ::= EXPLAIN analyze_opt explain_options query_expression */
{ pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy173, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); }
3270
        break;
3271 3272 3273 3274
      case 220: /* analyze_opt ::= ANALYZE */
      case 228: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==228);
      case 348: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==348);
{ yymsp[0].minor.yy173 = true; }
3275
        break;
3276 3277
      case 221: /* explain_options ::= */
{ yymsp[1].minor.yy564 = createDefaultExplainOptions(pCxt); }
3278
        break;
3279 3280 3281
      case 222: /* explain_options ::= explain_options VERBOSE NK_BOOL */
{ yylhsminor.yy564 = setExplainVerbose(pCxt, yymsp[-2].minor.yy564, &yymsp[0].minor.yy0); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3282
        break;
3283 3284 3285
      case 223: /* explain_options ::= explain_options RATIO NK_FLOAT */
{ yylhsminor.yy564 = setExplainRatio(pCxt, yymsp[-2].minor.yy564, &yymsp[0].minor.yy0); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3286
        break;
3287 3288
      case 224: /* cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */
{ pCxt->pRootNode = createCompactStmt(pCxt, yymsp[-1].minor.yy476); }
3289
        break;
3290 3291
      case 225: /* cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */
{ pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-7].minor.yy173, &yymsp[-5].minor.yy21, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy288, yymsp[0].minor.yy620); }
3292
        break;
3293 3294
      case 226: /* cmd ::= DROP FUNCTION function_name */
{ pCxt->pRootNode = createDropFunctionStmt(pCxt, &yymsp[0].minor.yy21); }
3295
        break;
3296 3297
      case 229: /* bufsize_opt ::= */
{ yymsp[1].minor.yy620 = 0; }
3298
        break;
3299 3300
      case 230: /* bufsize_opt ::= BUFSIZE NK_INTEGER */
{ yymsp[-1].minor.yy620 = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
3301
        break;
3302 3303
      case 231: /* cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression */
{ pCxt->pRootNode = createCreateStreamStmt(pCxt, &yymsp[-4].minor.yy21, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564); }
3304
        break;
3305 3306
      case 232: /* cmd ::= DROP STREAM stream_name */
{ pCxt->pRootNode = createDropStreamStmt(pCxt, &yymsp[0].minor.yy21); }
3307
        break;
3308
      case 233: /* cmd ::= KILL CONNECTION NK_INTEGER */
3309 3310
{ pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); }
        break;
3311
      case 234: /* cmd ::= KILL QUERY NK_INTEGER */
3312 3313
{ pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_QUERY_STMT, &yymsp[0].minor.yy0); }
        break;
3314
      case 235: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */
3315 3316
{ pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); }
        break;
3317 3318
      case 236: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */
{ pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy476); }
3319
        break;
3320
      case 237: /* cmd ::= SPLIT VGROUP NK_INTEGER */
3321 3322
{ pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); }
        break;
3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
      case 238: /* dnode_list ::= DNODE NK_INTEGER */
{ yymsp[-1].minor.yy476 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); }
        break;
      case 240: /* cmd ::= SYNCDB db_name REPLICA */
{ pCxt->pRootNode = createSyncdbStmt(pCxt, &yymsp[-1].minor.yy21); }
        break;
      case 242: /* literal ::= NK_INTEGER */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 243: /* literal ::= NK_FLOAT */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 244: /* literal ::= NK_STRING */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 245: /* literal ::= NK_BOOL */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 246: /* literal ::= TIMESTAMP NK_STRING */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
        break;
      case 247: /* literal ::= duration_literal */
      case 256: /* signed_literal ::= signed */ yytestcase(yyruleno==256);
      case 276: /* expression ::= literal */ yytestcase(yyruleno==276);
      case 277: /* expression ::= pseudo_column */ yytestcase(yyruleno==277);
      case 278: /* expression ::= column_reference */ yytestcase(yyruleno==278);
      case 281: /* expression ::= subquery */ yytestcase(yyruleno==281);
      case 321: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==321);
      case 325: /* boolean_primary ::= predicate */ yytestcase(yyruleno==325);
      case 327: /* common_expression ::= expression */ yytestcase(yyruleno==327);
      case 328: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==328);
      case 330: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==330);
      case 332: /* table_reference ::= table_primary */ yytestcase(yyruleno==332);
      case 333: /* table_reference ::= joined_table */ yytestcase(yyruleno==333);
      case 337: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==337);
      case 384: /* query_expression_body ::= query_primary */ yytestcase(yyruleno==384);
      case 386: /* query_primary ::= query_specification */ yytestcase(yyruleno==386);
{ yylhsminor.yy564 = yymsp[0].minor.yy564; }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 248: /* literal ::= NULL */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 249: /* duration_literal ::= NK_VARIABLE */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 250: /* signed ::= NK_INTEGER */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 251: /* signed ::= NK_PLUS NK_INTEGER */
{ yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); }
        break;
      case 252: /* signed ::= NK_MINUS NK_INTEGER */
X
Xiaoyu Wang 已提交
3384 3385 3386
{ 
                                                                                    SToken t = yymsp[-1].minor.yy0;
                                                                                    t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z;
3387
                                                                                    yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t);
X
Xiaoyu Wang 已提交
3388
                                                                                  }
3389
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3390
        break;
3391 3392 3393
      case 253: /* signed ::= NK_FLOAT */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3394
        break;
3395 3396
      case 254: /* signed ::= NK_PLUS NK_FLOAT */
{ yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); }
X
Xiaoyu Wang 已提交
3397
        break;
3398
      case 255: /* signed ::= NK_MINUS NK_FLOAT */
X
Xiaoyu Wang 已提交
3399 3400 3401
{ 
                                                                                    SToken t = yymsp[-1].minor.yy0;
                                                                                    t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z;
3402
                                                                                    yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t);
X
Xiaoyu Wang 已提交
3403
                                                                                  }
3404
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3405
        break;
3406 3407 3408
      case 257: /* signed_literal ::= NK_STRING */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
3409
        break;
3410 3411 3412
      case 258: /* signed_literal ::= NK_BOOL */
{ yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
3413
        break;
3414 3415
      case 259: /* signed_literal ::= TIMESTAMP NK_STRING */
{ yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); }
3416
        break;
3417
      case 260: /* signed_literal ::= duration_literal */
3418
      case 354: /* select_item ::= common_expression */ yytestcase(yyruleno==354);
3419 3420 3421
      case 398: /* search_condition ::= common_expression */ yytestcase(yyruleno==398);
{ yylhsminor.yy564 = releaseRawExprNode(pCxt, yymsp[0].minor.yy564); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3422
        break;
3423 3424
      case 261: /* signed_literal ::= NULL */
{ yymsp[0].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL); }
X
Xiaoyu Wang 已提交
3425
        break;
3426 3427 3428
      case 279: /* expression ::= function_name NK_LP expression_list NK_RP */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy21, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476)); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3429
        break;
3430 3431 3432
      case 280: /* expression ::= function_name NK_LP NK_STAR NK_RP */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy21, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy21, createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[-1].minor.yy0)))); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3433
        break;
3434 3435 3436 3437
      case 282: /* expression ::= NK_LP expression NK_RP */
      case 326: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==326);
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
X
Xiaoyu Wang 已提交
3438
        break;
3439
      case 283: /* expression ::= NK_PLUS expression */
3440
{
3441 3442
                                                                                    SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy564));
3443
                                                                                  }
3444
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3445
        break;
3446
      case 284: /* expression ::= NK_MINUS expression */
3447
{
3448 3449
                                                                                    SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy564), NULL));
3450
                                                                                  }
3451
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3452
        break;
3453
      case 285: /* expression ::= expression NK_PLUS expression */
3454
{
3455 3456 3457
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); 
3458
                                                                                  }
3459
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3460
        break;
3461
      case 286: /* expression ::= expression NK_MINUS expression */
3462
{
3463 3464 3465
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); 
3466
                                                                                  }
3467
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3468
        break;
3469
      case 287: /* expression ::= expression NK_STAR expression */
3470
{
3471 3472 3473
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); 
3474
                                                                                  }
3475
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3476
        break;
3477
      case 288: /* expression ::= expression NK_SLASH expression */
3478
{
3479 3480 3481
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); 
3482
                                                                                  }
3483
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3484
        break;
3485
      case 289: /* expression ::= expression NK_REM expression */
3486
{
3487 3488 3489
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MOD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); 
3490
                                                                                  }
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 290: /* expression_list ::= expression */
{ yylhsminor.yy476 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564)); }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
        break;
      case 291: /* expression_list ::= expression_list NK_COMMA expression */
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, releaseRawExprNode(pCxt, yymsp[0].minor.yy564)); }
  yymsp[-2].minor.yy476 = yylhsminor.yy476;
        break;
      case 292: /* column_reference ::= column_name */
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy21, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy21)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 293: /* column_reference ::= table_name NK_DOT column_name */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21, createColumnNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21)); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
        break;
      case 294: /* pseudo_column ::= NOW */
      case 295: /* pseudo_column ::= ROWTS */ yytestcase(yyruleno==295);
      case 296: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==296);
      case 297: /* pseudo_column ::= QSTARTTS */ yytestcase(yyruleno==297);
      case 298: /* pseudo_column ::= QENDTS */ yytestcase(yyruleno==298);
      case 299: /* pseudo_column ::= WSTARTTS */ yytestcase(yyruleno==299);
      case 300: /* pseudo_column ::= WENDTS */ yytestcase(yyruleno==300);
      case 301: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==301);
{ yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); }
  yymsp[0].minor.yy564 = yylhsminor.yy564;
        break;
      case 302: /* predicate ::= expression compare_op expression */
      case 307: /* predicate ::= expression in_op in_predicate_value */ yytestcase(yyruleno==307);
3522
{
3523 3524 3525
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy468, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564)));
3526
                                                                                  }
3527
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3528
        break;
3529
      case 303: /* predicate ::= expression BETWEEN expression AND expression */
3530
{
3531 3532 3533
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy564), releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564)));
3534
                                                                                  }
3535
  yymsp[-4].minor.yy564 = yylhsminor.yy564;
3536
        break;
3537
      case 304: /* predicate ::= expression NOT BETWEEN expression AND expression */
3538
{
3539 3540 3541
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[-5].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564)));
3542
                                                                                  }
3543
  yymsp[-5].minor.yy564 = yylhsminor.yy564;
3544
        break;
3545
      case 305: /* predicate ::= expression IS NULL */
3546
{
3547 3548
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), NULL));
3549
                                                                                  }
3550
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3551
        break;
3552
      case 306: /* predicate ::= expression IS NOT NULL */
3553
{
3554 3555
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), NULL));
3556
                                                                                  }
3557
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
3558
        break;
3559 3560
      case 308: /* compare_op ::= NK_LT */
{ yymsp[0].minor.yy468 = OP_TYPE_LOWER_THAN; }
3561
        break;
3562 3563
      case 309: /* compare_op ::= NK_GT */
{ yymsp[0].minor.yy468 = OP_TYPE_GREATER_THAN; }
3564
        break;
3565 3566
      case 310: /* compare_op ::= NK_LE */
{ yymsp[0].minor.yy468 = OP_TYPE_LOWER_EQUAL; }
3567
        break;
3568 3569
      case 311: /* compare_op ::= NK_GE */
{ yymsp[0].minor.yy468 = OP_TYPE_GREATER_EQUAL; }
3570
        break;
3571 3572
      case 312: /* compare_op ::= NK_NE */
{ yymsp[0].minor.yy468 = OP_TYPE_NOT_EQUAL; }
3573
        break;
3574 3575
      case 313: /* compare_op ::= NK_EQ */
{ yymsp[0].minor.yy468 = OP_TYPE_EQUAL; }
3576
        break;
3577 3578
      case 314: /* compare_op ::= LIKE */
{ yymsp[0].minor.yy468 = OP_TYPE_LIKE; }
3579
        break;
3580 3581
      case 315: /* compare_op ::= NOT LIKE */
{ yymsp[-1].minor.yy468 = OP_TYPE_NOT_LIKE; }
3582
        break;
3583 3584
      case 316: /* compare_op ::= MATCH */
{ yymsp[0].minor.yy468 = OP_TYPE_MATCH; }
3585
        break;
3586 3587
      case 317: /* compare_op ::= NMATCH */
{ yymsp[0].minor.yy468 = OP_TYPE_NMATCH; }
3588
        break;
3589 3590
      case 318: /* in_op ::= IN */
{ yymsp[0].minor.yy468 = OP_TYPE_IN; }
3591
        break;
3592 3593
      case 319: /* in_op ::= NOT IN */
{ yymsp[-1].minor.yy468 = OP_TYPE_NOT_IN; }
3594
        break;
3595 3596 3597
      case 320: /* in_predicate_value ::= NK_LP expression_list NK_RP */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy476)); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3598
        break;
3599
      case 322: /* boolean_value_expression ::= NOT boolean_primary */
3600
{
3601 3602
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy564), NULL));
3603
                                                                                  }
3604
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3605
        break;
3606
      case 323: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */
3607
{
3608 3609 3610
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564)));
3611
                                                                                  }
3612
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3613
        break;
3614
      case 324: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */
3615
{
3616 3617 3618
                                                                                    SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564);
                                                                                    SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564);
                                                                                    yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564)));
3619
                                                                                  }
3620
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3621
        break;
3622 3623 3624 3625
      case 329: /* from_clause ::= FROM table_reference_list */
      case 359: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==359);
      case 382: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==382);
{ yymsp[-1].minor.yy564 = yymsp[0].minor.yy564; }
3626
        break;
3627 3628 3629
      case 331: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */
{ yylhsminor.yy564 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy564, yymsp[0].minor.yy564, NULL); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3630
        break;
3631 3632 3633
      case 334: /* table_primary ::= table_name alias_opt */
{ yylhsminor.yy564 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3634
        break;
3635 3636 3637
      case 335: /* table_primary ::= db_name NK_DOT table_name alias_opt */
{ yylhsminor.yy564 = createRealTableNode(pCxt, &yymsp[-3].minor.yy21, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
3638
        break;
3639 3640 3641
      case 336: /* table_primary ::= subquery alias_opt */
{ yylhsminor.yy564 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564), &yymsp[0].minor.yy21); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3642
        break;
3643 3644
      case 338: /* alias_opt ::= */
{ yymsp[1].minor.yy21 = nil_token;  }
3645
        break;
3646 3647 3648
      case 339: /* alias_opt ::= table_alias */
{ yylhsminor.yy21 = yymsp[0].minor.yy21; }
  yymsp[0].minor.yy21 = yylhsminor.yy21;
3649
        break;
3650 3651
      case 340: /* alias_opt ::= AS table_alias */
{ yymsp[-1].minor.yy21 = yymsp[0].minor.yy21; }
3652
        break;
3653 3654 3655
      case 341: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */
      case 342: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==342);
{ yymsp[-2].minor.yy564 = yymsp[-1].minor.yy564; }
3656
        break;
3657 3658 3659
      case 343: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */
{ yylhsminor.yy564 = createJoinTableNode(pCxt, yymsp[-4].minor.yy440, yymsp[-5].minor.yy564, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); }
  yymsp[-5].minor.yy564 = yylhsminor.yy564;
3660
        break;
3661 3662
      case 344: /* join_type ::= */
{ yymsp[1].minor.yy440 = JOIN_TYPE_INNER; }
3663
        break;
3664 3665
      case 345: /* join_type ::= INNER */
{ yymsp[0].minor.yy440 = JOIN_TYPE_INNER; }
3666
        break;
3667
      case 346: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */
3668
{ 
3669 3670 3671 3672 3673 3674
                                                                                    yymsp[-8].minor.yy564 = createSelectStmt(pCxt, yymsp[-7].minor.yy173, yymsp[-6].minor.yy476, yymsp[-5].minor.yy564);
                                                                                    yymsp[-8].minor.yy564 = addWhereClause(pCxt, yymsp[-8].minor.yy564, yymsp[-4].minor.yy564);
                                                                                    yymsp[-8].minor.yy564 = addPartitionByClause(pCxt, yymsp[-8].minor.yy564, yymsp[-3].minor.yy476);
                                                                                    yymsp[-8].minor.yy564 = addWindowClauseClause(pCxt, yymsp[-8].minor.yy564, yymsp[-2].minor.yy564);
                                                                                    yymsp[-8].minor.yy564 = addGroupByClause(pCxt, yymsp[-8].minor.yy564, yymsp[-1].minor.yy476);
                                                                                    yymsp[-8].minor.yy564 = addHavingClause(pCxt, yymsp[-8].minor.yy564, yymsp[0].minor.yy564);
3675 3676
                                                                                  }
        break;
3677 3678
      case 349: /* set_quantifier_opt ::= ALL */
{ yymsp[0].minor.yy173 = false; }
3679
        break;
3680 3681
      case 350: /* select_list ::= NK_STAR */
{ yymsp[0].minor.yy476 = NULL; }
3682
        break;
3683 3684 3685
      case 355: /* select_item ::= common_expression column_alias */
{ yylhsminor.yy564 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564), &yymsp[0].minor.yy21); }
  yymsp[-1].minor.yy564 = yylhsminor.yy564;
3686
        break;
3687 3688 3689
      case 356: /* select_item ::= common_expression AS column_alias */
{ yylhsminor.yy564 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), &yymsp[0].minor.yy21); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3690
        break;
3691 3692 3693
      case 357: /* select_item ::= table_name NK_DOT NK_STAR */
{ yylhsminor.yy564 = createColumnNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3694
        break;
3695 3696 3697 3698
      case 361: /* partition_by_clause_opt ::= PARTITION BY expression_list */
      case 378: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==378);
      case 388: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==388);
{ yymsp[-2].minor.yy476 = yymsp[0].minor.yy476; }
3699
        break;
3700 3701
      case 363: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */
{ yymsp[-5].minor.yy564 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); }
3702
        break;
3703 3704
      case 364: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */
{ yymsp[-3].minor.yy564 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); }
3705
        break;
3706 3707
      case 365: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */
{ yymsp[-5].minor.yy564 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), NULL, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); }
3708
        break;
3709 3710
      case 366: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */
{ yymsp[-7].minor.yy564 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy564), releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), yymsp[-1].minor.yy564, yymsp[0].minor.yy564); }
3711
        break;
3712 3713
      case 368: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */
{ yymsp[-3].minor.yy564 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy564); }
3714
        break;
3715 3716
      case 370: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */
{ yymsp[-3].minor.yy564 = createFillNode(pCxt, yymsp[-1].minor.yy268, NULL); }
3717
        break;
3718 3719
      case 371: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */
{ yymsp[-5].minor.yy564 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy476)); }
3720
        break;
3721 3722
      case 372: /* fill_mode ::= NONE */
{ yymsp[0].minor.yy268 = FILL_MODE_NONE; }
3723
        break;
3724 3725
      case 373: /* fill_mode ::= PREV */
{ yymsp[0].minor.yy268 = FILL_MODE_PREV; }
3726
        break;
3727 3728
      case 374: /* fill_mode ::= NULL */
{ yymsp[0].minor.yy268 = FILL_MODE_NULL; }
3729
        break;
3730 3731
      case 375: /* fill_mode ::= LINEAR */
{ yymsp[0].minor.yy268 = FILL_MODE_LINEAR; }
3732
        break;
3733 3734
      case 376: /* fill_mode ::= NEXT */
{ yymsp[0].minor.yy268 = FILL_MODE_NEXT; }
3735
        break;
3736 3737 3738
      case 379: /* group_by_list ::= expression */
{ yylhsminor.yy476 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); }
  yymsp[0].minor.yy476 = yylhsminor.yy476;
3739
        break;
3740 3741 3742
      case 380: /* group_by_list ::= group_by_list NK_COMMA expression */
{ yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); }
  yymsp[-2].minor.yy476 = yylhsminor.yy476;
3743
        break;
3744
      case 383: /* query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */
3745
{ 
3746 3747 3748
                                                                                    yylhsminor.yy564 = addOrderByClause(pCxt, yymsp[-3].minor.yy564, yymsp[-2].minor.yy476);
                                                                                    yylhsminor.yy564 = addSlimitClause(pCxt, yylhsminor.yy564, yymsp[-1].minor.yy564);
                                                                                    yylhsminor.yy564 = addLimitClause(pCxt, yylhsminor.yy564, yymsp[0].minor.yy564);
3749
                                                                                  }
3750
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
3751
        break;
3752 3753 3754
      case 385: /* query_expression_body ::= query_expression_body UNION ALL query_expression_body */
{ yylhsminor.yy564 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy564, yymsp[0].minor.yy564); }
  yymsp[-3].minor.yy564 = yylhsminor.yy564;
3755
        break;
3756 3757 3758
      case 390: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */
      case 394: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==394);
{ yymsp[-1].minor.yy564 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); }
3759
        break;
3760 3761 3762
      case 391: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */
      case 395: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==395);
{ yymsp[-3].minor.yy564 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); }
3763
        break;
3764 3765 3766
      case 392: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */
      case 396: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==396);
{ yymsp[-3].minor.yy564 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); }
3767
        break;
3768 3769 3770
      case 397: /* subquery ::= NK_LP query_expression NK_RP */
{ yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy564); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3771
        break;
3772 3773 3774
      case 401: /* sort_specification ::= expression ordering_specification_opt null_ordering_opt */
{ yylhsminor.yy564 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), yymsp[-1].minor.yy256, yymsp[0].minor.yy525); }
  yymsp[-2].minor.yy564 = yylhsminor.yy564;
3775
        break;
3776 3777
      case 402: /* ordering_specification_opt ::= */
{ yymsp[1].minor.yy256 = ORDER_ASC; }
3778
        break;
3779 3780
      case 403: /* ordering_specification_opt ::= ASC */
{ yymsp[0].minor.yy256 = ORDER_ASC; }
3781
        break;
3782 3783
      case 404: /* ordering_specification_opt ::= DESC */
{ yymsp[0].minor.yy256 = ORDER_DESC; }
3784
        break;
3785 3786
      case 405: /* null_ordering_opt ::= */
{ yymsp[1].minor.yy525 = NULL_ORDER_DEFAULT; }
3787
        break;
3788 3789
      case 406: /* null_ordering_opt ::= NULLS FIRST */
{ yymsp[-1].minor.yy525 = NULL_ORDER_FIRST; }
3790
        break;
3791 3792
      case 407: /* null_ordering_opt ::= NULLS LAST */
{ yymsp[-1].minor.yy525 = NULL_ORDER_LAST; }
3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824
        break;
      default:
        break;
/********** End reduce actions ************************************************/
  };
  assert( yyruleno<sizeof(yyRuleInfo)/sizeof(yyRuleInfo[0]) );
  yygoto = yyRuleInfo[yyruleno].lhs;
  yysize = yyRuleInfo[yyruleno].nrhs;
  yyact = yy_find_reduce_action(yymsp[yysize].stateno,(YYCODETYPE)yygoto);

  /* There are no SHIFTREDUCE actions on nonterminals because the table
  ** generator has simplified them to pure REDUCE actions. */
  assert( !(yyact>YY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) );

  /* It is not possible for a REDUCE to be followed by an error */
  assert( yyact!=YY_ERROR_ACTION );

  yymsp += yysize+1;
  yypParser->yytos = yymsp;
  yymsp->stateno = (YYACTIONTYPE)yyact;
  yymsp->major = (YYCODETYPE)yygoto;
  yyTraceShift(yypParser, yyact, "... then shift");
  return yyact;
}

/*
** The following code executes when the parse fails
*/
#ifndef YYNOERRORRECOVERY
static void yy_parse_failed(
  yyParser *yypParser           /* The parser */
){
X
Xiaoyu Wang 已提交
3825 3826
  ParseARG_FETCH
  ParseCTX_FETCH
3827 3828 3829 3830 3831 3832 3833 3834 3835 3836
#ifndef NDEBUG
  if( yyTraceFILE ){
    fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt);
  }
#endif
  while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser);
  /* Here code is inserted which will be executed whenever the
  ** parser fails */
/************ Begin %parse_failure code ***************************************/
/************ End %parse_failure code *****************************************/
X
Xiaoyu Wang 已提交
3837 3838
  ParseARG_STORE /* Suppress warning about unused %extra_argument variable */
  ParseCTX_STORE
3839 3840 3841 3842 3843 3844 3845 3846 3847
}
#endif /* YYNOERRORRECOVERY */

/*
** The following code executes when a syntax error first occurs.
*/
static void yy_syntax_error(
  yyParser *yypParser,           /* The parser */
  int yymajor,                   /* The major type of the error token */
X
Xiaoyu Wang 已提交
3848
  ParseTOKENTYPE yyminor         /* The minor type of the error token */
3849
){
X
Xiaoyu Wang 已提交
3850 3851
  ParseARG_FETCH
  ParseCTX_FETCH
3852 3853
#define TOKEN yyminor
/************ Begin %syntax_error code ****************************************/
3854 3855 3856 3857 3858 3859 3860 3861

  if (pCxt->valid) {
    if(TOKEN.z) {
      generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_SYNTAX_ERROR, TOKEN.z);
    } else {
      generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INCOMPLETE_SQL);
    }
    pCxt->valid = false;
3862 3863
  }
/************ End %syntax_error code ******************************************/
X
Xiaoyu Wang 已提交
3864 3865
  ParseARG_STORE /* Suppress warning about unused %extra_argument variable */
  ParseCTX_STORE
3866 3867 3868 3869 3870 3871 3872 3873
}

/*
** The following is executed when the parser accepts
*/
static void yy_accept(
  yyParser *yypParser           /* The parser */
){
X
Xiaoyu Wang 已提交
3874 3875
  ParseARG_FETCH
  ParseCTX_FETCH
3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888
#ifndef NDEBUG
  if( yyTraceFILE ){
    fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt);
  }
#endif
#ifndef YYNOERRORRECOVERY
  yypParser->yyerrcnt = -1;
#endif
  assert( yypParser->yytos==yypParser->yystack );
  /* Here code is inserted which will be executed whenever the
  ** parser accepts */
/*********** Begin %parse_accept code *****************************************/
/*********** End %parse_accept code *******************************************/
X
Xiaoyu Wang 已提交
3889 3890
  ParseARG_STORE /* Suppress warning about unused %extra_argument variable */
  ParseCTX_STORE
3891 3892 3893 3894
}

/* The main parser program.
** The first argument is a pointer to a structure obtained from
X
Xiaoyu Wang 已提交
3895
** "ParseAlloc" which describes the current state of the parser.
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911
** The second argument is the major token number.  The third is
** the minor token.  The fourth optional argument is whatever the
** user wants (and specified in the grammar) and is available for
** use by the action routines.
**
** Inputs:
** <ul>
** <li> A pointer to the parser (an opaque structure.)
** <li> The major token number.
** <li> The minor token number.
** <li> An option argument of a grammar-specified type.
** </ul>
**
** Outputs:
** None.
*/
X
Xiaoyu Wang 已提交
3912
void Parse(
3913 3914
  void *yyp,                   /* The parser */
  int yymajor,                 /* The major token code number */
X
Xiaoyu Wang 已提交
3915 3916
  ParseTOKENTYPE yyminor       /* The value for the token */
  ParseARG_PDECL               /* Optional %extra_argument parameter */
3917 3918 3919 3920 3921 3922 3923 3924 3925 3926
){
  YYMINORTYPE yyminorunion;
  YYACTIONTYPE yyact;   /* The parser action. */
#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
  int yyendofinput;     /* True if we are at the end of input */
#endif
#ifdef YYERRORSYMBOL
  int yyerrorhit = 0;   /* True if yymajor has invoked an error */
#endif
  yyParser *yypParser = (yyParser*)yyp;  /* The parser */
X
Xiaoyu Wang 已提交
3927 3928
  ParseCTX_FETCH
  ParseARG_STORE
3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952

  assert( yypParser->yytos!=0 );
#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
  yyendofinput = (yymajor==0);
#endif

  yyact = yypParser->yytos->stateno;
#ifndef NDEBUG
  if( yyTraceFILE ){
    if( yyact < YY_MIN_REDUCE ){
      fprintf(yyTraceFILE,"%sInput '%s' in state %d\n",
              yyTracePrompt,yyTokenName[yymajor],yyact);
    }else{
      fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n",
              yyTracePrompt,yyTokenName[yymajor],yyact-YY_MIN_REDUCE);
    }
  }
#endif

  do{
    assert( yyact==yypParser->yytos->stateno );
    yyact = yy_find_shift_action((YYCODETYPE)yymajor,yyact);
    if( yyact >= YY_MIN_REDUCE ){
      yyact = yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor,
X
Xiaoyu Wang 已提交
3953
                        yyminor ParseCTX_PARAM);
3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085
    }else if( yyact <= YY_MAX_SHIFTREDUCE ){
      yy_shift(yypParser,yyact,(YYCODETYPE)yymajor,yyminor);
#ifndef YYNOERRORRECOVERY
      yypParser->yyerrcnt--;
#endif
      break;
    }else if( yyact==YY_ACCEPT_ACTION ){
      yypParser->yytos--;
      yy_accept(yypParser);
      return;
    }else{
      assert( yyact == YY_ERROR_ACTION );
      yyminorunion.yy0 = yyminor;
#ifdef YYERRORSYMBOL
      int yymx;
#endif
#ifndef NDEBUG
      if( yyTraceFILE ){
        fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt);
      }
#endif
#ifdef YYERRORSYMBOL
      /* A syntax error has occurred.
      ** The response to an error depends upon whether or not the
      ** grammar defines an error token "ERROR".  
      **
      ** This is what we do if the grammar does define ERROR:
      **
      **  * Call the %syntax_error function.
      **
      **  * Begin popping the stack until we enter a state where
      **    it is legal to shift the error symbol, then shift
      **    the error symbol.
      **
      **  * Set the error count to three.
      **
      **  * Begin accepting and shifting new tokens.  No new error
      **    processing will occur until three tokens have been
      **    shifted successfully.
      **
      */
      if( yypParser->yyerrcnt<0 ){
        yy_syntax_error(yypParser,yymajor,yyminor);
      }
      yymx = yypParser->yytos->major;
      if( yymx==YYERRORSYMBOL || yyerrorhit ){
#ifndef NDEBUG
        if( yyTraceFILE ){
          fprintf(yyTraceFILE,"%sDiscard input token %s\n",
             yyTracePrompt,yyTokenName[yymajor]);
        }
#endif
        yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion);
        yymajor = YYNOCODE;
      }else{
        while( yypParser->yytos >= yypParser->yystack
            && (yyact = yy_find_reduce_action(
                        yypParser->yytos->stateno,
                        YYERRORSYMBOL)) > YY_MAX_SHIFTREDUCE
        ){
          yy_pop_parser_stack(yypParser);
        }
        if( yypParser->yytos < yypParser->yystack || yymajor==0 ){
          yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
          yy_parse_failed(yypParser);
#ifndef YYNOERRORRECOVERY
          yypParser->yyerrcnt = -1;
#endif
          yymajor = YYNOCODE;
        }else if( yymx!=YYERRORSYMBOL ){
          yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor);
        }
      }
      yypParser->yyerrcnt = 3;
      yyerrorhit = 1;
      if( yymajor==YYNOCODE ) break;
      yyact = yypParser->yytos->stateno;
#elif defined(YYNOERRORRECOVERY)
      /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to
      ** do any kind of error recovery.  Instead, simply invoke the syntax
      ** error routine and continue going as if nothing had happened.
      **
      ** Applications can set this macro (for example inside %include) if
      ** they intend to abandon the parse upon the first syntax error seen.
      */
      yy_syntax_error(yypParser,yymajor, yyminor);
      yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
      break;
#else  /* YYERRORSYMBOL is not defined */
      /* This is what we do if the grammar does not define ERROR:
      **
      **  * Report an error message, and throw away the input token.
      **
      **  * If the input token is $, then fail the parse.
      **
      ** As before, subsequent error messages are suppressed until
      ** three input tokens have been successfully shifted.
      */
      if( yypParser->yyerrcnt<=0 ){
        yy_syntax_error(yypParser,yymajor, yyminor);
      }
      yypParser->yyerrcnt = 3;
      yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
      if( yyendofinput ){
        yy_parse_failed(yypParser);
#ifndef YYNOERRORRECOVERY
        yypParser->yyerrcnt = -1;
#endif
      }
      break;
#endif
    }
  }while( yypParser->yytos>yypParser->yystack );
#ifndef NDEBUG
  if( yyTraceFILE ){
    yyStackEntry *i;
    char cDiv = '[';
    fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt);
    for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){
      fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]);
      cDiv = ' ';
    }
    fprintf(yyTraceFILE,"]\n");
  }
#endif
  return;
}

/*
** Return the fallback token corresponding to canonical token iToken, or
** 0 if iToken has no fallback.
*/
X
Xiaoyu Wang 已提交
4086
int ParseFallback(int iToken){
4087 4088 4089 4090 4091 4092 4093 4094 4095
#ifdef YYFALLBACK
  if( iToken<(int)(sizeof(yyFallback)/sizeof(yyFallback[0])) ){
    return yyFallback[iToken];
  }
#else
  (void)iToken;
#endif
  return 0;
}