/* ** 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 #include /************ Begin %include sections from the grammar ************************/ #include #include #include #include #include #define ALLOW_FORBID_FUNC #include "functionMgt.h" #include "nodes.h" #include "parToken.h" #include "ttokendef.h" #include "parAst.h" #define YYSTACKDEPTH 0 /**************** 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. ** ParseTOKENTYPE is the data type used for minor type for terminal ** 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 ** which is ParseTOKENTYPE. The entry in the union ** for terminal symbols is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** 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 ** 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 *****************************************/ #define YYCODETYPE unsigned short int #define YYNOCODE 476 #define YYACTIONTYPE unsigned short int #define ParseTOKENTYPE SToken typedef union { int yyinit; ParseTOKENTYPE yy0; EFillMode yy46; SAlterOption yy53; SToken yy113; EOperatorType yy156; bool yy369; SNodeList* yy432; SNode* yy448; int8_t yy551; ENullOrder yy585; EJoinType yy596; EOrder yy666; SDataType yy728; STokenPair yy777; int32_t yy788; int64_t yy837; } YYMINORTYPE; #ifndef YYSTACKDEPTH #define YYSTACKDEPTH 100 #endif #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 #define YYFALLBACK 1 #define YYNSTATE 762 #define YYNRULE 583 #define YYNTOKEN 330 #define YY_MAX_SHIFT 761 #define YY_MIN_SHIFTREDUCE 1136 #define YY_MAX_SHIFTREDUCE 1718 #define YY_ERROR_ACTION 1719 #define YY_ACCEPT_ACTION 1720 #define YY_NO_ACTION 1721 #define YY_MIN_REDUCE 1722 #define YY_MAX_REDUCE 2304 /************* 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 **********************************************/ #define YY_ACTTAB_COUNT (2874) static const YYACTIONTYPE yy_action[] = { /* 0 */ 2116, 2010, 1881, 396, 434, 168, 636, 1734, 433, 1989, /* 10 */ 672, 162, 48, 46, 1646, 1723, 2008, 642, 374, 1894, /* 20 */ 393, 506, 1495, 440, 41, 40, 1942, 503, 47, 45, /* 30 */ 44, 43, 42, 1576, 1791, 1493, 123, 2134, 1520, 122, /* 40 */ 121, 120, 119, 118, 117, 116, 115, 114, 2279, 2084, /* 50 */ 593, 671, 593, 2275, 194, 2275, 41, 40, 167, 1571, /* 60 */ 47, 45, 44, 43, 42, 19, 1833, 340, 2281, 186, /* 70 */ 2281, 186, 1501, 2276, 619, 2276, 619, 47, 45, 44, /* 80 */ 43, 42, 2115, 501, 654, 2151, 502, 1758, 169, 2117, /* 90 */ 675, 2119, 2120, 670, 182, 665, 1520, 758, 38, 298, /* 100 */ 15, 735, 734, 733, 732, 405, 1931, 731, 730, 144, /* 110 */ 725, 724, 723, 722, 721, 720, 719, 157, 715, 714, /* 120 */ 713, 404, 403, 710, 709, 708, 175, 174, 594, 2241, /* 130 */ 509, 654, 1320, 502, 1758, 123, 1578, 1579, 122, 121, /* 140 */ 120, 119, 118, 117, 116, 115, 114, 1311, 697, 696, /* 150 */ 695, 1315, 694, 1317, 1318, 693, 690, 179, 1326, 687, /* 160 */ 1328, 1329, 684, 681, 51, 640, 1551, 1561, 654, 2219, /* 170 */ 655, 1892, 1577, 1580, 1720, 41, 40, 360, 1993, 47, /* 180 */ 45, 44, 43, 42, 1409, 1410, 1496, 1523, 1494, 133, /* 190 */ 655, 1892, 387, 62, 1715, 2216, 539, 41, 40, 280, /* 200 */ 165, 47, 45, 44, 43, 42, 41, 40, 1894, 191, /* 210 */ 47, 45, 44, 43, 42, 1499, 1500, 1868, 1550, 1553, /* 220 */ 1554, 1555, 1556, 1557, 1558, 1559, 1560, 667, 663, 1569, /* 230 */ 1570, 1572, 1573, 1574, 1575, 2, 48, 46, 1722, 179, /* 240 */ 62, 343, 93, 1518, 393, 408, 1495, 62, 51, 407, /* 250 */ 471, 2116, 2280, 485, 352, 2275, 484, 1576, 1989, 1493, /* 260 */ 1994, 672, 132, 131, 130, 129, 128, 127, 126, 125, /* 270 */ 124, 2279, 454, 1522, 486, 2276, 2278, 456, 432, 396, /* 280 */ 431, 707, 2280, 1571, 1275, 2275, 211, 165, 2134, 19, /* 290 */ 504, 593, 1765, 1714, 2275, 1894, 1501, 1274, 1605, 1685, /* 300 */ 2084, 2279, 671, 196, 2010, 2276, 2277, 430, 618, 2281, /* 310 */ 186, 2275, 518, 2116, 2276, 619, 386, 621, 66, 2007, /* 320 */ 642, 758, 361, 672, 15, 1767, 617, 186, 1264, 655, /* 330 */ 1892, 2276, 619, 2115, 444, 257, 2151, 655, 1892, 110, /* 340 */ 2117, 675, 2119, 2120, 670, 189, 665, 1521, 133, 143, /* 350 */ 2134, 150, 2175, 2204, 1606, 544, 57, 389, 2200, 487, /* 360 */ 1578, 1579, 2084, 482, 671, 1266, 476, 475, 474, 473, /* 370 */ 470, 469, 468, 467, 466, 462, 461, 460, 459, 342, /* 380 */ 451, 450, 449, 613, 446, 445, 359, 1650, 1520, 1521, /* 390 */ 1551, 1561, 189, 1520, 545, 2115, 1577, 1580, 2151, 189, /* 400 */ 189, 110, 2117, 675, 2119, 2120, 670, 707, 665, 1191, /* 410 */ 1496, 1190, 1494, 2295, 62, 2204, 1262, 630, 140, 389, /* 420 */ 2200, 279, 52, 608, 641, 630, 140, 1745, 37, 391, /* 430 */ 1600, 1601, 1602, 1603, 1604, 1608, 1609, 1610, 1611, 1499, /* 440 */ 1500, 1192, 1550, 1553, 1554, 1555, 1556, 1557, 1558, 1559, /* 450 */ 1560, 667, 663, 1569, 1570, 1572, 1573, 1574, 1575, 2, /* 460 */ 12, 48, 46, 1354, 1355, 1495, 402, 401, 62, 393, /* 470 */ 1279, 1495, 557, 556, 555, 516, 2084, 2003, 1493, 547, /* 480 */ 137, 551, 1576, 1278, 1493, 550, 2280, 2116, 34, 1502, /* 490 */ 549, 554, 368, 367, 41, 40, 548, 672, 47, 45, /* 500 */ 44, 43, 42, 1522, 1523, 1426, 1427, 2116, 1571, 614, /* 510 */ 609, 602, 1674, 699, 19, 1501, 1935, 669, 185, 2212, /* 520 */ 2213, 1501, 138, 2217, 2134, 632, 184, 2212, 2213, 398, /* 530 */ 138, 2217, 1937, 1939, 2051, 1191, 2084, 1190, 671, 1552, /* 540 */ 758, 1425, 1428, 1519, 2134, 489, 758, 41, 40, 15, /* 550 */ 228, 47, 45, 44, 43, 42, 2084, 153, 671, 605, /* 560 */ 604, 1672, 1673, 1675, 1676, 1677, 189, 1192, 166, 2115, /* 570 */ 1744, 580, 2151, 318, 189, 170, 2117, 675, 2119, 2120, /* 580 */ 670, 246, 665, 30, 1708, 1578, 1579, 316, 73, 2115, /* 590 */ 12, 72, 2151, 2094, 562, 334, 2117, 675, 2119, 2120, /* 600 */ 670, 668, 665, 656, 2169, 655, 1892, 2102, 107, 572, /* 610 */ 209, 497, 495, 492, 56, 1551, 1561, 2098, 612, 2084, /* 620 */ 189, 1577, 1580, 242, 438, 141, 620, 2296, 213, 1496, /* 630 */ 478, 1494, 504, 1884, 1765, 1496, 1794, 1494, 165, 565, /* 640 */ 1944, 1944, 1505, 641, 559, 2134, 1895, 358, 373, 241, /* 650 */ 62, 279, 195, 2100, 390, 1942, 1942, 1501, 1499, 1500, /* 660 */ 1169, 289, 290, 665, 1499, 1500, 288, 1550, 1553, 1554, /* 670 */ 1555, 1556, 1557, 1558, 1559, 1560, 667, 663, 1569, 1570, /* 680 */ 1572, 1573, 1574, 1575, 2, 48, 46, 1581, 109, 70, /* 690 */ 202, 201, 69, 393, 639, 1495, 2003, 2116, 611, 1171, /* 700 */ 1974, 1174, 1175, 557, 556, 555, 1576, 633, 1493, 365, /* 710 */ 547, 137, 551, 477, 641, 698, 550, 618, 655, 1892, /* 720 */ 2275, 549, 554, 368, 367, 630, 140, 548, 81, 80, /* 730 */ 437, 1768, 1571, 193, 2134, 617, 186, 439, 1938, 1939, /* 740 */ 2276, 619, 717, 244, 1944, 1501, 2084, 243, 671, 655, /* 750 */ 1892, 383, 14, 13, 341, 655, 1892, 423, 441, 1942, /* 760 */ 421, 417, 413, 410, 430, 650, 1743, 2003, 448, 1944, /* 770 */ 758, 442, 2077, 49, 463, 366, 388, 364, 363, 2115, /* 780 */ 541, 753, 2151, 2116, 1942, 110, 2117, 675, 2119, 2120, /* 790 */ 670, 1944, 665, 672, 1869, 655, 1892, 183, 397, 2204, /* 800 */ 101, 543, 189, 389, 2200, 542, 1942, 90, 347, 1578, /* 810 */ 1579, 372, 87, 573, 464, 2084, 188, 2078, 593, 1735, /* 820 */ 2134, 2275, 553, 552, 2230, 1885, 277, 2212, 629, 362, /* 830 */ 134, 628, 2084, 2275, 671, 1742, 2281, 186, 1887, 1551, /* 840 */ 1561, 2276, 619, 630, 140, 1577, 1580, 245, 617, 186, /* 850 */ 655, 1892, 1619, 2276, 619, 458, 1586, 2219, 12, 1496, /* 860 */ 10, 1494, 1520, 593, 457, 2115, 2275, 1741, 2151, 517, /* 870 */ 106, 111, 2117, 675, 2119, 2120, 670, 657, 665, 2176, /* 880 */ 103, 2281, 186, 2215, 2084, 2204, 2276, 619, 1499, 1500, /* 890 */ 2201, 1550, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, /* 900 */ 667, 663, 1569, 1570, 1572, 1573, 1574, 1575, 2, 48, /* 910 */ 46, 659, 1523, 2176, 1468, 1469, 2084, 393, 427, 1495, /* 920 */ 54, 2116, 3, 705, 155, 154, 702, 701, 700, 152, /* 930 */ 1576, 633, 1493, 41, 40, 655, 1892, 47, 45, 44, /* 940 */ 43, 42, 429, 425, 187, 2212, 2213, 2116, 138, 2217, /* 950 */ 198, 1877, 655, 1892, 1889, 578, 1571, 672, 2134, 2238, /* 960 */ 705, 155, 154, 702, 701, 700, 152, 399, 1643, 1501, /* 970 */ 2084, 247, 671, 655, 1892, 165, 44, 43, 42, 2219, /* 980 */ 9, 41, 40, 1894, 2134, 47, 45, 44, 43, 42, /* 990 */ 84, 543, 589, 83, 758, 542, 2084, 49, 671, 655, /* 1000 */ 1892, 593, 1740, 2115, 2275, 2214, 2151, 2116, 1552, 110, /* 1010 */ 2117, 675, 2119, 2120, 670, 2067, 665, 672, 634, 2281, /* 1020 */ 186, 183, 625, 2204, 2276, 619, 1739, 389, 2200, 2115, /* 1030 */ 1867, 87, 2151, 1578, 1579, 110, 2117, 675, 2119, 2120, /* 1040 */ 670, 2094, 665, 622, 2134, 1738, 571, 2295, 2231, 2204, /* 1050 */ 146, 2084, 135, 389, 2200, 1883, 2084, 1888, 671, 569, /* 1060 */ 256, 567, 1989, 1551, 1561, 2098, 36, 655, 1892, 1577, /* 1070 */ 1580, 1607, 41, 40, 1662, 2084, 47, 45, 44, 43, /* 1080 */ 42, 729, 727, 1496, 1879, 1494, 638, 655, 1892, 2115, /* 1090 */ 655, 1892, 2151, 164, 2084, 169, 2117, 675, 2119, 2120, /* 1100 */ 670, 2100, 665, 1174, 1175, 312, 293, 200, 1921, 652, /* 1110 */ 1520, 665, 1499, 1500, 1875, 1550, 1553, 1554, 1555, 1556, /* 1120 */ 1557, 1558, 1559, 1560, 667, 663, 1569, 1570, 1572, 1573, /* 1130 */ 1574, 1575, 2, 48, 46, 1737, 2242, 2116, 655, 1892, /* 1140 */ 1736, 393, 1733, 1495, 2094, 35, 1732, 672, 1731, 2251, /* 1150 */ 655, 1892, 655, 1892, 1576, 1612, 1493, 653, 2103, 705, /* 1160 */ 155, 154, 702, 701, 700, 152, 1730, 1729, 2098, 299, /* 1170 */ 142, 400, 592, 2175, 2134, 1944, 703, 1177, 704, 1935, /* 1180 */ 1571, 1935, 1728, 1519, 2084, 1727, 2084, 1726, 671, 2084, /* 1190 */ 1943, 2084, 1639, 1501, 1870, 2084, 1725, 2084, 718, 2224, /* 1200 */ 1639, 1854, 2070, 74, 2100, 234, 236, 238, 232, 235, /* 1210 */ 237, 575, 255, 574, 665, 2084, 2084, 1642, 758, 2115, /* 1220 */ 546, 15, 2151, 2116, 422, 110, 2117, 675, 2119, 2120, /* 1230 */ 670, 2084, 665, 672, 2084, 600, 2084, 2295, 148, 2204, /* 1240 */ 1781, 1774, 1260, 389, 2200, 2084, 240, 1772, 662, 239, /* 1250 */ 1504, 415, 82, 153, 626, 91, 1552, 1578, 1579, 1503, /* 1260 */ 2134, 711, 558, 560, 153, 50, 1896, 50, 712, 563, /* 1270 */ 261, 153, 2084, 623, 671, 1717, 1718, 50, 286, 14, /* 1280 */ 13, 71, 251, 1240, 666, 254, 1834, 1551, 1561, 1221, /* 1290 */ 1238, 2244, 55, 1577, 1580, 274, 227, 268, 606, 2135, /* 1300 */ 1832, 1831, 406, 151, 1998, 2115, 1759, 1496, 2151, 1494, /* 1310 */ 1463, 110, 2117, 675, 2119, 2120, 670, 153, 665, 64, /* 1320 */ 50, 1466, 1671, 2295, 1670, 2204, 1222, 263, 637, 389, /* 1330 */ 2200, 1764, 1932, 50, 1423, 291, 1499, 1500, 647, 1550, /* 1340 */ 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 667, 663, /* 1350 */ 1569, 1570, 1572, 1573, 1574, 1575, 2, 2116, 402, 401, /* 1360 */ 295, 2105, 679, 2234, 151, 153, 136, 672, 1509, 2269, /* 1370 */ 151, 631, 276, 273, 1305, 1, 1613, 1562, 409, 1576, /* 1380 */ 5, 1502, 414, 2116, 356, 1446, 306, 199, 1523, 443, /* 1390 */ 311, 447, 452, 672, 2134, 2223, 1999, 480, 1597, 1518, /* 1400 */ 479, 465, 1991, 1507, 481, 1571, 2084, 472, 671, 490, /* 1410 */ 491, 488, 1506, 204, 2107, 203, 206, 494, 1501, 1332, /* 1420 */ 2134, 1336, 1343, 1341, 493, 496, 498, 156, 1524, 499, /* 1430 */ 2116, 4, 2084, 507, 671, 500, 1526, 510, 508, 2115, /* 1440 */ 672, 214, 2151, 661, 1521, 110, 2117, 675, 2119, 2120, /* 1450 */ 670, 2116, 665, 511, 216, 1525, 512, 2295, 1527, 2204, /* 1460 */ 219, 672, 1194, 389, 2200, 2115, 515, 2134, 2151, 513, /* 1470 */ 221, 110, 2117, 675, 2119, 2120, 670, 85, 665, 2084, /* 1480 */ 86, 671, 519, 2295, 225, 2204, 538, 540, 2134, 389, /* 1490 */ 2200, 536, 537, 1882, 112, 231, 346, 2060, 1878, 233, /* 1500 */ 2084, 158, 671, 159, 577, 1880, 1876, 160, 161, 579, /* 1510 */ 89, 583, 2115, 248, 2057, 2151, 307, 149, 170, 2117, /* 1520 */ 675, 2119, 2120, 670, 250, 665, 582, 587, 2056, 252, /* 1530 */ 1453, 590, 1510, 2115, 1505, 607, 2151, 2250, 2249, 110, /* 1540 */ 2117, 675, 2119, 2120, 670, 645, 665, 2235, 2245, 597, /* 1550 */ 584, 2179, 603, 2204, 588, 2116, 259, 389, 2200, 262, /* 1560 */ 378, 1513, 1515, 8, 610, 672, 2226, 616, 598, 267, /* 1570 */ 2297, 379, 596, 270, 663, 1569, 1570, 1572, 1573, 1574, /* 1580 */ 1575, 272, 595, 2298, 627, 624, 139, 1639, 1522, 2220, /* 1590 */ 382, 635, 2134, 281, 1528, 2004, 308, 648, 96, 643, /* 1600 */ 644, 2018, 309, 269, 2084, 173, 671, 271, 649, 98, /* 1610 */ 2017, 2016, 385, 100, 1893, 61, 102, 310, 2185, 2274, /* 1620 */ 1936, 2116, 1855, 313, 754, 275, 677, 302, 755, 53, /* 1630 */ 757, 672, 322, 348, 349, 315, 336, 2115, 317, 2076, /* 1640 */ 2151, 326, 337, 110, 2117, 675, 2119, 2120, 670, 2116, /* 1650 */ 665, 2075, 2074, 78, 2071, 2177, 411, 2204, 2134, 672, /* 1660 */ 412, 389, 2200, 1486, 1487, 192, 416, 2069, 418, 419, /* 1670 */ 2084, 420, 671, 2068, 2066, 357, 424, 2065, 426, 2064, /* 1680 */ 428, 2116, 79, 1449, 1448, 2030, 2134, 2029, 2028, 435, /* 1690 */ 436, 672, 2027, 2026, 1400, 1982, 1981, 1979, 2084, 145, /* 1700 */ 671, 1978, 1977, 2115, 1980, 1976, 2151, 453, 197, 110, /* 1710 */ 2117, 675, 2119, 2120, 670, 1975, 665, 1973, 2134, 1972, /* 1720 */ 1971, 658, 455, 2204, 1970, 1984, 1969, 389, 2200, 1968, /* 1730 */ 2084, 2115, 671, 1967, 2151, 1966, 1965, 111, 2117, 675, /* 1740 */ 2119, 2120, 670, 1964, 665, 1963, 1962, 1961, 1960, 1959, /* 1750 */ 1958, 2204, 2116, 1957, 1956, 2203, 2200, 483, 147, 1954, /* 1760 */ 1953, 1952, 672, 2115, 1955, 1983, 2151, 1951, 1950, 111, /* 1770 */ 2117, 675, 2119, 2120, 670, 1949, 665, 1402, 1948, 1947, /* 1780 */ 2116, 1946, 1945, 2204, 1276, 344, 345, 660, 2200, 2134, /* 1790 */ 672, 1280, 1797, 205, 1796, 1795, 1793, 1754, 1272, 2116, /* 1800 */ 207, 2084, 180, 671, 1176, 1753, 2047, 2037, 210, 672, /* 1810 */ 208, 76, 2025, 220, 2024, 2002, 212, 2134, 2104, 77, /* 1820 */ 181, 505, 376, 218, 1871, 1792, 1790, 522, 520, 2084, /* 1830 */ 1788, 671, 1786, 524, 673, 521, 2134, 2151, 525, 526, /* 1840 */ 111, 2117, 675, 2119, 2120, 670, 528, 665, 2084, 1214, /* 1850 */ 671, 529, 530, 1784, 2204, 532, 534, 533, 351, 2200, /* 1860 */ 1771, 1770, 2115, 1750, 1873, 2151, 2116, 1347, 335, 2117, /* 1870 */ 675, 2119, 2120, 670, 1348, 665, 672, 1872, 726, 63, /* 1880 */ 728, 2115, 1263, 1261, 2151, 2116, 1259, 328, 2117, 675, /* 1890 */ 2119, 2120, 670, 1258, 665, 672, 1250, 1257, 230, 1782, /* 1900 */ 1256, 1255, 1252, 2134, 1251, 1249, 369, 1775, 377, 370, /* 1910 */ 561, 1773, 1749, 2116, 371, 2084, 564, 671, 566, 1748, /* 1920 */ 568, 1747, 2134, 669, 570, 113, 1473, 384, 1475, 1472, /* 1930 */ 615, 2046, 1477, 29, 2084, 67, 671, 1459, 1455, 1457, /* 1940 */ 2036, 163, 585, 2023, 2021, 58, 17, 1687, 2115, 2280, /* 1950 */ 2134, 2151, 20, 586, 335, 2117, 675, 2119, 2120, 670, /* 1960 */ 21, 665, 2084, 6, 671, 23, 7, 2115, 31, 253, /* 1970 */ 2151, 375, 258, 335, 2117, 675, 2119, 2120, 670, 2116, /* 1980 */ 665, 260, 601, 22, 591, 265, 599, 65, 18, 672, /* 1990 */ 1669, 1702, 266, 33, 2105, 2115, 171, 264, 2151, 1661, /* 2000 */ 32, 334, 2117, 675, 2119, 2120, 670, 1707, 665, 92, /* 2010 */ 2170, 1708, 24, 1701, 380, 1706, 2134, 1705, 381, 278, /* 2020 */ 60, 392, 176, 1636, 1635, 2022, 2020, 2019, 2084, 2001, /* 2030 */ 671, 95, 94, 284, 25, 2000, 285, 59, 97, 1667, /* 2040 */ 2116, 297, 287, 103, 26, 294, 646, 11, 292, 13, /* 2050 */ 672, 68, 99, 1588, 1511, 2116, 1587, 1598, 177, 2154, /* 2060 */ 664, 2115, 1566, 581, 2151, 672, 1564, 335, 2117, 675, /* 2070 */ 2119, 2120, 670, 39, 665, 1563, 1543, 2134, 190, 678, /* 2080 */ 676, 761, 394, 395, 682, 16, 1325, 27, 674, 2084, /* 2090 */ 2116, 671, 2134, 685, 1535, 305, 28, 300, 1333, 1330, /* 2100 */ 672, 680, 683, 686, 2084, 688, 671, 1327, 1321, 689, /* 2110 */ 691, 178, 1324, 1319, 692, 104, 1342, 751, 747, 743, /* 2120 */ 739, 303, 2115, 105, 75, 2151, 1338, 2134, 335, 2117, /* 2130 */ 675, 2119, 2120, 670, 1212, 665, 706, 576, 1323, 2084, /* 2140 */ 2151, 671, 1322, 330, 2117, 675, 2119, 2120, 670, 1244, /* 2150 */ 665, 1243, 1242, 1241, 1239, 1237, 2116, 1236, 1235, 1270, /* 2160 */ 1233, 108, 1232, 716, 296, 301, 672, 1231, 1230, 1229, /* 2170 */ 1228, 1227, 2115, 1265, 1267, 2151, 2116, 1224, 319, 2117, /* 2180 */ 675, 2119, 2120, 670, 1223, 665, 672, 1220, 1219, 1218, /* 2190 */ 1217, 1789, 736, 2134, 737, 738, 651, 741, 740, 742, /* 2200 */ 1785, 744, 1783, 745, 746, 2084, 2116, 671, 1787, 748, /* 2210 */ 749, 750, 1769, 2134, 752, 1166, 672, 1746, 304, 756, /* 2220 */ 1721, 1497, 759, 2116, 1721, 2084, 314, 671, 1721, 760, /* 2230 */ 1721, 283, 1721, 672, 1721, 1721, 282, 1721, 2115, 1721, /* 2240 */ 1721, 2151, 1721, 2134, 320, 2117, 675, 2119, 2120, 670, /* 2250 */ 1721, 665, 1721, 1721, 1721, 2084, 249, 671, 2115, 229, /* 2260 */ 2134, 2151, 1721, 1721, 321, 2117, 675, 2119, 2120, 670, /* 2270 */ 2116, 665, 2084, 1721, 671, 172, 1721, 1721, 1721, 1721, /* 2280 */ 672, 535, 531, 527, 523, 226, 1721, 1721, 2115, 1721, /* 2290 */ 2116, 2151, 1721, 1721, 327, 2117, 675, 2119, 2120, 670, /* 2300 */ 672, 665, 1721, 1721, 1721, 2115, 1721, 2134, 2151, 1721, /* 2310 */ 1721, 331, 2117, 675, 2119, 2120, 670, 1721, 665, 2084, /* 2320 */ 1721, 671, 1721, 1721, 1721, 88, 1721, 2134, 224, 1721, /* 2330 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2116, 1721, 2084, /* 2340 */ 1721, 671, 1721, 1721, 1721, 1721, 1721, 672, 1721, 1721, /* 2350 */ 1721, 1721, 2115, 1721, 1721, 2151, 1721, 1721, 323, 2117, /* 2360 */ 675, 2119, 2120, 670, 1721, 665, 1721, 1721, 1721, 1721, /* 2370 */ 1721, 1721, 2115, 1721, 2134, 2151, 1721, 1721, 332, 2117, /* 2380 */ 675, 2119, 2120, 670, 2116, 665, 2084, 1721, 671, 1721, /* 2390 */ 1721, 1721, 1721, 1721, 672, 223, 217, 1721, 1721, 2116, /* 2400 */ 222, 1721, 514, 1721, 1721, 1721, 1721, 1721, 1721, 672, /* 2410 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2115, /* 2420 */ 215, 2134, 2151, 1721, 1721, 324, 2117, 675, 2119, 2120, /* 2430 */ 670, 1721, 665, 2084, 2116, 671, 2134, 1721, 1721, 1721, /* 2440 */ 1721, 1721, 1721, 1721, 672, 1721, 1721, 1721, 2084, 1721, /* 2450 */ 671, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, /* 2460 */ 1721, 1721, 1721, 1721, 1721, 1721, 2115, 1721, 1721, 2151, /* 2470 */ 1721, 2134, 333, 2117, 675, 2119, 2120, 670, 1721, 665, /* 2480 */ 1721, 2115, 1721, 2084, 2151, 671, 1721, 325, 2117, 675, /* 2490 */ 2119, 2120, 670, 1721, 665, 2116, 1721, 1721, 1721, 1721, /* 2500 */ 1721, 1721, 1721, 1721, 1721, 672, 1721, 1721, 1721, 1721, /* 2510 */ 2116, 1721, 1721, 1721, 1721, 1721, 2115, 1721, 1721, 2151, /* 2520 */ 672, 1721, 338, 2117, 675, 2119, 2120, 670, 1721, 665, /* 2530 */ 2116, 1721, 2134, 1721, 1721, 1721, 1721, 1721, 1721, 1721, /* 2540 */ 672, 1721, 1721, 1721, 2084, 1721, 671, 2134, 1721, 1721, /* 2550 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2084, /* 2560 */ 1721, 671, 1721, 1721, 1721, 1721, 1721, 2134, 1721, 1721, /* 2570 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2115, 1721, 2084, /* 2580 */ 2151, 671, 1721, 339, 2117, 675, 2119, 2120, 670, 1721, /* 2590 */ 665, 1721, 2115, 1721, 2116, 2151, 1721, 1721, 2128, 2117, /* 2600 */ 675, 2119, 2120, 670, 672, 665, 1721, 1721, 1721, 1721, /* 2610 */ 1721, 1721, 2115, 1721, 2116, 2151, 1721, 1721, 2127, 2117, /* 2620 */ 675, 2119, 2120, 670, 672, 665, 1721, 1721, 1721, 2116, /* 2630 */ 1721, 2134, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 672, /* 2640 */ 1721, 1721, 1721, 2084, 1721, 671, 1721, 1721, 1721, 1721, /* 2650 */ 1721, 2134, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, /* 2660 */ 1721, 2116, 1721, 2084, 1721, 671, 2134, 1721, 1721, 1721, /* 2670 */ 1721, 672, 1721, 1721, 1721, 1721, 2115, 1721, 2084, 2151, /* 2680 */ 671, 1721, 2126, 2117, 675, 2119, 2120, 670, 1721, 665, /* 2690 */ 1721, 1721, 1721, 1721, 1721, 1721, 2115, 1721, 2134, 2151, /* 2700 */ 1721, 1721, 353, 2117, 675, 2119, 2120, 670, 1721, 665, /* 2710 */ 2084, 2115, 671, 1721, 2151, 1721, 1721, 354, 2117, 675, /* 2720 */ 2119, 2120, 670, 1721, 665, 1721, 1721, 1721, 2116, 1721, /* 2730 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 672, 1721, /* 2740 */ 1721, 1721, 1721, 2115, 1721, 1721, 2151, 1721, 1721, 350, /* 2750 */ 2117, 675, 2119, 2120, 670, 1721, 665, 1721, 1721, 1721, /* 2760 */ 2116, 1721, 1721, 1721, 1721, 2134, 1721, 1721, 1721, 1721, /* 2770 */ 672, 1721, 1721, 1721, 1721, 1721, 1721, 2084, 2116, 671, /* 2780 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 672, 1721, /* 2790 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2134, 1721, 1721, /* 2800 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 2084, /* 2810 */ 2115, 671, 1721, 2151, 1721, 2134, 355, 2117, 675, 2119, /* 2820 */ 2120, 670, 1721, 665, 1721, 1721, 1721, 2084, 1721, 671, /* 2830 */ 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, /* 2840 */ 1721, 1721, 673, 1721, 1721, 2151, 1721, 1721, 330, 2117, /* 2850 */ 675, 2119, 2120, 670, 1721, 665, 1721, 1721, 1721, 1721, /* 2860 */ 2115, 1721, 1721, 2151, 1721, 1721, 329, 2117, 675, 2119, /* 2870 */ 2120, 670, 1721, 665, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 333, 384, 371, 362, 401, 332, 401, 334, 405, 343, /* 10 */ 343, 370, 12, 13, 14, 0, 399, 400, 377, 378, /* 20 */ 20, 14, 22, 342, 8, 9, 385, 20, 12, 13, /* 30 */ 14, 15, 16, 33, 0, 35, 21, 370, 20, 24, /* 40 */ 25, 26, 27, 28, 29, 30, 31, 32, 3, 382, /* 50 */ 447, 384, 447, 450, 388, 450, 8, 9, 351, 59, /* 60 */ 12, 13, 14, 15, 16, 65, 359, 386, 465, 466, /* 70 */ 465, 466, 72, 470, 471, 470, 471, 12, 13, 14, /* 80 */ 15, 16, 415, 337, 20, 418, 340, 341, 421, 422, /* 90 */ 423, 424, 425, 426, 369, 428, 20, 97, 436, 437, /* 100 */ 100, 67, 68, 69, 70, 71, 381, 73, 74, 75, /* 110 */ 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, /* 120 */ 86, 87, 88, 89, 90, 91, 92, 93, 461, 462, /* 130 */ 337, 20, 97, 340, 341, 21, 136, 137, 24, 25, /* 140 */ 26, 27, 28, 29, 30, 31, 32, 112, 113, 114, /* 150 */ 115, 116, 117, 118, 119, 120, 121, 370, 123, 124, /* 160 */ 125, 126, 127, 128, 100, 20, 166, 167, 20, 420, /* 170 */ 342, 343, 172, 173, 330, 8, 9, 390, 391, 12, /* 180 */ 13, 14, 15, 16, 166, 167, 186, 20, 188, 361, /* 190 */ 342, 343, 362, 100, 178, 446, 368, 8, 9, 59, /* 200 */ 370, 12, 13, 14, 15, 16, 8, 9, 378, 361, /* 210 */ 12, 13, 14, 15, 16, 215, 216, 0, 218, 219, /* 220 */ 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, /* 230 */ 230, 231, 232, 233, 234, 235, 12, 13, 0, 370, /* 240 */ 100, 18, 102, 20, 20, 401, 22, 100, 100, 405, /* 250 */ 27, 333, 447, 30, 65, 450, 33, 33, 343, 35, /* 260 */ 391, 343, 24, 25, 26, 27, 28, 29, 30, 31, /* 270 */ 32, 466, 49, 20, 51, 470, 471, 54, 185, 362, /* 280 */ 187, 64, 447, 59, 22, 450, 338, 370, 370, 65, /* 290 */ 342, 447, 344, 277, 450, 378, 72, 35, 109, 101, /* 300 */ 382, 466, 384, 388, 384, 470, 471, 214, 447, 465, /* 310 */ 466, 450, 64, 333, 470, 471, 396, 272, 4, 399, /* 320 */ 400, 97, 99, 343, 100, 345, 465, 466, 35, 342, /* 330 */ 343, 470, 471, 415, 111, 168, 418, 342, 343, 421, /* 340 */ 422, 423, 424, 425, 426, 252, 428, 20, 361, 431, /* 350 */ 370, 433, 434, 435, 165, 368, 361, 439, 440, 97, /* 360 */ 136, 137, 382, 140, 384, 72, 143, 144, 145, 146, /* 370 */ 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, /* 380 */ 157, 158, 159, 20, 161, 162, 163, 14, 20, 20, /* 390 */ 166, 167, 252, 20, 13, 415, 172, 173, 418, 252, /* 400 */ 252, 421, 422, 423, 424, 425, 426, 64, 428, 20, /* 410 */ 186, 22, 188, 433, 100, 435, 35, 342, 343, 439, /* 420 */ 440, 168, 100, 171, 342, 342, 343, 333, 239, 240, /* 430 */ 241, 242, 243, 244, 245, 246, 247, 248, 249, 215, /* 440 */ 216, 52, 218, 219, 220, 221, 222, 223, 224, 225, /* 450 */ 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, /* 460 */ 236, 12, 13, 136, 137, 22, 12, 13, 100, 20, /* 470 */ 22, 22, 67, 68, 69, 393, 382, 395, 35, 74, /* 480 */ 75, 76, 33, 35, 35, 80, 3, 333, 2, 35, /* 490 */ 85, 86, 87, 88, 8, 9, 91, 343, 12, 13, /* 500 */ 14, 15, 16, 20, 20, 136, 137, 333, 59, 257, /* 510 */ 258, 259, 215, 379, 65, 72, 382, 343, 443, 444, /* 520 */ 445, 72, 447, 448, 370, 442, 443, 444, 445, 380, /* 530 */ 447, 448, 383, 384, 366, 20, 382, 22, 384, 166, /* 540 */ 97, 172, 173, 20, 370, 97, 97, 8, 9, 100, /* 550 */ 35, 12, 13, 14, 15, 16, 382, 44, 384, 262, /* 560 */ 263, 264, 265, 266, 267, 268, 252, 52, 18, 415, /* 570 */ 333, 111, 418, 23, 252, 421, 422, 423, 424, 425, /* 580 */ 426, 413, 428, 44, 101, 136, 137, 37, 38, 415, /* 590 */ 236, 41, 418, 358, 4, 421, 422, 423, 424, 425, /* 600 */ 426, 427, 428, 429, 430, 342, 343, 372, 348, 19, /* 610 */ 60, 61, 62, 63, 101, 166, 167, 382, 343, 382, /* 620 */ 252, 172, 173, 33, 361, 365, 472, 473, 338, 186, /* 630 */ 81, 188, 342, 373, 344, 186, 0, 188, 370, 49, /* 640 */ 370, 370, 188, 342, 54, 370, 378, 377, 377, 59, /* 650 */ 100, 168, 168, 418, 419, 385, 385, 72, 215, 216, /* 660 */ 4, 130, 131, 428, 215, 216, 135, 218, 219, 220, /* 670 */ 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, /* 680 */ 231, 232, 233, 234, 235, 12, 13, 14, 138, 99, /* 690 */ 141, 142, 102, 20, 393, 22, 395, 333, 423, 43, /* 700 */ 0, 45, 46, 67, 68, 69, 33, 343, 35, 37, /* 710 */ 74, 75, 76, 164, 342, 111, 80, 447, 342, 343, /* 720 */ 450, 85, 86, 87, 88, 342, 343, 91, 178, 179, /* 730 */ 180, 0, 59, 183, 370, 465, 466, 361, 383, 384, /* 740 */ 470, 471, 72, 131, 370, 72, 382, 135, 384, 342, /* 750 */ 343, 377, 1, 2, 204, 342, 343, 207, 22, 385, /* 760 */ 210, 211, 212, 213, 214, 393, 333, 395, 361, 370, /* 770 */ 97, 35, 401, 100, 361, 103, 377, 105, 106, 415, /* 780 */ 108, 50, 418, 333, 385, 421, 422, 423, 424, 425, /* 790 */ 426, 370, 428, 343, 0, 342, 343, 433, 377, 435, /* 800 */ 348, 129, 252, 439, 440, 133, 385, 195, 196, 136, /* 810 */ 137, 199, 350, 201, 361, 382, 452, 401, 447, 334, /* 820 */ 370, 450, 355, 356, 460, 373, 443, 444, 445, 367, /* 830 */ 447, 448, 382, 450, 384, 333, 465, 466, 376, 166, /* 840 */ 167, 470, 471, 342, 343, 172, 173, 130, 465, 466, /* 850 */ 342, 343, 101, 470, 471, 155, 14, 420, 236, 186, /* 860 */ 238, 188, 20, 447, 164, 415, 450, 333, 418, 361, /* 870 */ 100, 421, 422, 423, 424, 425, 426, 432, 428, 434, /* 880 */ 110, 465, 466, 446, 382, 435, 470, 471, 215, 216, /* 890 */ 440, 218, 219, 220, 221, 222, 223, 224, 225, 226, /* 900 */ 227, 228, 229, 230, 231, 232, 233, 234, 235, 12, /* 910 */ 13, 432, 20, 434, 197, 198, 382, 20, 181, 22, /* 920 */ 42, 333, 44, 129, 130, 131, 132, 133, 134, 135, /* 930 */ 33, 343, 35, 8, 9, 342, 343, 12, 13, 14, /* 940 */ 15, 16, 205, 206, 443, 444, 445, 333, 447, 448, /* 950 */ 59, 371, 342, 343, 361, 401, 59, 343, 370, 345, /* 960 */ 129, 130, 131, 132, 133, 134, 135, 362, 4, 72, /* 970 */ 382, 361, 384, 342, 343, 370, 14, 15, 16, 420, /* 980 */ 39, 8, 9, 378, 370, 12, 13, 14, 15, 16, /* 990 */ 99, 129, 361, 102, 97, 133, 382, 100, 384, 342, /* 1000 */ 343, 447, 333, 415, 450, 446, 418, 333, 166, 421, /* 1010 */ 422, 423, 424, 425, 426, 0, 428, 343, 361, 465, /* 1020 */ 466, 433, 44, 435, 470, 471, 333, 439, 440, 415, /* 1030 */ 0, 350, 418, 136, 137, 421, 422, 423, 424, 425, /* 1040 */ 426, 358, 428, 44, 370, 333, 21, 433, 460, 435, /* 1050 */ 42, 382, 44, 439, 440, 372, 382, 376, 384, 34, /* 1060 */ 168, 36, 343, 166, 167, 382, 2, 342, 343, 172, /* 1070 */ 173, 165, 8, 9, 101, 382, 12, 13, 14, 15, /* 1080 */ 16, 355, 356, 186, 371, 188, 361, 342, 343, 415, /* 1090 */ 342, 343, 418, 168, 382, 421, 422, 423, 424, 425, /* 1100 */ 426, 418, 428, 45, 46, 363, 361, 388, 366, 361, /* 1110 */ 20, 428, 215, 216, 371, 218, 219, 220, 221, 222, /* 1120 */ 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, /* 1130 */ 233, 234, 235, 12, 13, 333, 462, 333, 342, 343, /* 1140 */ 333, 20, 333, 22, 358, 239, 333, 343, 333, 345, /* 1150 */ 342, 343, 342, 343, 33, 249, 35, 361, 372, 129, /* 1160 */ 130, 131, 132, 133, 134, 135, 333, 333, 382, 361, /* 1170 */ 431, 361, 48, 434, 370, 370, 379, 14, 379, 382, /* 1180 */ 59, 382, 333, 20, 382, 333, 382, 333, 384, 382, /* 1190 */ 385, 382, 251, 72, 0, 382, 333, 382, 357, 250, /* 1200 */ 251, 360, 0, 111, 418, 104, 104, 104, 107, 107, /* 1210 */ 107, 200, 59, 202, 428, 382, 382, 253, 97, 415, /* 1220 */ 13, 100, 418, 333, 209, 421, 422, 423, 424, 425, /* 1230 */ 426, 382, 428, 343, 382, 345, 382, 433, 44, 435, /* 1240 */ 0, 0, 35, 439, 440, 382, 104, 0, 65, 107, /* 1250 */ 35, 49, 160, 44, 276, 102, 166, 136, 137, 35, /* 1260 */ 370, 13, 22, 22, 44, 44, 371, 44, 13, 22, /* 1270 */ 44, 44, 382, 274, 384, 136, 137, 44, 44, 1, /* 1280 */ 2, 44, 371, 35, 371, 406, 359, 166, 167, 35, /* 1290 */ 35, 392, 168, 172, 173, 474, 346, 457, 463, 370, /* 1300 */ 358, 358, 346, 44, 392, 415, 341, 186, 418, 188, /* 1310 */ 101, 421, 422, 423, 424, 425, 426, 44, 428, 44, /* 1320 */ 44, 101, 101, 433, 101, 435, 72, 101, 101, 439, /* 1330 */ 440, 343, 381, 44, 101, 101, 215, 216, 101, 218, /* 1340 */ 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, /* 1350 */ 229, 230, 231, 232, 233, 234, 235, 333, 12, 13, /* 1360 */ 101, 47, 44, 392, 44, 44, 44, 343, 22, 345, /* 1370 */ 44, 449, 467, 441, 101, 451, 101, 101, 417, 33, /* 1380 */ 254, 35, 49, 333, 416, 184, 403, 42, 20, 389, /* 1390 */ 101, 389, 387, 343, 370, 345, 392, 165, 215, 20, /* 1400 */ 387, 342, 342, 188, 387, 59, 382, 389, 384, 98, /* 1410 */ 354, 96, 188, 342, 100, 353, 342, 352, 72, 101, /* 1420 */ 370, 101, 101, 101, 95, 342, 342, 101, 20, 335, /* 1430 */ 333, 48, 382, 335, 384, 339, 20, 410, 339, 415, /* 1440 */ 343, 350, 418, 97, 20, 421, 422, 423, 424, 425, /* 1450 */ 426, 333, 428, 384, 350, 20, 344, 433, 20, 435, /* 1460 */ 350, 343, 53, 439, 440, 415, 344, 370, 418, 402, /* 1470 */ 350, 421, 422, 423, 424, 425, 426, 350, 428, 382, /* 1480 */ 350, 384, 342, 433, 350, 435, 335, 370, 370, 439, /* 1490 */ 440, 347, 347, 370, 342, 370, 335, 382, 370, 370, /* 1500 */ 382, 370, 384, 370, 203, 370, 370, 370, 370, 414, /* 1510 */ 100, 192, 415, 348, 382, 418, 410, 412, 421, 422, /* 1520 */ 423, 424, 425, 426, 408, 428, 191, 384, 382, 348, /* 1530 */ 190, 342, 186, 415, 188, 261, 418, 456, 456, 421, /* 1540 */ 422, 423, 424, 425, 426, 260, 428, 392, 392, 382, /* 1550 */ 409, 433, 382, 435, 407, 333, 397, 439, 440, 397, /* 1560 */ 382, 215, 216, 269, 382, 343, 459, 177, 271, 458, /* 1570 */ 473, 278, 270, 454, 228, 229, 230, 231, 232, 233, /* 1580 */ 234, 417, 255, 475, 275, 273, 343, 251, 20, 420, /* 1590 */ 344, 342, 370, 348, 20, 395, 397, 170, 348, 382, /* 1600 */ 382, 382, 397, 455, 382, 456, 384, 453, 394, 348, /* 1610 */ 382, 382, 382, 348, 343, 100, 100, 366, 438, 469, /* 1620 */ 382, 333, 360, 342, 36, 468, 374, 348, 336, 404, /* 1630 */ 335, 343, 364, 398, 398, 349, 364, 415, 331, 0, /* 1640 */ 418, 364, 411, 421, 422, 423, 424, 425, 426, 333, /* 1650 */ 428, 0, 0, 42, 0, 433, 35, 435, 370, 343, /* 1660 */ 208, 439, 440, 35, 35, 35, 208, 0, 35, 35, /* 1670 */ 382, 208, 384, 0, 0, 208, 35, 0, 22, 0, /* 1680 */ 35, 333, 195, 188, 186, 0, 370, 0, 0, 182, /* 1690 */ 181, 343, 0, 0, 47, 0, 0, 0, 382, 42, /* 1700 */ 384, 0, 0, 415, 0, 0, 418, 35, 155, 421, /* 1710 */ 422, 423, 424, 425, 426, 0, 428, 0, 370, 0, /* 1720 */ 0, 433, 155, 435, 0, 0, 0, 439, 440, 0, /* 1730 */ 382, 415, 384, 0, 418, 0, 0, 421, 422, 423, /* 1740 */ 424, 425, 426, 0, 428, 0, 0, 0, 0, 0, /* 1750 */ 0, 435, 333, 0, 0, 439, 440, 139, 42, 0, /* 1760 */ 0, 0, 343, 415, 0, 0, 418, 0, 0, 421, /* 1770 */ 422, 423, 424, 425, 426, 0, 428, 22, 0, 0, /* 1780 */ 333, 0, 0, 435, 22, 48, 48, 439, 440, 370, /* 1790 */ 343, 22, 0, 59, 0, 0, 0, 0, 35, 333, /* 1800 */ 59, 382, 44, 384, 14, 0, 0, 0, 42, 343, /* 1810 */ 59, 39, 0, 177, 0, 0, 40, 370, 47, 39, /* 1820 */ 47, 47, 375, 39, 0, 0, 0, 39, 35, 382, /* 1830 */ 0, 384, 0, 35, 415, 49, 370, 418, 49, 39, /* 1840 */ 421, 422, 423, 424, 425, 426, 35, 428, 382, 66, /* 1850 */ 384, 49, 39, 0, 435, 35, 39, 49, 439, 440, /* 1860 */ 0, 0, 415, 0, 0, 418, 333, 22, 421, 422, /* 1870 */ 423, 424, 425, 426, 35, 428, 343, 0, 44, 109, /* 1880 */ 44, 415, 35, 35, 418, 333, 35, 421, 422, 423, /* 1890 */ 424, 425, 426, 35, 428, 343, 22, 35, 107, 0, /* 1900 */ 35, 35, 35, 370, 35, 35, 22, 0, 375, 22, /* 1910 */ 51, 0, 0, 333, 22, 382, 35, 384, 35, 0, /* 1920 */ 35, 0, 370, 343, 22, 20, 35, 375, 35, 35, /* 1930 */ 464, 0, 101, 100, 382, 100, 384, 193, 35, 22, /* 1940 */ 0, 189, 22, 0, 0, 168, 256, 101, 415, 3, /* 1950 */ 370, 418, 44, 168, 421, 422, 423, 424, 425, 426, /* 1960 */ 44, 428, 382, 48, 384, 256, 48, 415, 100, 170, /* 1970 */ 418, 168, 100, 421, 422, 423, 424, 425, 426, 333, /* 1980 */ 428, 101, 96, 44, 175, 44, 98, 3, 256, 343, /* 1990 */ 101, 35, 47, 44, 47, 415, 100, 100, 418, 101, /* 2000 */ 100, 421, 422, 423, 424, 425, 426, 101, 428, 100, /* 2010 */ 430, 101, 44, 35, 35, 35, 370, 35, 35, 47, /* 2020 */ 44, 375, 47, 101, 101, 0, 0, 0, 382, 0, /* 2030 */ 384, 39, 100, 47, 100, 0, 101, 250, 39, 101, /* 2040 */ 333, 47, 100, 110, 44, 169, 171, 237, 100, 2, /* 2050 */ 343, 100, 100, 98, 22, 333, 98, 215, 47, 100, /* 2060 */ 100, 415, 101, 1, 418, 343, 101, 421, 422, 423, /* 2070 */ 424, 425, 426, 100, 428, 101, 22, 370, 47, 35, /* 2080 */ 111, 19, 375, 35, 35, 100, 122, 100, 217, 382, /* 2090 */ 333, 384, 370, 35, 101, 33, 100, 44, 101, 101, /* 2100 */ 343, 100, 100, 100, 382, 35, 384, 101, 101, 100, /* 2110 */ 35, 49, 122, 101, 100, 100, 35, 55, 56, 57, /* 2120 */ 58, 59, 415, 100, 100, 418, 22, 370, 421, 422, /* 2130 */ 423, 424, 425, 426, 66, 428, 65, 415, 122, 382, /* 2140 */ 418, 384, 122, 421, 422, 423, 424, 425, 426, 35, /* 2150 */ 428, 35, 35, 35, 35, 35, 333, 35, 35, 72, /* 2160 */ 35, 99, 35, 94, 102, 44, 343, 35, 22, 35, /* 2170 */ 35, 35, 415, 35, 72, 418, 333, 35, 421, 422, /* 2180 */ 423, 424, 425, 426, 35, 428, 343, 35, 35, 22, /* 2190 */ 35, 0, 35, 370, 49, 39, 134, 49, 35, 39, /* 2200 */ 0, 35, 0, 49, 39, 382, 333, 384, 0, 35, /* 2210 */ 49, 39, 0, 370, 35, 35, 343, 0, 22, 21, /* 2220 */ 476, 22, 21, 333, 476, 382, 22, 384, 476, 20, /* 2230 */ 476, 169, 476, 343, 476, 476, 174, 476, 415, 476, /* 2240 */ 476, 418, 476, 370, 421, 422, 423, 424, 425, 426, /* 2250 */ 476, 428, 476, 476, 476, 382, 194, 384, 415, 33, /* 2260 */ 370, 418, 476, 476, 421, 422, 423, 424, 425, 426, /* 2270 */ 333, 428, 382, 476, 384, 49, 476, 476, 476, 476, /* 2280 */ 343, 55, 56, 57, 58, 59, 476, 476, 415, 476, /* 2290 */ 333, 418, 476, 476, 421, 422, 423, 424, 425, 426, /* 2300 */ 343, 428, 476, 476, 476, 415, 476, 370, 418, 476, /* 2310 */ 476, 421, 422, 423, 424, 425, 426, 476, 428, 382, /* 2320 */ 476, 384, 476, 476, 476, 99, 476, 370, 102, 476, /* 2330 */ 476, 476, 476, 476, 476, 476, 476, 333, 476, 382, /* 2340 */ 476, 384, 476, 476, 476, 476, 476, 343, 476, 476, /* 2350 */ 476, 476, 415, 476, 476, 418, 476, 476, 421, 422, /* 2360 */ 423, 424, 425, 426, 476, 428, 476, 476, 476, 476, /* 2370 */ 476, 476, 415, 476, 370, 418, 476, 476, 421, 422, /* 2380 */ 423, 424, 425, 426, 333, 428, 382, 476, 384, 476, /* 2390 */ 476, 476, 476, 476, 343, 169, 170, 476, 476, 333, /* 2400 */ 174, 476, 176, 476, 476, 476, 476, 476, 476, 343, /* 2410 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 415, /* 2420 */ 194, 370, 418, 476, 476, 421, 422, 423, 424, 425, /* 2430 */ 426, 476, 428, 382, 333, 384, 370, 476, 476, 476, /* 2440 */ 476, 476, 476, 476, 343, 476, 476, 476, 382, 476, /* 2450 */ 384, 476, 476, 476, 476, 476, 476, 476, 476, 476, /* 2460 */ 476, 476, 476, 476, 476, 476, 415, 476, 476, 418, /* 2470 */ 476, 370, 421, 422, 423, 424, 425, 426, 476, 428, /* 2480 */ 476, 415, 476, 382, 418, 384, 476, 421, 422, 423, /* 2490 */ 424, 425, 426, 476, 428, 333, 476, 476, 476, 476, /* 2500 */ 476, 476, 476, 476, 476, 343, 476, 476, 476, 476, /* 2510 */ 333, 476, 476, 476, 476, 476, 415, 476, 476, 418, /* 2520 */ 343, 476, 421, 422, 423, 424, 425, 426, 476, 428, /* 2530 */ 333, 476, 370, 476, 476, 476, 476, 476, 476, 476, /* 2540 */ 343, 476, 476, 476, 382, 476, 384, 370, 476, 476, /* 2550 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 382, /* 2560 */ 476, 384, 476, 476, 476, 476, 476, 370, 476, 476, /* 2570 */ 476, 476, 476, 476, 476, 476, 476, 415, 476, 382, /* 2580 */ 418, 384, 476, 421, 422, 423, 424, 425, 426, 476, /* 2590 */ 428, 476, 415, 476, 333, 418, 476, 476, 421, 422, /* 2600 */ 423, 424, 425, 426, 343, 428, 476, 476, 476, 476, /* 2610 */ 476, 476, 415, 476, 333, 418, 476, 476, 421, 422, /* 2620 */ 423, 424, 425, 426, 343, 428, 476, 476, 476, 333, /* 2630 */ 476, 370, 476, 476, 476, 476, 476, 476, 476, 343, /* 2640 */ 476, 476, 476, 382, 476, 384, 476, 476, 476, 476, /* 2650 */ 476, 370, 476, 476, 476, 476, 476, 476, 476, 476, /* 2660 */ 476, 333, 476, 382, 476, 384, 370, 476, 476, 476, /* 2670 */ 476, 343, 476, 476, 476, 476, 415, 476, 382, 418, /* 2680 */ 384, 476, 421, 422, 423, 424, 425, 426, 476, 428, /* 2690 */ 476, 476, 476, 476, 476, 476, 415, 476, 370, 418, /* 2700 */ 476, 476, 421, 422, 423, 424, 425, 426, 476, 428, /* 2710 */ 382, 415, 384, 476, 418, 476, 476, 421, 422, 423, /* 2720 */ 424, 425, 426, 476, 428, 476, 476, 476, 333, 476, /* 2730 */ 476, 476, 476, 476, 476, 476, 476, 476, 343, 476, /* 2740 */ 476, 476, 476, 415, 476, 476, 418, 476, 476, 421, /* 2750 */ 422, 423, 424, 425, 426, 476, 428, 476, 476, 476, /* 2760 */ 333, 476, 476, 476, 476, 370, 476, 476, 476, 476, /* 2770 */ 343, 476, 476, 476, 476, 476, 476, 382, 333, 384, /* 2780 */ 476, 476, 476, 476, 476, 476, 476, 476, 343, 476, /* 2790 */ 476, 476, 476, 476, 476, 476, 476, 370, 476, 476, /* 2800 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 382, /* 2810 */ 415, 384, 476, 418, 476, 370, 421, 422, 423, 424, /* 2820 */ 425, 426, 476, 428, 476, 476, 476, 382, 476, 384, /* 2830 */ 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, /* 2840 */ 476, 476, 415, 476, 476, 418, 476, 476, 421, 422, /* 2850 */ 423, 424, 425, 426, 476, 428, 476, 476, 476, 476, /* 2860 */ 415, 476, 476, 418, 476, 476, 421, 422, 423, 424, /* 2870 */ 425, 426, 476, 428, }; #define YY_SHIFT_COUNT (761) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (2226) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 550, 0, 224, 0, 449, 449, 449, 449, 449, 449, /* 10 */ 449, 449, 449, 449, 449, 449, 673, 897, 897, 1121, /* 20 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, /* 30 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, /* 40 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, /* 50 */ 897, 148, 368, 93, 64, 140, 147, 322, 147, 64, /* 60 */ 64, 1346, 147, 1346, 1346, 314, 147, 76, 369, 111, /* 70 */ 111, 369, 656, 656, 18, 327, 7, 7, 111, 111, /* 80 */ 111, 111, 111, 111, 111, 145, 111, 111, 248, 76, /* 90 */ 111, 111, 363, 111, 76, 111, 145, 111, 145, 76, /* 100 */ 111, 111, 76, 111, 76, 76, 76, 111, 343, 223, /* 110 */ 189, 189, 405, 114, 443, 443, 443, 443, 443, 443, /* 120 */ 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, /* 130 */ 443, 443, 443, 672, 483, 18, 327, 293, 253, 253, /* 140 */ 253, 217, 622, 622, 293, 523, 523, 523, 248, 460, /* 150 */ 354, 76, 585, 76, 585, 585, 604, 670, 35, 35, /* 160 */ 35, 35, 35, 35, 35, 35, 2062, 636, 15, 167, /* 170 */ 16, 297, 515, 252, 454, 454, 373, 842, 389, 484, /* 180 */ 1058, 1163, 862, 892, 949, 941, 45, 949, 878, 964, /* 190 */ 1090, 1126, 1333, 1201, 1345, 1368, 1345, 1232, 1379, 1379, /* 200 */ 1345, 1232, 1232, 1311, 1315, 1379, 1329, 1379, 1379, 1379, /* 210 */ 1408, 1383, 1408, 1383, 1416, 248, 1424, 248, 1435, 1438, /* 220 */ 248, 1435, 248, 248, 248, 1379, 248, 1409, 1409, 1408, /* 230 */ 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, /* 240 */ 76, 1379, 1408, 585, 585, 585, 1301, 1410, 1416, 343, /* 250 */ 1319, 1335, 1424, 343, 1340, 1379, 1368, 1368, 585, 1274, /* 260 */ 1285, 585, 1274, 1285, 585, 585, 76, 1294, 1390, 1274, /* 270 */ 1297, 1302, 1327, 1126, 1293, 1309, 1312, 1336, 523, 1568, /* 280 */ 1379, 1435, 343, 343, 1574, 1285, 585, 585, 585, 585, /* 290 */ 585, 1285, 585, 1427, 343, 604, 343, 523, 1515, 1516, /* 300 */ 585, 670, 1379, 343, 1588, 1408, 2874, 2874, 2874, 2874, /* 310 */ 2874, 2874, 2874, 2874, 2874, 34, 2226, 238, 590, 198, /* 320 */ 539, 973, 794, 486, 1064, 925, 1030, 48, 48, 48, /* 330 */ 48, 48, 48, 48, 48, 48, 831, 612, 65, 65, /* 340 */ 549, 737, 700, 891, 262, 448, 1025, 717, 531, 531, /* 350 */ 962, 751, 906, 962, 962, 962, 1202, 1015, 513, 736, /* 360 */ 1008, 1092, 1194, 1101, 1102, 1103, 1142, 381, 1207, 1240, /* 370 */ 1241, 1247, 1011, 1209, 1220, 1153, 1221, 1223, 1226, 1139, /* 380 */ 999, 978, 1124, 1227, 1233, 1234, 1237, 1259, 1273, 1278, /* 390 */ 1275, 1183, 1276, 1314, 1289, 1318, 1320, 1321, 1322, 1326, /* 400 */ 770, 1215, 1224, 1248, 1255, 1254, 731, 1639, 1651, 1652, /* 410 */ 1611, 1654, 1621, 1452, 1628, 1629, 1630, 1458, 1667, 1633, /* 420 */ 1634, 1463, 1673, 1467, 1674, 1641, 1677, 1656, 1679, 1645, /* 430 */ 1487, 1495, 1498, 1685, 1687, 1688, 1507, 1509, 1692, 1693, /* 440 */ 1647, 1695, 1696, 1697, 1657, 1701, 1702, 1704, 1705, 1715, /* 450 */ 1717, 1719, 1720, 1553, 1672, 1724, 1567, 1725, 1726, 1729, /* 460 */ 1733, 1735, 1736, 1743, 1745, 1746, 1747, 1748, 1749, 1750, /* 470 */ 1753, 1754, 1764, 1716, 1759, 1760, 1761, 1765, 1767, 1768, /* 480 */ 1755, 1775, 1778, 1779, 1618, 1781, 1782, 1762, 1737, 1769, /* 490 */ 1738, 1792, 1734, 1763, 1794, 1741, 1795, 1751, 1796, 1797, /* 500 */ 1766, 1772, 1758, 1771, 1773, 1790, 1774, 1805, 1776, 1780, /* 510 */ 1806, 1807, 1812, 1784, 1636, 1814, 1815, 1824, 1783, 1825, /* 520 */ 1826, 1793, 1786, 1788, 1830, 1798, 1789, 1800, 1832, 1811, /* 530 */ 1802, 1813, 1853, 1820, 1808, 1817, 1860, 1861, 1863, 1864, /* 540 */ 1770, 1791, 1839, 1845, 1877, 1847, 1848, 1851, 1858, 1862, /* 550 */ 1865, 1866, 1834, 1836, 1867, 1869, 1874, 1870, 1899, 1884, /* 560 */ 1907, 1887, 1859, 1911, 1892, 1881, 1912, 1883, 1919, 1885, /* 570 */ 1921, 1902, 1905, 1891, 1893, 1894, 1831, 1833, 1931, 1777, /* 580 */ 1835, 1744, 1903, 1917, 1940, 1752, 1920, 1785, 1799, 1943, /* 590 */ 1944, 1803, 1809, 1946, 1908, 1690, 1868, 1846, 1872, 1915, /* 600 */ 1888, 1918, 1886, 1880, 1916, 1939, 1889, 1896, 1897, 1900, /* 610 */ 1898, 1941, 1945, 1947, 1909, 1949, 1709, 1906, 1910, 1984, /* 620 */ 1968, 1732, 1956, 1978, 1979, 1980, 1982, 1983, 1922, 1923, /* 630 */ 1972, 1787, 1976, 1975, 2025, 2026, 2027, 2029, 1932, 1992, /* 640 */ 1771, 1986, 1934, 1935, 1938, 1942, 1948, 1875, 1951, 2035, /* 650 */ 1999, 1876, 1952, 1933, 1771, 1994, 2000, 1955, 1810, 1958, /* 660 */ 2047, 2032, 1842, 1959, 1961, 1960, 1965, 1973, 1974, 2011, /* 670 */ 1985, 1987, 2031, 1993, 2054, 1871, 1996, 1969, 1997, 2044, /* 680 */ 2048, 2001, 1998, 2049, 2002, 2006, 2058, 2003, 2007, 2070, /* 690 */ 2009, 2012, 2075, 2014, 1964, 1990, 2016, 2020, 2015, 2053, /* 700 */ 2023, 2081, 2024, 2053, 2053, 2104, 2068, 2071, 2114, 2116, /* 710 */ 2117, 2118, 2119, 2120, 2122, 2123, 2087, 2069, 2121, 2125, /* 720 */ 2127, 2132, 2146, 2134, 2135, 2136, 2102, 1834, 2138, 1836, /* 730 */ 2142, 2149, 2152, 2153, 2167, 2155, 2191, 2157, 2145, 2156, /* 740 */ 2208, 2163, 2148, 2160, 2200, 2166, 2154, 2165, 2202, 2174, /* 750 */ 2161, 2172, 2212, 2179, 2180, 2217, 2196, 2198, 2199, 2204, /* 760 */ 2201, 2209, }; #define YY_REDUCE_COUNT (314) #define YY_REDUCE_MIN (-397) #define YY_REDUCE_MAX (2445) static const short yy_reduce_ofst[] = { /* 0 */ -156, 364, -82, 588, -20, 614, 804, 890, 1024, 1050, /* 10 */ 1118, 1222, 1288, 1316, 1348, 1419, 174, -333, 154, 450, /* 20 */ 674, 1447, 1533, 1466, 1097, 1552, 1580, 1646, 1707, 1722, /* 30 */ 1757, 1823, 1843, 1873, 1890, 1937, 1957, 2004, 2051, 2066, /* 40 */ 2101, 2162, 2177, 2197, 2261, 2281, 2296, 2328, 2395, 2427, /* 50 */ 2445, 383, 270, -397, 83, -395, 371, 416, 554, 75, /* 60 */ 501, 235, -139, 683, 786, -195, -165, -359, -80, -172, /* 70 */ -13, -383, -254, -207, -213, 149, -52, 290, -152, -5, /* 80 */ 263, 376, 407, 413, 453, 82, 508, 593, 462, 271, /* 90 */ 610, 631, 275, 657, 374, 725, 301, 745, 372, -170, /* 100 */ 748, 796, 399, 808, -83, 421, 605, 810, 260, -319, /* 110 */ -338, -338, -293, -327, 94, 237, 433, 502, 534, 669, /* 120 */ 693, 712, 802, 807, 809, 813, 815, 833, 834, 849, /* 130 */ 852, 854, 863, -275, -251, -131, 355, 467, -251, 437, /* 140 */ 559, 452, 445, 479, 726, -334, -85, 719, 681, 168, /* 150 */ 739, 268, 134, 805, 797, 799, 742, 841, -369, 580, /* 160 */ 713, 743, 895, 911, 913, 895, 879, 927, 485, 899, /* 170 */ 821, 835, 950, 840, 942, 943, 929, 929, 956, 912, /* 180 */ 965, 988, 951, 971, 922, 922, 905, 922, 932, 924, /* 190 */ 929, 961, 968, 983, 1000, 1004, 1002, 1005, 1059, 1060, /* 200 */ 1018, 1013, 1017, 1056, 1062, 1071, 1065, 1074, 1083, 1084, /* 210 */ 1094, 1096, 1098, 1099, 1027, 1091, 1069, 1104, 1112, 1067, /* 220 */ 1110, 1122, 1120, 1127, 1130, 1140, 1134, 1144, 1145, 1151, /* 230 */ 1117, 1123, 1125, 1128, 1129, 1131, 1133, 1135, 1136, 1137, /* 240 */ 1138, 1152, 1161, 1115, 1132, 1146, 1095, 1105, 1106, 1165, /* 250 */ 1141, 1116, 1143, 1181, 1147, 1189, 1155, 1156, 1167, 1081, /* 260 */ 1159, 1170, 1082, 1162, 1178, 1182, 929, 1107, 1111, 1149, /* 270 */ 1148, 1119, 1154, 1164, 1108, 1150, 1157, 922, 1243, 1169, /* 280 */ 1249, 1246, 1245, 1250, 1200, 1199, 1217, 1218, 1219, 1228, /* 290 */ 1229, 1205, 1230, 1214, 1261, 1251, 1265, 1271, 1180, 1252, /* 300 */ 1238, 1262, 1281, 1279, 1292, 1295, 1225, 1231, 1235, 1236, /* 310 */ 1268, 1272, 1277, 1286, 1307, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 10 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 20 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 30 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 40 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 50 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 60 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 70 */ 1719, 1719, 1719, 1719, 1992, 1719, 1719, 1719, 1719, 1719, /* 80 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1801, 1719, /* 90 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 100 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1799, 1985, /* 110 */ 2206, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 120 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 130 */ 1719, 1719, 1719, 1719, 2218, 1719, 1719, 1719, 2218, 2218, /* 140 */ 2218, 1799, 2178, 2178, 1719, 1719, 1719, 1719, 1801, 2050, /* 150 */ 1719, 1719, 1719, 1719, 1719, 1719, 1920, 1719, 1719, 1719, /* 160 */ 1719, 1719, 1944, 1719, 1719, 1719, 2044, 1719, 1719, 2243, /* 170 */ 2299, 1719, 1719, 2246, 1719, 1719, 1719, 1719, 1719, 1997, /* 180 */ 1719, 1719, 1874, 2233, 2210, 2224, 2283, 2211, 2208, 2227, /* 190 */ 1719, 2237, 1719, 2031, 1990, 1719, 1990, 1987, 1719, 1719, /* 200 */ 1990, 1987, 1987, 1863, 1859, 1719, 1857, 1719, 1719, 1719, /* 210 */ 1719, 1766, 1719, 1766, 1719, 1801, 1719, 1801, 1719, 1719, /* 220 */ 1801, 1719, 1801, 1801, 1801, 1719, 1801, 1779, 1779, 1719, /* 230 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 240 */ 1719, 1719, 1719, 1719, 1719, 1719, 2062, 2048, 1719, 1799, /* 250 */ 2042, 2040, 1719, 1799, 2038, 1719, 1719, 1719, 1719, 2254, /* 260 */ 2252, 1719, 2254, 2252, 1719, 1719, 1719, 2268, 2264, 2254, /* 270 */ 2272, 2270, 2239, 2237, 2302, 2289, 2285, 2224, 1719, 1719, /* 280 */ 1719, 1719, 1799, 1799, 1719, 2252, 1719, 1719, 1719, 1719, /* 290 */ 1719, 2252, 1719, 1719, 1799, 1719, 1799, 1719, 1719, 1890, /* 300 */ 1719, 1719, 1719, 1799, 1751, 1719, 2033, 2053, 2015, 2015, /* 310 */ 1923, 1923, 1923, 1802, 1724, 1719, 1719, 1719, 1719, 1719, /* 320 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 2267, 2266, 2133, /* 330 */ 1719, 2182, 2181, 2180, 2171, 2132, 1886, 1719, 2131, 2130, /* 340 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 2006, 2005, /* 350 */ 2124, 1719, 1719, 2125, 2123, 2122, 1719, 1719, 1719, 1719, /* 360 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 370 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 380 */ 2286, 2290, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 2207, /* 390 */ 1719, 1719, 1719, 2106, 1719, 1719, 1719, 1719, 1719, 1719, /* 400 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 410 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 420 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 430 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 440 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 450 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 460 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 470 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 480 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 490 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 500 */ 1719, 1719, 1756, 2111, 1719, 1719, 1719, 1719, 1719, 1719, /* 510 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 520 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 530 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 540 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 550 */ 1719, 1719, 1840, 1839, 1719, 1719, 1719, 1719, 1719, 1719, /* 560 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 570 */ 1719, 1719, 1719, 1719, 1719, 1719, 2115, 1719, 1719, 1719, /* 580 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 590 */ 1719, 1719, 1719, 2282, 2240, 1719, 1719, 1719, 1719, 1719, /* 600 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 610 */ 1719, 1719, 1719, 2106, 1719, 2265, 1719, 1719, 2280, 1719, /* 620 */ 2284, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 2217, 2213, /* 630 */ 1719, 1719, 2209, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 640 */ 2114, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 650 */ 1719, 1719, 1719, 1719, 2105, 1719, 2168, 1719, 1719, 1719, /* 660 */ 2202, 1719, 1719, 2153, 1719, 1719, 1719, 1719, 1719, 1719, /* 670 */ 1719, 1719, 1719, 2115, 1719, 2118, 1719, 1719, 1719, 1719, /* 680 */ 1719, 1917, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 690 */ 1719, 1719, 1719, 1719, 1902, 1900, 1899, 1898, 1719, 1930, /* 700 */ 1719, 1719, 1719, 1926, 1925, 1719, 1719, 1719, 1719, 1719, /* 710 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1820, 1719, /* 720 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1812, 1719, 1811, /* 730 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 740 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 750 */ 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, /* 760 */ 1719, 1719, }; /********** 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[] = { 0, /* $ => nothing */ 0, /* OR => nothing */ 0, /* AND => nothing */ 0, /* UNION => nothing */ 0, /* ALL => nothing */ 0, /* MINUS => nothing */ 0, /* EXCEPT => nothing */ 0, /* INTERSECT => nothing */ 0, /* NK_BITAND => nothing */ 0, /* NK_BITOR => nothing */ 0, /* NK_LSHIFT => nothing */ 0, /* NK_RSHIFT => nothing */ 0, /* NK_PLUS => nothing */ 0, /* NK_MINUS => nothing */ 0, /* NK_STAR => nothing */ 0, /* NK_SLASH => nothing */ 0, /* NK_REM => nothing */ 0, /* NK_CONCAT => nothing */ 0, /* CREATE => nothing */ 0, /* ACCOUNT => nothing */ 0, /* NK_ID => nothing */ 0, /* PASS => nothing */ 0, /* NK_STRING => nothing */ 0, /* ALTER => nothing */ 0, /* PPS => nothing */ 0, /* TSERIES => nothing */ 0, /* STORAGE => nothing */ 0, /* STREAMS => nothing */ 0, /* QTIME => nothing */ 0, /* DBS => nothing */ 0, /* USERS => nothing */ 0, /* CONNS => nothing */ 0, /* STATE => nothing */ 0, /* USER => nothing */ 0, /* ENABLE => nothing */ 0, /* NK_INTEGER => nothing */ 0, /* SYSINFO => nothing */ 0, /* DROP => nothing */ 0, /* GRANT => nothing */ 0, /* ON => nothing */ 0, /* TO => nothing */ 0, /* REVOKE => nothing */ 0, /* FROM => nothing */ 0, /* SUBSCRIBE => nothing */ 0, /* NK_COMMA => nothing */ 0, /* READ => nothing */ 0, /* WRITE => nothing */ 0, /* NK_DOT => nothing */ 0, /* WITH => nothing */ 0, /* DNODE => nothing */ 0, /* PORT => nothing */ 0, /* DNODES => nothing */ 0, /* NK_IPTOKEN => nothing */ 0, /* FORCE => nothing */ 0, /* LOCAL => nothing */ 0, /* QNODE => nothing */ 0, /* BNODE => nothing */ 0, /* SNODE => nothing */ 0, /* MNODE => nothing */ 0, /* DATABASE => nothing */ 0, /* USE => nothing */ 0, /* FLUSH => nothing */ 0, /* TRIM => nothing */ 0, /* COMPACT => nothing */ 0, /* IF => nothing */ 0, /* NOT => nothing */ 0, /* EXISTS => nothing */ 0, /* BUFFER => nothing */ 0, /* CACHEMODEL => nothing */ 0, /* CACHESIZE => nothing */ 0, /* COMP => nothing */ 0, /* DURATION => nothing */ 0, /* NK_VARIABLE => nothing */ 0, /* MAXROWS => nothing */ 0, /* MINROWS => nothing */ 0, /* KEEP => nothing */ 0, /* PAGES => nothing */ 0, /* PAGESIZE => nothing */ 0, /* TSDB_PAGESIZE => nothing */ 0, /* PRECISION => nothing */ 0, /* REPLICA => nothing */ 0, /* VGROUPS => nothing */ 0, /* SINGLE_STABLE => nothing */ 0, /* RETENTIONS => nothing */ 0, /* SCHEMALESS => nothing */ 0, /* WAL_LEVEL => nothing */ 0, /* WAL_FSYNC_PERIOD => nothing */ 0, /* WAL_RETENTION_PERIOD => nothing */ 0, /* WAL_RETENTION_SIZE => nothing */ 0, /* WAL_ROLL_PERIOD => nothing */ 0, /* WAL_SEGMENT_SIZE => nothing */ 0, /* STT_TRIGGER => nothing */ 0, /* TABLE_PREFIX => nothing */ 0, /* TABLE_SUFFIX => nothing */ 0, /* NK_COLON => nothing */ 0, /* MAX_SPEED => nothing */ 0, /* START => nothing */ 0, /* TIMESTAMP => nothing */ 279, /* END => ABORT */ 0, /* TABLE => nothing */ 0, /* NK_LP => nothing */ 0, /* NK_RP => nothing */ 0, /* STABLE => nothing */ 0, /* ADD => nothing */ 0, /* COLUMN => nothing */ 0, /* MODIFY => nothing */ 0, /* RENAME => nothing */ 0, /* TAG => nothing */ 0, /* SET => nothing */ 0, /* NK_EQ => nothing */ 0, /* USING => nothing */ 0, /* TAGS => nothing */ 0, /* BOOL => nothing */ 0, /* TINYINT => nothing */ 0, /* SMALLINT => nothing */ 0, /* INT => nothing */ 0, /* INTEGER => nothing */ 0, /* BIGINT => nothing */ 0, /* FLOAT => nothing */ 0, /* DOUBLE => nothing */ 0, /* BINARY => nothing */ 0, /* NCHAR => nothing */ 0, /* UNSIGNED => nothing */ 0, /* JSON => nothing */ 0, /* VARCHAR => nothing */ 0, /* MEDIUMBLOB => nothing */ 0, /* BLOB => nothing */ 0, /* VARBINARY => nothing */ 0, /* DECIMAL => nothing */ 0, /* COMMENT => nothing */ 0, /* MAX_DELAY => nothing */ 0, /* WATERMARK => nothing */ 0, /* ROLLUP => nothing */ 0, /* TTL => nothing */ 0, /* SMA => nothing */ 0, /* DELETE_MARK => nothing */ 0, /* FIRST => nothing */ 0, /* LAST => nothing */ 0, /* SHOW => nothing */ 0, /* PRIVILEGES => nothing */ 0, /* DATABASES => nothing */ 0, /* TABLES => nothing */ 0, /* STABLES => nothing */ 0, /* MNODES => nothing */ 0, /* QNODES => nothing */ 0, /* FUNCTIONS => nothing */ 0, /* INDEXES => nothing */ 0, /* ACCOUNTS => nothing */ 0, /* APPS => nothing */ 0, /* CONNECTIONS => nothing */ 0, /* LICENCES => nothing */ 0, /* GRANTS => nothing */ 0, /* QUERIES => nothing */ 0, /* SCORES => nothing */ 0, /* TOPICS => nothing */ 0, /* VARIABLES => nothing */ 0, /* CLUSTER => nothing */ 0, /* BNODES => nothing */ 0, /* SNODES => nothing */ 0, /* TRANSACTIONS => nothing */ 0, /* DISTRIBUTED => nothing */ 0, /* CONSUMERS => nothing */ 0, /* SUBSCRIPTIONS => nothing */ 0, /* VNODES => nothing */ 0, /* ALIVE => nothing */ 0, /* LIKE => nothing */ 0, /* TBNAME => nothing */ 0, /* QTAGS => nothing */ 0, /* AS => nothing */ 0, /* INDEX => nothing */ 0, /* FUNCTION => nothing */ 0, /* INTERVAL => nothing */ 0, /* COUNT => nothing */ 0, /* LAST_ROW => nothing */ 0, /* TOPIC => nothing */ 0, /* META => nothing */ 0, /* CONSUMER => nothing */ 0, /* GROUP => nothing */ 0, /* DESC => nothing */ 0, /* DESCRIBE => nothing */ 0, /* RESET => nothing */ 0, /* QUERY => nothing */ 0, /* CACHE => nothing */ 0, /* EXPLAIN => nothing */ 0, /* ANALYZE => nothing */ 0, /* VERBOSE => nothing */ 0, /* NK_BOOL => nothing */ 0, /* RATIO => nothing */ 0, /* NK_FLOAT => nothing */ 0, /* OUTPUTTYPE => nothing */ 0, /* AGGREGATE => nothing */ 0, /* BUFSIZE => nothing */ 0, /* LANGUAGE => nothing */ 0, /* REPLACE => nothing */ 0, /* STREAM => nothing */ 0, /* INTO => nothing */ 0, /* TRIGGER => nothing */ 0, /* AT_ONCE => nothing */ 0, /* WINDOW_CLOSE => nothing */ 0, /* IGNORE => nothing */ 0, /* EXPIRED => nothing */ 0, /* FILL_HISTORY => nothing */ 0, /* UPDATE => nothing */ 0, /* SUBTABLE => nothing */ 0, /* KILL => nothing */ 0, /* CONNECTION => nothing */ 0, /* TRANSACTION => nothing */ 0, /* BALANCE => nothing */ 0, /* VGROUP => nothing */ 0, /* LEADER => nothing */ 0, /* MERGE => nothing */ 0, /* REDISTRIBUTE => nothing */ 0, /* SPLIT => nothing */ 0, /* DELETE => nothing */ 0, /* INSERT => nothing */ 0, /* NULL => nothing */ 0, /* NK_QUESTION => nothing */ 0, /* NK_ARROW => nothing */ 0, /* ROWTS => nothing */ 0, /* QSTART => nothing */ 0, /* QEND => nothing */ 0, /* QDURATION => nothing */ 0, /* WSTART => nothing */ 0, /* WEND => nothing */ 0, /* WDURATION => nothing */ 0, /* IROWTS => nothing */ 0, /* ISFILLED => nothing */ 0, /* CAST => nothing */ 0, /* NOW => nothing */ 0, /* TODAY => nothing */ 0, /* TIMEZONE => nothing */ 0, /* CLIENT_VERSION => nothing */ 0, /* SERVER_VERSION => nothing */ 0, /* SERVER_STATUS => nothing */ 0, /* CURRENT_USER => nothing */ 0, /* CASE => nothing */ 0, /* WHEN => nothing */ 0, /* THEN => nothing */ 0, /* ELSE => nothing */ 0, /* BETWEEN => nothing */ 0, /* IS => nothing */ 0, /* NK_LT => nothing */ 0, /* NK_GT => nothing */ 0, /* NK_LE => nothing */ 0, /* NK_GE => nothing */ 0, /* NK_NE => nothing */ 0, /* MATCH => nothing */ 0, /* NMATCH => nothing */ 0, /* CONTAINS => nothing */ 0, /* IN => nothing */ 0, /* JOIN => nothing */ 0, /* INNER => nothing */ 0, /* SELECT => nothing */ 0, /* DISTINCT => nothing */ 0, /* WHERE => nothing */ 0, /* PARTITION => nothing */ 0, /* BY => nothing */ 0, /* SESSION => nothing */ 0, /* STATE_WINDOW => nothing */ 0, /* EVENT_WINDOW => nothing */ 0, /* SLIDING => nothing */ 0, /* FILL => nothing */ 0, /* VALUE => nothing */ 0, /* VALUE_F => nothing */ 0, /* NONE => nothing */ 0, /* PREV => nothing */ 0, /* NULL_F => nothing */ 0, /* LINEAR => nothing */ 0, /* NEXT => nothing */ 0, /* HAVING => nothing */ 0, /* RANGE => nothing */ 0, /* EVERY => nothing */ 0, /* ORDER => nothing */ 0, /* SLIMIT => nothing */ 0, /* SOFFSET => nothing */ 0, /* LIMIT => nothing */ 0, /* OFFSET => nothing */ 0, /* ASC => nothing */ 0, /* NULLS => nothing */ 0, /* ABORT => nothing */ 279, /* AFTER => ABORT */ 279, /* ATTACH => ABORT */ 279, /* BEFORE => ABORT */ 279, /* BEGIN => ABORT */ 279, /* BITAND => ABORT */ 279, /* BITNOT => ABORT */ 279, /* BITOR => ABORT */ 279, /* BLOCKS => ABORT */ 279, /* CHANGE => ABORT */ 279, /* COMMA => ABORT */ 279, /* CONCAT => ABORT */ 279, /* CONFLICT => ABORT */ 279, /* COPY => ABORT */ 279, /* DEFERRED => ABORT */ 279, /* DELIMITERS => ABORT */ 279, /* DETACH => ABORT */ 279, /* DIVIDE => ABORT */ 279, /* DOT => ABORT */ 279, /* EACH => ABORT */ 279, /* FAIL => ABORT */ 279, /* FILE => ABORT */ 279, /* FOR => ABORT */ 279, /* GLOB => ABORT */ 279, /* ID => ABORT */ 279, /* IMMEDIATE => ABORT */ 279, /* IMPORT => ABORT */ 279, /* INITIALLY => ABORT */ 279, /* INSTEAD => ABORT */ 279, /* ISNULL => ABORT */ 279, /* KEY => ABORT */ 279, /* MODULES => ABORT */ 279, /* NK_BITNOT => ABORT */ 279, /* NK_SEMI => ABORT */ 279, /* NOTNULL => ABORT */ 279, /* OF => ABORT */ 279, /* PLUS => ABORT */ 279, /* PRIVILEGE => ABORT */ 279, /* RAISE => ABORT */ 279, /* RESTRICT => ABORT */ 279, /* ROW => ABORT */ 279, /* SEMI => ABORT */ 279, /* STAR => ABORT */ 279, /* STATEMENT => ABORT */ 279, /* STRICT => ABORT */ 279, /* STRING => ABORT */ 279, /* TIMES => ABORT */ 279, /* VALUES => ABORT */ 279, /* VARIABLE => ABORT */ 279, /* VIEW => ABORT */ 279, /* WAL => ABORT */ }; #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 ParseARG_SDECL /* A place to hold %extra_argument */ ParseCTX_SDECL /* A place to hold %extra_context */ #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 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: **
    **
  • A FILE* to which trace output should be written. ** If NULL, then tracing is turned off. **
  • A prefix string written at the beginning of every ** line of trace output. If NULL, then tracing is ** turned off. **
** ** Outputs: ** None. */ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ 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 */ "$", /* 1 */ "OR", /* 2 */ "AND", /* 3 */ "UNION", /* 4 */ "ALL", /* 5 */ "MINUS", /* 6 */ "EXCEPT", /* 7 */ "INTERSECT", /* 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", /* 18 */ "CREATE", /* 19 */ "ACCOUNT", /* 20 */ "NK_ID", /* 21 */ "PASS", /* 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", /* 34 */ "ENABLE", /* 35 */ "NK_INTEGER", /* 36 */ "SYSINFO", /* 37 */ "DROP", /* 38 */ "GRANT", /* 39 */ "ON", /* 40 */ "TO", /* 41 */ "REVOKE", /* 42 */ "FROM", /* 43 */ "SUBSCRIBE", /* 44 */ "NK_COMMA", /* 45 */ "READ", /* 46 */ "WRITE", /* 47 */ "NK_DOT", /* 48 */ "WITH", /* 49 */ "DNODE", /* 50 */ "PORT", /* 51 */ "DNODES", /* 52 */ "NK_IPTOKEN", /* 53 */ "FORCE", /* 54 */ "LOCAL", /* 55 */ "QNODE", /* 56 */ "BNODE", /* 57 */ "SNODE", /* 58 */ "MNODE", /* 59 */ "DATABASE", /* 60 */ "USE", /* 61 */ "FLUSH", /* 62 */ "TRIM", /* 63 */ "COMPACT", /* 64 */ "IF", /* 65 */ "NOT", /* 66 */ "EXISTS", /* 67 */ "BUFFER", /* 68 */ "CACHEMODEL", /* 69 */ "CACHESIZE", /* 70 */ "COMP", /* 71 */ "DURATION", /* 72 */ "NK_VARIABLE", /* 73 */ "MAXROWS", /* 74 */ "MINROWS", /* 75 */ "KEEP", /* 76 */ "PAGES", /* 77 */ "PAGESIZE", /* 78 */ "TSDB_PAGESIZE", /* 79 */ "PRECISION", /* 80 */ "REPLICA", /* 81 */ "VGROUPS", /* 82 */ "SINGLE_STABLE", /* 83 */ "RETENTIONS", /* 84 */ "SCHEMALESS", /* 85 */ "WAL_LEVEL", /* 86 */ "WAL_FSYNC_PERIOD", /* 87 */ "WAL_RETENTION_PERIOD", /* 88 */ "WAL_RETENTION_SIZE", /* 89 */ "WAL_ROLL_PERIOD", /* 90 */ "WAL_SEGMENT_SIZE", /* 91 */ "STT_TRIGGER", /* 92 */ "TABLE_PREFIX", /* 93 */ "TABLE_SUFFIX", /* 94 */ "NK_COLON", /* 95 */ "MAX_SPEED", /* 96 */ "START", /* 97 */ "TIMESTAMP", /* 98 */ "END", /* 99 */ "TABLE", /* 100 */ "NK_LP", /* 101 */ "NK_RP", /* 102 */ "STABLE", /* 103 */ "ADD", /* 104 */ "COLUMN", /* 105 */ "MODIFY", /* 106 */ "RENAME", /* 107 */ "TAG", /* 108 */ "SET", /* 109 */ "NK_EQ", /* 110 */ "USING", /* 111 */ "TAGS", /* 112 */ "BOOL", /* 113 */ "TINYINT", /* 114 */ "SMALLINT", /* 115 */ "INT", /* 116 */ "INTEGER", /* 117 */ "BIGINT", /* 118 */ "FLOAT", /* 119 */ "DOUBLE", /* 120 */ "BINARY", /* 121 */ "NCHAR", /* 122 */ "UNSIGNED", /* 123 */ "JSON", /* 124 */ "VARCHAR", /* 125 */ "MEDIUMBLOB", /* 126 */ "BLOB", /* 127 */ "VARBINARY", /* 128 */ "DECIMAL", /* 129 */ "COMMENT", /* 130 */ "MAX_DELAY", /* 131 */ "WATERMARK", /* 132 */ "ROLLUP", /* 133 */ "TTL", /* 134 */ "SMA", /* 135 */ "DELETE_MARK", /* 136 */ "FIRST", /* 137 */ "LAST", /* 138 */ "SHOW", /* 139 */ "PRIVILEGES", /* 140 */ "DATABASES", /* 141 */ "TABLES", /* 142 */ "STABLES", /* 143 */ "MNODES", /* 144 */ "QNODES", /* 145 */ "FUNCTIONS", /* 146 */ "INDEXES", /* 147 */ "ACCOUNTS", /* 148 */ "APPS", /* 149 */ "CONNECTIONS", /* 150 */ "LICENCES", /* 151 */ "GRANTS", /* 152 */ "QUERIES", /* 153 */ "SCORES", /* 154 */ "TOPICS", /* 155 */ "VARIABLES", /* 156 */ "CLUSTER", /* 157 */ "BNODES", /* 158 */ "SNODES", /* 159 */ "TRANSACTIONS", /* 160 */ "DISTRIBUTED", /* 161 */ "CONSUMERS", /* 162 */ "SUBSCRIPTIONS", /* 163 */ "VNODES", /* 164 */ "ALIVE", /* 165 */ "LIKE", /* 166 */ "TBNAME", /* 167 */ "QTAGS", /* 168 */ "AS", /* 169 */ "INDEX", /* 170 */ "FUNCTION", /* 171 */ "INTERVAL", /* 172 */ "COUNT", /* 173 */ "LAST_ROW", /* 174 */ "TOPIC", /* 175 */ "META", /* 176 */ "CONSUMER", /* 177 */ "GROUP", /* 178 */ "DESC", /* 179 */ "DESCRIBE", /* 180 */ "RESET", /* 181 */ "QUERY", /* 182 */ "CACHE", /* 183 */ "EXPLAIN", /* 184 */ "ANALYZE", /* 185 */ "VERBOSE", /* 186 */ "NK_BOOL", /* 187 */ "RATIO", /* 188 */ "NK_FLOAT", /* 189 */ "OUTPUTTYPE", /* 190 */ "AGGREGATE", /* 191 */ "BUFSIZE", /* 192 */ "LANGUAGE", /* 193 */ "REPLACE", /* 194 */ "STREAM", /* 195 */ "INTO", /* 196 */ "TRIGGER", /* 197 */ "AT_ONCE", /* 198 */ "WINDOW_CLOSE", /* 199 */ "IGNORE", /* 200 */ "EXPIRED", /* 201 */ "FILL_HISTORY", /* 202 */ "UPDATE", /* 203 */ "SUBTABLE", /* 204 */ "KILL", /* 205 */ "CONNECTION", /* 206 */ "TRANSACTION", /* 207 */ "BALANCE", /* 208 */ "VGROUP", /* 209 */ "LEADER", /* 210 */ "MERGE", /* 211 */ "REDISTRIBUTE", /* 212 */ "SPLIT", /* 213 */ "DELETE", /* 214 */ "INSERT", /* 215 */ "NULL", /* 216 */ "NK_QUESTION", /* 217 */ "NK_ARROW", /* 218 */ "ROWTS", /* 219 */ "QSTART", /* 220 */ "QEND", /* 221 */ "QDURATION", /* 222 */ "WSTART", /* 223 */ "WEND", /* 224 */ "WDURATION", /* 225 */ "IROWTS", /* 226 */ "ISFILLED", /* 227 */ "CAST", /* 228 */ "NOW", /* 229 */ "TODAY", /* 230 */ "TIMEZONE", /* 231 */ "CLIENT_VERSION", /* 232 */ "SERVER_VERSION", /* 233 */ "SERVER_STATUS", /* 234 */ "CURRENT_USER", /* 235 */ "CASE", /* 236 */ "WHEN", /* 237 */ "THEN", /* 238 */ "ELSE", /* 239 */ "BETWEEN", /* 240 */ "IS", /* 241 */ "NK_LT", /* 242 */ "NK_GT", /* 243 */ "NK_LE", /* 244 */ "NK_GE", /* 245 */ "NK_NE", /* 246 */ "MATCH", /* 247 */ "NMATCH", /* 248 */ "CONTAINS", /* 249 */ "IN", /* 250 */ "JOIN", /* 251 */ "INNER", /* 252 */ "SELECT", /* 253 */ "DISTINCT", /* 254 */ "WHERE", /* 255 */ "PARTITION", /* 256 */ "BY", /* 257 */ "SESSION", /* 258 */ "STATE_WINDOW", /* 259 */ "EVENT_WINDOW", /* 260 */ "SLIDING", /* 261 */ "FILL", /* 262 */ "VALUE", /* 263 */ "VALUE_F", /* 264 */ "NONE", /* 265 */ "PREV", /* 266 */ "NULL_F", /* 267 */ "LINEAR", /* 268 */ "NEXT", /* 269 */ "HAVING", /* 270 */ "RANGE", /* 271 */ "EVERY", /* 272 */ "ORDER", /* 273 */ "SLIMIT", /* 274 */ "SOFFSET", /* 275 */ "LIMIT", /* 276 */ "OFFSET", /* 277 */ "ASC", /* 278 */ "NULLS", /* 279 */ "ABORT", /* 280 */ "AFTER", /* 281 */ "ATTACH", /* 282 */ "BEFORE", /* 283 */ "BEGIN", /* 284 */ "BITAND", /* 285 */ "BITNOT", /* 286 */ "BITOR", /* 287 */ "BLOCKS", /* 288 */ "CHANGE", /* 289 */ "COMMA", /* 290 */ "CONCAT", /* 291 */ "CONFLICT", /* 292 */ "COPY", /* 293 */ "DEFERRED", /* 294 */ "DELIMITERS", /* 295 */ "DETACH", /* 296 */ "DIVIDE", /* 297 */ "DOT", /* 298 */ "EACH", /* 299 */ "FAIL", /* 300 */ "FILE", /* 301 */ "FOR", /* 302 */ "GLOB", /* 303 */ "ID", /* 304 */ "IMMEDIATE", /* 305 */ "IMPORT", /* 306 */ "INITIALLY", /* 307 */ "INSTEAD", /* 308 */ "ISNULL", /* 309 */ "KEY", /* 310 */ "MODULES", /* 311 */ "NK_BITNOT", /* 312 */ "NK_SEMI", /* 313 */ "NOTNULL", /* 314 */ "OF", /* 315 */ "PLUS", /* 316 */ "PRIVILEGE", /* 317 */ "RAISE", /* 318 */ "RESTRICT", /* 319 */ "ROW", /* 320 */ "SEMI", /* 321 */ "STAR", /* 322 */ "STATEMENT", /* 323 */ "STRICT", /* 324 */ "STRING", /* 325 */ "TIMES", /* 326 */ "VALUES", /* 327 */ "VARIABLE", /* 328 */ "VIEW", /* 329 */ "WAL", /* 330 */ "cmd", /* 331 */ "account_options", /* 332 */ "alter_account_options", /* 333 */ "literal", /* 334 */ "alter_account_option", /* 335 */ "user_name", /* 336 */ "sysinfo_opt", /* 337 */ "privileges", /* 338 */ "priv_level", /* 339 */ "with_opt", /* 340 */ "priv_type_list", /* 341 */ "priv_type", /* 342 */ "db_name", /* 343 */ "table_name", /* 344 */ "topic_name", /* 345 */ "search_condition", /* 346 */ "dnode_endpoint", /* 347 */ "force_opt", /* 348 */ "not_exists_opt", /* 349 */ "db_options", /* 350 */ "exists_opt", /* 351 */ "alter_db_options", /* 352 */ "speed_opt", /* 353 */ "start_opt", /* 354 */ "end_opt", /* 355 */ "integer_list", /* 356 */ "variable_list", /* 357 */ "retention_list", /* 358 */ "signed", /* 359 */ "alter_db_option", /* 360 */ "retention", /* 361 */ "full_table_name", /* 362 */ "column_def_list", /* 363 */ "tags_def_opt", /* 364 */ "table_options", /* 365 */ "multi_create_clause", /* 366 */ "tags_def", /* 367 */ "multi_drop_clause", /* 368 */ "alter_table_clause", /* 369 */ "alter_table_options", /* 370 */ "column_name", /* 371 */ "type_name", /* 372 */ "signed_literal", /* 373 */ "create_subtable_clause", /* 374 */ "specific_cols_opt", /* 375 */ "expression_list", /* 376 */ "drop_table_clause", /* 377 */ "col_name_list", /* 378 */ "column_def", /* 379 */ "duration_list", /* 380 */ "rollup_func_list", /* 381 */ "alter_table_option", /* 382 */ "duration_literal", /* 383 */ "rollup_func_name", /* 384 */ "function_name", /* 385 */ "col_name", /* 386 */ "db_name_cond_opt", /* 387 */ "like_pattern_opt", /* 388 */ "table_name_cond", /* 389 */ "from_db_opt", /* 390 */ "tag_list_opt", /* 391 */ "tag_item", /* 392 */ "column_alias", /* 393 */ "full_index_name", /* 394 */ "index_options", /* 395 */ "index_name", /* 396 */ "func_list", /* 397 */ "sliding_opt", /* 398 */ "sma_stream_opt", /* 399 */ "func", /* 400 */ "sma_func_name", /* 401 */ "query_or_subquery", /* 402 */ "cgroup_name", /* 403 */ "analyze_opt", /* 404 */ "explain_options", /* 405 */ "insert_query", /* 406 */ "or_replace_opt", /* 407 */ "agg_func_opt", /* 408 */ "bufsize_opt", /* 409 */ "language_opt", /* 410 */ "stream_name", /* 411 */ "stream_options", /* 412 */ "col_list_opt", /* 413 */ "tag_def_or_ref_opt", /* 414 */ "subtable_opt", /* 415 */ "expression", /* 416 */ "dnode_list", /* 417 */ "where_clause_opt", /* 418 */ "literal_func", /* 419 */ "literal_list", /* 420 */ "table_alias", /* 421 */ "expr_or_subquery", /* 422 */ "pseudo_column", /* 423 */ "column_reference", /* 424 */ "function_expression", /* 425 */ "case_when_expression", /* 426 */ "star_func", /* 427 */ "star_func_para_list", /* 428 */ "noarg_func", /* 429 */ "other_para_list", /* 430 */ "star_func_para", /* 431 */ "when_then_list", /* 432 */ "case_when_else_opt", /* 433 */ "common_expression", /* 434 */ "when_then_expr", /* 435 */ "predicate", /* 436 */ "compare_op", /* 437 */ "in_op", /* 438 */ "in_predicate_value", /* 439 */ "boolean_value_expression", /* 440 */ "boolean_primary", /* 441 */ "from_clause_opt", /* 442 */ "table_reference_list", /* 443 */ "table_reference", /* 444 */ "table_primary", /* 445 */ "joined_table", /* 446 */ "alias_opt", /* 447 */ "subquery", /* 448 */ "parenthesized_joined_table", /* 449 */ "join_type", /* 450 */ "query_specification", /* 451 */ "set_quantifier_opt", /* 452 */ "select_list", /* 453 */ "partition_by_clause_opt", /* 454 */ "range_opt", /* 455 */ "every_opt", /* 456 */ "fill_opt", /* 457 */ "twindow_clause_opt", /* 458 */ "group_by_clause_opt", /* 459 */ "having_clause_opt", /* 460 */ "select_item", /* 461 */ "partition_list", /* 462 */ "partition_item", /* 463 */ "fill_mode", /* 464 */ "group_by_list", /* 465 */ "query_expression", /* 466 */ "query_simple", /* 467 */ "order_by_clause_opt", /* 468 */ "slimit_clause_opt", /* 469 */ "limit_clause_opt", /* 470 */ "union_query_expression", /* 471 */ "query_simple_or_subquery", /* 472 */ "sort_specification_list", /* 473 */ "sort_specification", /* 474 */ "ordering_specification_opt", /* 475 */ "null_ordering_opt", }; #endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. */ static const char *const yyRuleName[] = { /* 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 sysinfo_opt", /* 25 */ "cmd ::= ALTER USER user_name PASS NK_STRING", /* 26 */ "cmd ::= ALTER USER user_name ENABLE NK_INTEGER", /* 27 */ "cmd ::= ALTER USER user_name SYSINFO NK_INTEGER", /* 28 */ "cmd ::= DROP USER user_name", /* 29 */ "sysinfo_opt ::=", /* 30 */ "sysinfo_opt ::= SYSINFO NK_INTEGER", /* 31 */ "cmd ::= GRANT privileges ON priv_level with_opt TO user_name", /* 32 */ "cmd ::= REVOKE privileges ON priv_level with_opt FROM user_name", /* 33 */ "privileges ::= ALL", /* 34 */ "privileges ::= priv_type_list", /* 35 */ "privileges ::= SUBSCRIBE", /* 36 */ "priv_type_list ::= priv_type", /* 37 */ "priv_type_list ::= priv_type_list NK_COMMA priv_type", /* 38 */ "priv_type ::= READ", /* 39 */ "priv_type ::= WRITE", /* 40 */ "priv_level ::= NK_STAR NK_DOT NK_STAR", /* 41 */ "priv_level ::= db_name NK_DOT NK_STAR", /* 42 */ "priv_level ::= db_name NK_DOT table_name", /* 43 */ "priv_level ::= topic_name", /* 44 */ "with_opt ::=", /* 45 */ "with_opt ::= WITH search_condition", /* 46 */ "cmd ::= CREATE DNODE dnode_endpoint", /* 47 */ "cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER", /* 48 */ "cmd ::= DROP DNODE NK_INTEGER force_opt", /* 49 */ "cmd ::= DROP DNODE dnode_endpoint force_opt", /* 50 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING", /* 51 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING", /* 52 */ "cmd ::= ALTER ALL DNODES NK_STRING", /* 53 */ "cmd ::= ALTER ALL DNODES NK_STRING NK_STRING", /* 54 */ "dnode_endpoint ::= NK_STRING", /* 55 */ "dnode_endpoint ::= NK_ID", /* 56 */ "dnode_endpoint ::= NK_IPTOKEN", /* 57 */ "force_opt ::=", /* 58 */ "force_opt ::= FORCE", /* 59 */ "cmd ::= ALTER LOCAL NK_STRING", /* 60 */ "cmd ::= ALTER LOCAL NK_STRING NK_STRING", /* 61 */ "cmd ::= CREATE QNODE ON DNODE NK_INTEGER", /* 62 */ "cmd ::= DROP QNODE ON DNODE NK_INTEGER", /* 63 */ "cmd ::= CREATE BNODE ON DNODE NK_INTEGER", /* 64 */ "cmd ::= DROP BNODE ON DNODE NK_INTEGER", /* 65 */ "cmd ::= CREATE SNODE ON DNODE NK_INTEGER", /* 66 */ "cmd ::= DROP SNODE ON DNODE NK_INTEGER", /* 67 */ "cmd ::= CREATE MNODE ON DNODE NK_INTEGER", /* 68 */ "cmd ::= DROP MNODE ON DNODE NK_INTEGER", /* 69 */ "cmd ::= CREATE DATABASE not_exists_opt db_name db_options", /* 70 */ "cmd ::= DROP DATABASE exists_opt db_name", /* 71 */ "cmd ::= USE db_name", /* 72 */ "cmd ::= ALTER DATABASE db_name alter_db_options", /* 73 */ "cmd ::= FLUSH DATABASE db_name", /* 74 */ "cmd ::= TRIM DATABASE db_name speed_opt", /* 75 */ "cmd ::= COMPACT DATABASE db_name start_opt end_opt", /* 76 */ "not_exists_opt ::= IF NOT EXISTS", /* 77 */ "not_exists_opt ::=", /* 78 */ "exists_opt ::= IF EXISTS", /* 79 */ "exists_opt ::=", /* 80 */ "db_options ::=", /* 81 */ "db_options ::= db_options BUFFER NK_INTEGER", /* 82 */ "db_options ::= db_options CACHEMODEL NK_STRING", /* 83 */ "db_options ::= db_options CACHESIZE NK_INTEGER", /* 84 */ "db_options ::= db_options COMP NK_INTEGER", /* 85 */ "db_options ::= db_options DURATION NK_INTEGER", /* 86 */ "db_options ::= db_options DURATION NK_VARIABLE", /* 87 */ "db_options ::= db_options MAXROWS NK_INTEGER", /* 88 */ "db_options ::= db_options MINROWS NK_INTEGER", /* 89 */ "db_options ::= db_options KEEP integer_list", /* 90 */ "db_options ::= db_options KEEP variable_list", /* 91 */ "db_options ::= db_options PAGES NK_INTEGER", /* 92 */ "db_options ::= db_options PAGESIZE NK_INTEGER", /* 93 */ "db_options ::= db_options TSDB_PAGESIZE NK_INTEGER", /* 94 */ "db_options ::= db_options PRECISION NK_STRING", /* 95 */ "db_options ::= db_options REPLICA NK_INTEGER", /* 96 */ "db_options ::= db_options VGROUPS NK_INTEGER", /* 97 */ "db_options ::= db_options SINGLE_STABLE NK_INTEGER", /* 98 */ "db_options ::= db_options RETENTIONS retention_list", /* 99 */ "db_options ::= db_options SCHEMALESS NK_INTEGER", /* 100 */ "db_options ::= db_options WAL_LEVEL NK_INTEGER", /* 101 */ "db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER", /* 102 */ "db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER", /* 103 */ "db_options ::= db_options WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER", /* 104 */ "db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER", /* 105 */ "db_options ::= db_options WAL_RETENTION_SIZE NK_MINUS NK_INTEGER", /* 106 */ "db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER", /* 107 */ "db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER", /* 108 */ "db_options ::= db_options STT_TRIGGER NK_INTEGER", /* 109 */ "db_options ::= db_options TABLE_PREFIX signed", /* 110 */ "db_options ::= db_options TABLE_SUFFIX signed", /* 111 */ "alter_db_options ::= alter_db_option", /* 112 */ "alter_db_options ::= alter_db_options alter_db_option", /* 113 */ "alter_db_option ::= BUFFER NK_INTEGER", /* 114 */ "alter_db_option ::= CACHEMODEL NK_STRING", /* 115 */ "alter_db_option ::= CACHESIZE NK_INTEGER", /* 116 */ "alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER", /* 117 */ "alter_db_option ::= KEEP integer_list", /* 118 */ "alter_db_option ::= KEEP variable_list", /* 119 */ "alter_db_option ::= PAGES NK_INTEGER", /* 120 */ "alter_db_option ::= REPLICA NK_INTEGER", /* 121 */ "alter_db_option ::= WAL_LEVEL NK_INTEGER", /* 122 */ "alter_db_option ::= STT_TRIGGER NK_INTEGER", /* 123 */ "alter_db_option ::= MINROWS NK_INTEGER", /* 124 */ "alter_db_option ::= WAL_RETENTION_PERIOD NK_INTEGER", /* 125 */ "alter_db_option ::= WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER", /* 126 */ "alter_db_option ::= WAL_RETENTION_SIZE NK_INTEGER", /* 127 */ "alter_db_option ::= WAL_RETENTION_SIZE NK_MINUS NK_INTEGER", /* 128 */ "integer_list ::= NK_INTEGER", /* 129 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", /* 130 */ "variable_list ::= NK_VARIABLE", /* 131 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", /* 132 */ "retention_list ::= retention", /* 133 */ "retention_list ::= retention_list NK_COMMA retention", /* 134 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", /* 135 */ "speed_opt ::=", /* 136 */ "speed_opt ::= MAX_SPEED NK_INTEGER", /* 137 */ "start_opt ::=", /* 138 */ "start_opt ::= START WITH NK_INTEGER", /* 139 */ "start_opt ::= START WITH NK_STRING", /* 140 */ "start_opt ::= START WITH TIMESTAMP NK_STRING", /* 141 */ "end_opt ::=", /* 142 */ "end_opt ::= END WITH NK_INTEGER", /* 143 */ "end_opt ::= END WITH NK_STRING", /* 144 */ "end_opt ::= END WITH TIMESTAMP NK_STRING", /* 145 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", /* 146 */ "cmd ::= CREATE TABLE multi_create_clause", /* 147 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", /* 148 */ "cmd ::= DROP TABLE multi_drop_clause", /* 149 */ "cmd ::= DROP STABLE exists_opt full_table_name", /* 150 */ "cmd ::= ALTER TABLE alter_table_clause", /* 151 */ "cmd ::= ALTER STABLE alter_table_clause", /* 152 */ "alter_table_clause ::= full_table_name alter_table_options", /* 153 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", /* 154 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", /* 155 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", /* 156 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", /* 157 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", /* 158 */ "alter_table_clause ::= full_table_name DROP TAG column_name", /* 159 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", /* 160 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", /* 161 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal", /* 162 */ "multi_create_clause ::= create_subtable_clause", /* 163 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", /* 164 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options", /* 165 */ "multi_drop_clause ::= drop_table_clause", /* 166 */ "multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause", /* 167 */ "drop_table_clause ::= exists_opt full_table_name", /* 168 */ "specific_cols_opt ::=", /* 169 */ "specific_cols_opt ::= NK_LP col_name_list NK_RP", /* 170 */ "full_table_name ::= table_name", /* 171 */ "full_table_name ::= db_name NK_DOT table_name", /* 172 */ "column_def_list ::= column_def", /* 173 */ "column_def_list ::= column_def_list NK_COMMA column_def", /* 174 */ "column_def ::= column_name type_name", /* 175 */ "type_name ::= BOOL", /* 176 */ "type_name ::= TINYINT", /* 177 */ "type_name ::= SMALLINT", /* 178 */ "type_name ::= INT", /* 179 */ "type_name ::= INTEGER", /* 180 */ "type_name ::= BIGINT", /* 181 */ "type_name ::= FLOAT", /* 182 */ "type_name ::= DOUBLE", /* 183 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", /* 184 */ "type_name ::= TIMESTAMP", /* 185 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", /* 186 */ "type_name ::= TINYINT UNSIGNED", /* 187 */ "type_name ::= SMALLINT UNSIGNED", /* 188 */ "type_name ::= INT UNSIGNED", /* 189 */ "type_name ::= BIGINT UNSIGNED", /* 190 */ "type_name ::= JSON", /* 191 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", /* 192 */ "type_name ::= MEDIUMBLOB", /* 193 */ "type_name ::= BLOB", /* 194 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", /* 195 */ "type_name ::= DECIMAL", /* 196 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", /* 197 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", /* 198 */ "tags_def_opt ::=", /* 199 */ "tags_def_opt ::= tags_def", /* 200 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", /* 201 */ "table_options ::=", /* 202 */ "table_options ::= table_options COMMENT NK_STRING", /* 203 */ "table_options ::= table_options MAX_DELAY duration_list", /* 204 */ "table_options ::= table_options WATERMARK duration_list", /* 205 */ "table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP", /* 206 */ "table_options ::= table_options TTL NK_INTEGER", /* 207 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", /* 208 */ "table_options ::= table_options DELETE_MARK duration_list", /* 209 */ "alter_table_options ::= alter_table_option", /* 210 */ "alter_table_options ::= alter_table_options alter_table_option", /* 211 */ "alter_table_option ::= COMMENT NK_STRING", /* 212 */ "alter_table_option ::= TTL NK_INTEGER", /* 213 */ "duration_list ::= duration_literal", /* 214 */ "duration_list ::= duration_list NK_COMMA duration_literal", /* 215 */ "rollup_func_list ::= rollup_func_name", /* 216 */ "rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name", /* 217 */ "rollup_func_name ::= function_name", /* 218 */ "rollup_func_name ::= FIRST", /* 219 */ "rollup_func_name ::= LAST", /* 220 */ "col_name_list ::= col_name", /* 221 */ "col_name_list ::= col_name_list NK_COMMA col_name", /* 222 */ "col_name ::= column_name", /* 223 */ "cmd ::= SHOW DNODES", /* 224 */ "cmd ::= SHOW USERS", /* 225 */ "cmd ::= SHOW USER PRIVILEGES", /* 226 */ "cmd ::= SHOW DATABASES", /* 227 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", /* 228 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", /* 229 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", /* 230 */ "cmd ::= SHOW MNODES", /* 231 */ "cmd ::= SHOW QNODES", /* 232 */ "cmd ::= SHOW FUNCTIONS", /* 233 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", /* 234 */ "cmd ::= SHOW STREAMS", /* 235 */ "cmd ::= SHOW ACCOUNTS", /* 236 */ "cmd ::= SHOW APPS", /* 237 */ "cmd ::= SHOW CONNECTIONS", /* 238 */ "cmd ::= SHOW LICENCES", /* 239 */ "cmd ::= SHOW GRANTS", /* 240 */ "cmd ::= SHOW CREATE DATABASE db_name", /* 241 */ "cmd ::= SHOW CREATE TABLE full_table_name", /* 242 */ "cmd ::= SHOW CREATE STABLE full_table_name", /* 243 */ "cmd ::= SHOW QUERIES", /* 244 */ "cmd ::= SHOW SCORES", /* 245 */ "cmd ::= SHOW TOPICS", /* 246 */ "cmd ::= SHOW VARIABLES", /* 247 */ "cmd ::= SHOW CLUSTER VARIABLES", /* 248 */ "cmd ::= SHOW LOCAL VARIABLES", /* 249 */ "cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt", /* 250 */ "cmd ::= SHOW BNODES", /* 251 */ "cmd ::= SHOW SNODES", /* 252 */ "cmd ::= SHOW CLUSTER", /* 253 */ "cmd ::= SHOW TRANSACTIONS", /* 254 */ "cmd ::= SHOW TABLE DISTRIBUTED full_table_name", /* 255 */ "cmd ::= SHOW CONSUMERS", /* 256 */ "cmd ::= SHOW SUBSCRIPTIONS", /* 257 */ "cmd ::= SHOW TAGS FROM table_name_cond from_db_opt", /* 258 */ "cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt", /* 259 */ "cmd ::= SHOW VNODES NK_INTEGER", /* 260 */ "cmd ::= SHOW VNODES NK_STRING", /* 261 */ "cmd ::= SHOW db_name_cond_opt ALIVE", /* 262 */ "cmd ::= SHOW CLUSTER ALIVE", /* 263 */ "db_name_cond_opt ::=", /* 264 */ "db_name_cond_opt ::= db_name NK_DOT", /* 265 */ "like_pattern_opt ::=", /* 266 */ "like_pattern_opt ::= LIKE NK_STRING", /* 267 */ "table_name_cond ::= table_name", /* 268 */ "from_db_opt ::=", /* 269 */ "from_db_opt ::= FROM db_name", /* 270 */ "tag_list_opt ::=", /* 271 */ "tag_list_opt ::= tag_item", /* 272 */ "tag_list_opt ::= tag_list_opt NK_COMMA tag_item", /* 273 */ "tag_item ::= TBNAME", /* 274 */ "tag_item ::= QTAGS", /* 275 */ "tag_item ::= column_name", /* 276 */ "tag_item ::= column_name column_alias", /* 277 */ "tag_item ::= column_name AS column_alias", /* 278 */ "cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options", /* 279 */ "cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP", /* 280 */ "cmd ::= DROP INDEX exists_opt full_index_name", /* 281 */ "full_index_name ::= index_name", /* 282 */ "full_index_name ::= db_name NK_DOT index_name", /* 283 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt", /* 284 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt", /* 285 */ "func_list ::= func", /* 286 */ "func_list ::= func_list NK_COMMA func", /* 287 */ "func ::= sma_func_name NK_LP expression_list NK_RP", /* 288 */ "sma_func_name ::= function_name", /* 289 */ "sma_func_name ::= COUNT", /* 290 */ "sma_func_name ::= FIRST", /* 291 */ "sma_func_name ::= LAST", /* 292 */ "sma_func_name ::= LAST_ROW", /* 293 */ "sma_stream_opt ::=", /* 294 */ "sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal", /* 295 */ "sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal", /* 296 */ "sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal", /* 297 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery", /* 298 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name", /* 299 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name", /* 300 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name", /* 301 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name", /* 302 */ "cmd ::= DROP TOPIC exists_opt topic_name", /* 303 */ "cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name", /* 304 */ "cmd ::= DESC full_table_name", /* 305 */ "cmd ::= DESCRIBE full_table_name", /* 306 */ "cmd ::= RESET QUERY CACHE", /* 307 */ "cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery", /* 308 */ "cmd ::= EXPLAIN analyze_opt explain_options insert_query", /* 309 */ "analyze_opt ::=", /* 310 */ "analyze_opt ::= ANALYZE", /* 311 */ "explain_options ::=", /* 312 */ "explain_options ::= explain_options VERBOSE NK_BOOL", /* 313 */ "explain_options ::= explain_options RATIO NK_FLOAT", /* 314 */ "cmd ::= CREATE or_replace_opt agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt language_opt", /* 315 */ "cmd ::= DROP FUNCTION exists_opt function_name", /* 316 */ "agg_func_opt ::=", /* 317 */ "agg_func_opt ::= AGGREGATE", /* 318 */ "bufsize_opt ::=", /* 319 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", /* 320 */ "language_opt ::=", /* 321 */ "language_opt ::= LANGUAGE NK_STRING", /* 322 */ "or_replace_opt ::=", /* 323 */ "or_replace_opt ::= OR REPLACE", /* 324 */ "cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery", /* 325 */ "cmd ::= DROP STREAM exists_opt stream_name", /* 326 */ "col_list_opt ::=", /* 327 */ "col_list_opt ::= NK_LP col_name_list NK_RP", /* 328 */ "tag_def_or_ref_opt ::=", /* 329 */ "tag_def_or_ref_opt ::= tags_def", /* 330 */ "tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP", /* 331 */ "stream_options ::=", /* 332 */ "stream_options ::= stream_options TRIGGER AT_ONCE", /* 333 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", /* 334 */ "stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal", /* 335 */ "stream_options ::= stream_options WATERMARK duration_literal", /* 336 */ "stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER", /* 337 */ "stream_options ::= stream_options FILL_HISTORY NK_INTEGER", /* 338 */ "stream_options ::= stream_options DELETE_MARK duration_literal", /* 339 */ "stream_options ::= stream_options IGNORE UPDATE NK_INTEGER", /* 340 */ "subtable_opt ::=", /* 341 */ "subtable_opt ::= SUBTABLE NK_LP expression NK_RP", /* 342 */ "cmd ::= KILL CONNECTION NK_INTEGER", /* 343 */ "cmd ::= KILL QUERY NK_STRING", /* 344 */ "cmd ::= KILL TRANSACTION NK_INTEGER", /* 345 */ "cmd ::= BALANCE VGROUP", /* 346 */ "cmd ::= BALANCE VGROUP LEADER", /* 347 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", /* 348 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", /* 349 */ "cmd ::= SPLIT VGROUP NK_INTEGER", /* 350 */ "dnode_list ::= DNODE NK_INTEGER", /* 351 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", /* 352 */ "cmd ::= DELETE FROM full_table_name where_clause_opt", /* 353 */ "cmd ::= query_or_subquery", /* 354 */ "cmd ::= insert_query", /* 355 */ "insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery", /* 356 */ "insert_query ::= INSERT INTO full_table_name query_or_subquery", /* 357 */ "literal ::= NK_INTEGER", /* 358 */ "literal ::= NK_FLOAT", /* 359 */ "literal ::= NK_STRING", /* 360 */ "literal ::= NK_BOOL", /* 361 */ "literal ::= TIMESTAMP NK_STRING", /* 362 */ "literal ::= duration_literal", /* 363 */ "literal ::= NULL", /* 364 */ "literal ::= NK_QUESTION", /* 365 */ "duration_literal ::= NK_VARIABLE", /* 366 */ "signed ::= NK_INTEGER", /* 367 */ "signed ::= NK_PLUS NK_INTEGER", /* 368 */ "signed ::= NK_MINUS NK_INTEGER", /* 369 */ "signed ::= NK_FLOAT", /* 370 */ "signed ::= NK_PLUS NK_FLOAT", /* 371 */ "signed ::= NK_MINUS NK_FLOAT", /* 372 */ "signed_literal ::= signed", /* 373 */ "signed_literal ::= NK_STRING", /* 374 */ "signed_literal ::= NK_BOOL", /* 375 */ "signed_literal ::= TIMESTAMP NK_STRING", /* 376 */ "signed_literal ::= duration_literal", /* 377 */ "signed_literal ::= NULL", /* 378 */ "signed_literal ::= literal_func", /* 379 */ "signed_literal ::= NK_QUESTION", /* 380 */ "literal_list ::= signed_literal", /* 381 */ "literal_list ::= literal_list NK_COMMA signed_literal", /* 382 */ "db_name ::= NK_ID", /* 383 */ "table_name ::= NK_ID", /* 384 */ "column_name ::= NK_ID", /* 385 */ "function_name ::= NK_ID", /* 386 */ "table_alias ::= NK_ID", /* 387 */ "column_alias ::= NK_ID", /* 388 */ "user_name ::= NK_ID", /* 389 */ "topic_name ::= NK_ID", /* 390 */ "stream_name ::= NK_ID", /* 391 */ "cgroup_name ::= NK_ID", /* 392 */ "index_name ::= NK_ID", /* 393 */ "expr_or_subquery ::= expression", /* 394 */ "expression ::= literal", /* 395 */ "expression ::= pseudo_column", /* 396 */ "expression ::= column_reference", /* 397 */ "expression ::= function_expression", /* 398 */ "expression ::= case_when_expression", /* 399 */ "expression ::= NK_LP expression NK_RP", /* 400 */ "expression ::= NK_PLUS expr_or_subquery", /* 401 */ "expression ::= NK_MINUS expr_or_subquery", /* 402 */ "expression ::= expr_or_subquery NK_PLUS expr_or_subquery", /* 403 */ "expression ::= expr_or_subquery NK_MINUS expr_or_subquery", /* 404 */ "expression ::= expr_or_subquery NK_STAR expr_or_subquery", /* 405 */ "expression ::= expr_or_subquery NK_SLASH expr_or_subquery", /* 406 */ "expression ::= expr_or_subquery NK_REM expr_or_subquery", /* 407 */ "expression ::= column_reference NK_ARROW NK_STRING", /* 408 */ "expression ::= expr_or_subquery NK_BITAND expr_or_subquery", /* 409 */ "expression ::= expr_or_subquery NK_BITOR expr_or_subquery", /* 410 */ "expression_list ::= expr_or_subquery", /* 411 */ "expression_list ::= expression_list NK_COMMA expr_or_subquery", /* 412 */ "column_reference ::= column_name", /* 413 */ "column_reference ::= table_name NK_DOT column_name", /* 414 */ "pseudo_column ::= ROWTS", /* 415 */ "pseudo_column ::= TBNAME", /* 416 */ "pseudo_column ::= table_name NK_DOT TBNAME", /* 417 */ "pseudo_column ::= QSTART", /* 418 */ "pseudo_column ::= QEND", /* 419 */ "pseudo_column ::= QDURATION", /* 420 */ "pseudo_column ::= WSTART", /* 421 */ "pseudo_column ::= WEND", /* 422 */ "pseudo_column ::= WDURATION", /* 423 */ "pseudo_column ::= IROWTS", /* 424 */ "pseudo_column ::= ISFILLED", /* 425 */ "pseudo_column ::= QTAGS", /* 426 */ "function_expression ::= function_name NK_LP expression_list NK_RP", /* 427 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", /* 428 */ "function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP", /* 429 */ "function_expression ::= literal_func", /* 430 */ "literal_func ::= noarg_func NK_LP NK_RP", /* 431 */ "literal_func ::= NOW", /* 432 */ "noarg_func ::= NOW", /* 433 */ "noarg_func ::= TODAY", /* 434 */ "noarg_func ::= TIMEZONE", /* 435 */ "noarg_func ::= DATABASE", /* 436 */ "noarg_func ::= CLIENT_VERSION", /* 437 */ "noarg_func ::= SERVER_VERSION", /* 438 */ "noarg_func ::= SERVER_STATUS", /* 439 */ "noarg_func ::= CURRENT_USER", /* 440 */ "noarg_func ::= USER", /* 441 */ "star_func ::= COUNT", /* 442 */ "star_func ::= FIRST", /* 443 */ "star_func ::= LAST", /* 444 */ "star_func ::= LAST_ROW", /* 445 */ "star_func_para_list ::= NK_STAR", /* 446 */ "star_func_para_list ::= other_para_list", /* 447 */ "other_para_list ::= star_func_para", /* 448 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", /* 449 */ "star_func_para ::= expr_or_subquery", /* 450 */ "star_func_para ::= table_name NK_DOT NK_STAR", /* 451 */ "case_when_expression ::= CASE when_then_list case_when_else_opt END", /* 452 */ "case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END", /* 453 */ "when_then_list ::= when_then_expr", /* 454 */ "when_then_list ::= when_then_list when_then_expr", /* 455 */ "when_then_expr ::= WHEN common_expression THEN common_expression", /* 456 */ "case_when_else_opt ::=", /* 457 */ "case_when_else_opt ::= ELSE common_expression", /* 458 */ "predicate ::= expr_or_subquery compare_op expr_or_subquery", /* 459 */ "predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery", /* 460 */ "predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery", /* 461 */ "predicate ::= expr_or_subquery IS NULL", /* 462 */ "predicate ::= expr_or_subquery IS NOT NULL", /* 463 */ "predicate ::= expr_or_subquery in_op in_predicate_value", /* 464 */ "compare_op ::= NK_LT", /* 465 */ "compare_op ::= NK_GT", /* 466 */ "compare_op ::= NK_LE", /* 467 */ "compare_op ::= NK_GE", /* 468 */ "compare_op ::= NK_NE", /* 469 */ "compare_op ::= NK_EQ", /* 470 */ "compare_op ::= LIKE", /* 471 */ "compare_op ::= NOT LIKE", /* 472 */ "compare_op ::= MATCH", /* 473 */ "compare_op ::= NMATCH", /* 474 */ "compare_op ::= CONTAINS", /* 475 */ "in_op ::= IN", /* 476 */ "in_op ::= NOT IN", /* 477 */ "in_predicate_value ::= NK_LP literal_list NK_RP", /* 478 */ "boolean_value_expression ::= boolean_primary", /* 479 */ "boolean_value_expression ::= NOT boolean_primary", /* 480 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", /* 481 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", /* 482 */ "boolean_primary ::= predicate", /* 483 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", /* 484 */ "common_expression ::= expr_or_subquery", /* 485 */ "common_expression ::= boolean_value_expression", /* 486 */ "from_clause_opt ::=", /* 487 */ "from_clause_opt ::= FROM table_reference_list", /* 488 */ "table_reference_list ::= table_reference", /* 489 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", /* 490 */ "table_reference ::= table_primary", /* 491 */ "table_reference ::= joined_table", /* 492 */ "table_primary ::= table_name alias_opt", /* 493 */ "table_primary ::= db_name NK_DOT table_name alias_opt", /* 494 */ "table_primary ::= subquery alias_opt", /* 495 */ "table_primary ::= parenthesized_joined_table", /* 496 */ "alias_opt ::=", /* 497 */ "alias_opt ::= table_alias", /* 498 */ "alias_opt ::= AS table_alias", /* 499 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", /* 500 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", /* 501 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", /* 502 */ "join_type ::=", /* 503 */ "join_type ::= INNER", /* 504 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt", /* 505 */ "set_quantifier_opt ::=", /* 506 */ "set_quantifier_opt ::= DISTINCT", /* 507 */ "set_quantifier_opt ::= ALL", /* 508 */ "select_list ::= select_item", /* 509 */ "select_list ::= select_list NK_COMMA select_item", /* 510 */ "select_item ::= NK_STAR", /* 511 */ "select_item ::= common_expression", /* 512 */ "select_item ::= common_expression column_alias", /* 513 */ "select_item ::= common_expression AS column_alias", /* 514 */ "select_item ::= table_name NK_DOT NK_STAR", /* 515 */ "where_clause_opt ::=", /* 516 */ "where_clause_opt ::= WHERE search_condition", /* 517 */ "partition_by_clause_opt ::=", /* 518 */ "partition_by_clause_opt ::= PARTITION BY partition_list", /* 519 */ "partition_list ::= partition_item", /* 520 */ "partition_list ::= partition_list NK_COMMA partition_item", /* 521 */ "partition_item ::= expr_or_subquery", /* 522 */ "partition_item ::= expr_or_subquery column_alias", /* 523 */ "partition_item ::= expr_or_subquery AS column_alias", /* 524 */ "twindow_clause_opt ::=", /* 525 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", /* 526 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP", /* 527 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", /* 528 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", /* 529 */ "twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition", /* 530 */ "sliding_opt ::=", /* 531 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", /* 532 */ "fill_opt ::=", /* 533 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", /* 534 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA expression_list NK_RP", /* 535 */ "fill_opt ::= FILL NK_LP VALUE_F NK_COMMA expression_list NK_RP", /* 536 */ "fill_mode ::= NONE", /* 537 */ "fill_mode ::= PREV", /* 538 */ "fill_mode ::= NULL", /* 539 */ "fill_mode ::= NULL_F", /* 540 */ "fill_mode ::= LINEAR", /* 541 */ "fill_mode ::= NEXT", /* 542 */ "group_by_clause_opt ::=", /* 543 */ "group_by_clause_opt ::= GROUP BY group_by_list", /* 544 */ "group_by_list ::= expr_or_subquery", /* 545 */ "group_by_list ::= group_by_list NK_COMMA expr_or_subquery", /* 546 */ "having_clause_opt ::=", /* 547 */ "having_clause_opt ::= HAVING search_condition", /* 548 */ "range_opt ::=", /* 549 */ "range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP", /* 550 */ "every_opt ::=", /* 551 */ "every_opt ::= EVERY NK_LP duration_literal NK_RP", /* 552 */ "query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt", /* 553 */ "query_simple ::= query_specification", /* 554 */ "query_simple ::= union_query_expression", /* 555 */ "union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery", /* 556 */ "union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery", /* 557 */ "query_simple_or_subquery ::= query_simple", /* 558 */ "query_simple_or_subquery ::= subquery", /* 559 */ "query_or_subquery ::= query_expression", /* 560 */ "query_or_subquery ::= subquery", /* 561 */ "order_by_clause_opt ::=", /* 562 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", /* 563 */ "slimit_clause_opt ::=", /* 564 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", /* 565 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", /* 566 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 567 */ "limit_clause_opt ::=", /* 568 */ "limit_clause_opt ::= LIMIT NK_INTEGER", /* 569 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", /* 570 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 571 */ "subquery ::= NK_LP query_expression NK_RP", /* 572 */ "subquery ::= NK_LP subquery NK_RP", /* 573 */ "search_condition ::= common_expression", /* 574 */ "sort_specification_list ::= sort_specification", /* 575 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", /* 576 */ "sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt", /* 577 */ "ordering_specification_opt ::=", /* 578 */ "ordering_specification_opt ::= ASC", /* 579 */ "ordering_specification_opt ::= DESC", /* 580 */ "null_ordering_opt ::=", /* 581 */ "null_ordering_opt ::= NULLS FIRST", /* 582 */ "null_ordering_opt ::= NULLS LAST", }; #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 ){ pNew = malloc(newSize*sizeof(pNew[0])); if( pNew ) pNew[0] = p->yystk0; }else{ pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); } 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 ** second argument to ParseAlloc() below. This can be changed by ** 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. */ void ParseInit(void *yypRawParser ParseCTX_PDECL){ yyParser *yypParser = (yyParser*)yypRawParser; ParseCTX_STORE #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 } #ifndef Parse_ENGINEALWAYSONSTACK /* ** 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 ** to Parse and ParseFree. */ void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE) ParseCTX_PDECL){ yyParser *yypParser; yypParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); if( yypParser ){ ParseCTX_STORE ParseInit(yypParser ParseCTX_PARAM); } return (void*)yypParser; } #endif /* Parse_ENGINEALWAYSONSTACK */ /* 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 */ ){ ParseARG_FETCH ParseCTX_FETCH 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 */ case 330: /* cmd */ case 333: /* literal */ case 339: /* with_opt */ case 345: /* search_condition */ case 349: /* db_options */ case 351: /* alter_db_options */ case 353: /* start_opt */ case 354: /* end_opt */ case 358: /* signed */ case 360: /* retention */ case 361: /* full_table_name */ case 364: /* table_options */ case 368: /* alter_table_clause */ case 369: /* alter_table_options */ case 372: /* signed_literal */ case 373: /* create_subtable_clause */ case 376: /* drop_table_clause */ case 378: /* column_def */ case 382: /* duration_literal */ case 383: /* rollup_func_name */ case 385: /* col_name */ case 386: /* db_name_cond_opt */ case 387: /* like_pattern_opt */ case 388: /* table_name_cond */ case 389: /* from_db_opt */ case 391: /* tag_item */ case 393: /* full_index_name */ case 394: /* index_options */ case 397: /* sliding_opt */ case 398: /* sma_stream_opt */ case 399: /* func */ case 401: /* query_or_subquery */ case 404: /* explain_options */ case 405: /* insert_query */ case 411: /* stream_options */ case 414: /* subtable_opt */ case 415: /* expression */ case 417: /* where_clause_opt */ case 418: /* literal_func */ case 421: /* expr_or_subquery */ case 422: /* pseudo_column */ case 423: /* column_reference */ case 424: /* function_expression */ case 425: /* case_when_expression */ case 430: /* star_func_para */ case 432: /* case_when_else_opt */ case 433: /* common_expression */ case 434: /* when_then_expr */ case 435: /* predicate */ case 438: /* in_predicate_value */ case 439: /* boolean_value_expression */ case 440: /* boolean_primary */ case 441: /* from_clause_opt */ case 442: /* table_reference_list */ case 443: /* table_reference */ case 444: /* table_primary */ case 445: /* joined_table */ case 447: /* subquery */ case 448: /* parenthesized_joined_table */ case 450: /* query_specification */ case 454: /* range_opt */ case 455: /* every_opt */ case 456: /* fill_opt */ case 457: /* twindow_clause_opt */ case 459: /* having_clause_opt */ case 460: /* select_item */ case 462: /* partition_item */ case 465: /* query_expression */ case 466: /* query_simple */ case 468: /* slimit_clause_opt */ case 469: /* limit_clause_opt */ case 470: /* union_query_expression */ case 471: /* query_simple_or_subquery */ case 473: /* sort_specification */ { nodesDestroyNode((yypminor->yy448)); } break; case 331: /* account_options */ case 332: /* alter_account_options */ case 334: /* alter_account_option */ case 352: /* speed_opt */ case 408: /* bufsize_opt */ { } break; case 335: /* user_name */ case 342: /* db_name */ case 343: /* table_name */ case 344: /* topic_name */ case 346: /* dnode_endpoint */ case 370: /* column_name */ case 384: /* function_name */ case 392: /* column_alias */ case 395: /* index_name */ case 400: /* sma_func_name */ case 402: /* cgroup_name */ case 409: /* language_opt */ case 410: /* stream_name */ case 420: /* table_alias */ case 426: /* star_func */ case 428: /* noarg_func */ case 446: /* alias_opt */ { } break; case 336: /* sysinfo_opt */ { } break; case 337: /* privileges */ case 340: /* priv_type_list */ case 341: /* priv_type */ { } break; case 338: /* priv_level */ { } break; case 347: /* force_opt */ case 348: /* not_exists_opt */ case 350: /* exists_opt */ case 403: /* analyze_opt */ case 406: /* or_replace_opt */ case 407: /* agg_func_opt */ case 451: /* set_quantifier_opt */ { } break; case 355: /* integer_list */ case 356: /* variable_list */ case 357: /* retention_list */ case 362: /* column_def_list */ case 363: /* tags_def_opt */ case 365: /* multi_create_clause */ case 366: /* tags_def */ case 367: /* multi_drop_clause */ case 374: /* specific_cols_opt */ case 375: /* expression_list */ case 377: /* col_name_list */ case 379: /* duration_list */ case 380: /* rollup_func_list */ case 390: /* tag_list_opt */ case 396: /* func_list */ case 412: /* col_list_opt */ case 413: /* tag_def_or_ref_opt */ case 416: /* dnode_list */ case 419: /* literal_list */ case 427: /* star_func_para_list */ case 429: /* other_para_list */ case 431: /* when_then_list */ case 452: /* select_list */ case 453: /* partition_by_clause_opt */ case 458: /* group_by_clause_opt */ case 461: /* partition_list */ case 464: /* group_by_list */ case 467: /* order_by_clause_opt */ case 472: /* sort_specification_list */ { nodesDestroyList((yypminor->yy432)); } break; case 359: /* alter_db_option */ case 381: /* alter_table_option */ { } break; case 371: /* type_name */ { } break; case 436: /* compare_op */ case 437: /* in_op */ { } break; case 449: /* join_type */ { } break; case 463: /* fill_mode */ { } break; case 474: /* ordering_specification_opt */ { } break; case 475: /* null_ordering_opt */ { } 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 */ void ParseFinalize(void *p){ yyParser *pParser = (yyParser*)p; while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); #if YYSTACKDEPTH<=0 if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); #endif } #ifndef Parse_ENGINEALWAYSONSTACK /* ** 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. */ void ParseFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ #ifndef YYPARSEFREENEVERNULL if( p==0 ) return; #endif ParseFinalize(p); (*freeProc)(p); } #endif /* Parse_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. */ #ifdef YYTRACKMAXSTACKDEPTH int ParseStackPeak(void *p){ 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) int ParseCoverage(FILE *out){ int stateno, iLookAhead, i; int nMissed = 0; for(stateno=0; statenoYY_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 %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 j0 ){ #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 && iyytos>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 ********************************************/ ParseARG_STORE /* Suppress warning about unused %extra_argument var */ ParseCTX_STORE } /* ** Print tracing information for a SHIFT action */ #ifndef NDEBUG static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ if( yyTraceFILE ){ if( yyNewStateyytos->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 */ ParseTOKENTYPE yyMinor /* The minor token to shift in */ ){ 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[] = { { 330, -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ { 330, -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { 331, 0 }, /* (2) account_options ::= */ { 331, -3 }, /* (3) account_options ::= account_options PPS literal */ { 331, -3 }, /* (4) account_options ::= account_options TSERIES literal */ { 331, -3 }, /* (5) account_options ::= account_options STORAGE literal */ { 331, -3 }, /* (6) account_options ::= account_options STREAMS literal */ { 331, -3 }, /* (7) account_options ::= account_options QTIME literal */ { 331, -3 }, /* (8) account_options ::= account_options DBS literal */ { 331, -3 }, /* (9) account_options ::= account_options USERS literal */ { 331, -3 }, /* (10) account_options ::= account_options CONNS literal */ { 331, -3 }, /* (11) account_options ::= account_options STATE literal */ { 332, -1 }, /* (12) alter_account_options ::= alter_account_option */ { 332, -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */ { 334, -2 }, /* (14) alter_account_option ::= PASS literal */ { 334, -2 }, /* (15) alter_account_option ::= PPS literal */ { 334, -2 }, /* (16) alter_account_option ::= TSERIES literal */ { 334, -2 }, /* (17) alter_account_option ::= STORAGE literal */ { 334, -2 }, /* (18) alter_account_option ::= STREAMS literal */ { 334, -2 }, /* (19) alter_account_option ::= QTIME literal */ { 334, -2 }, /* (20) alter_account_option ::= DBS literal */ { 334, -2 }, /* (21) alter_account_option ::= USERS literal */ { 334, -2 }, /* (22) alter_account_option ::= CONNS literal */ { 334, -2 }, /* (23) alter_account_option ::= STATE literal */ { 330, -6 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING sysinfo_opt */ { 330, -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */ { 330, -5 }, /* (26) cmd ::= ALTER USER user_name ENABLE NK_INTEGER */ { 330, -5 }, /* (27) cmd ::= ALTER USER user_name SYSINFO NK_INTEGER */ { 330, -3 }, /* (28) cmd ::= DROP USER user_name */ { 336, 0 }, /* (29) sysinfo_opt ::= */ { 336, -2 }, /* (30) sysinfo_opt ::= SYSINFO NK_INTEGER */ { 330, -7 }, /* (31) cmd ::= GRANT privileges ON priv_level with_opt TO user_name */ { 330, -7 }, /* (32) cmd ::= REVOKE privileges ON priv_level with_opt FROM user_name */ { 337, -1 }, /* (33) privileges ::= ALL */ { 337, -1 }, /* (34) privileges ::= priv_type_list */ { 337, -1 }, /* (35) privileges ::= SUBSCRIBE */ { 340, -1 }, /* (36) priv_type_list ::= priv_type */ { 340, -3 }, /* (37) priv_type_list ::= priv_type_list NK_COMMA priv_type */ { 341, -1 }, /* (38) priv_type ::= READ */ { 341, -1 }, /* (39) priv_type ::= WRITE */ { 338, -3 }, /* (40) priv_level ::= NK_STAR NK_DOT NK_STAR */ { 338, -3 }, /* (41) priv_level ::= db_name NK_DOT NK_STAR */ { 338, -3 }, /* (42) priv_level ::= db_name NK_DOT table_name */ { 338, -1 }, /* (43) priv_level ::= topic_name */ { 339, 0 }, /* (44) with_opt ::= */ { 339, -2 }, /* (45) with_opt ::= WITH search_condition */ { 330, -3 }, /* (46) cmd ::= CREATE DNODE dnode_endpoint */ { 330, -5 }, /* (47) cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER */ { 330, -4 }, /* (48) cmd ::= DROP DNODE NK_INTEGER force_opt */ { 330, -4 }, /* (49) cmd ::= DROP DNODE dnode_endpoint force_opt */ { 330, -4 }, /* (50) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { 330, -5 }, /* (51) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ { 330, -4 }, /* (52) cmd ::= ALTER ALL DNODES NK_STRING */ { 330, -5 }, /* (53) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { 346, -1 }, /* (54) dnode_endpoint ::= NK_STRING */ { 346, -1 }, /* (55) dnode_endpoint ::= NK_ID */ { 346, -1 }, /* (56) dnode_endpoint ::= NK_IPTOKEN */ { 347, 0 }, /* (57) force_opt ::= */ { 347, -1 }, /* (58) force_opt ::= FORCE */ { 330, -3 }, /* (59) cmd ::= ALTER LOCAL NK_STRING */ { 330, -4 }, /* (60) cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { 330, -5 }, /* (61) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (62) cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (63) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (64) cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (65) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (66) cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (67) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (68) cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { 330, -5 }, /* (69) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { 330, -4 }, /* (70) cmd ::= DROP DATABASE exists_opt db_name */ { 330, -2 }, /* (71) cmd ::= USE db_name */ { 330, -4 }, /* (72) cmd ::= ALTER DATABASE db_name alter_db_options */ { 330, -3 }, /* (73) cmd ::= FLUSH DATABASE db_name */ { 330, -4 }, /* (74) cmd ::= TRIM DATABASE db_name speed_opt */ { 330, -5 }, /* (75) cmd ::= COMPACT DATABASE db_name start_opt end_opt */ { 348, -3 }, /* (76) not_exists_opt ::= IF NOT EXISTS */ { 348, 0 }, /* (77) not_exists_opt ::= */ { 350, -2 }, /* (78) exists_opt ::= IF EXISTS */ { 350, 0 }, /* (79) exists_opt ::= */ { 349, 0 }, /* (80) db_options ::= */ { 349, -3 }, /* (81) db_options ::= db_options BUFFER NK_INTEGER */ { 349, -3 }, /* (82) db_options ::= db_options CACHEMODEL NK_STRING */ { 349, -3 }, /* (83) db_options ::= db_options CACHESIZE NK_INTEGER */ { 349, -3 }, /* (84) db_options ::= db_options COMP NK_INTEGER */ { 349, -3 }, /* (85) db_options ::= db_options DURATION NK_INTEGER */ { 349, -3 }, /* (86) db_options ::= db_options DURATION NK_VARIABLE */ { 349, -3 }, /* (87) db_options ::= db_options MAXROWS NK_INTEGER */ { 349, -3 }, /* (88) db_options ::= db_options MINROWS NK_INTEGER */ { 349, -3 }, /* (89) db_options ::= db_options KEEP integer_list */ { 349, -3 }, /* (90) db_options ::= db_options KEEP variable_list */ { 349, -3 }, /* (91) db_options ::= db_options PAGES NK_INTEGER */ { 349, -3 }, /* (92) db_options ::= db_options PAGESIZE NK_INTEGER */ { 349, -3 }, /* (93) db_options ::= db_options TSDB_PAGESIZE NK_INTEGER */ { 349, -3 }, /* (94) db_options ::= db_options PRECISION NK_STRING */ { 349, -3 }, /* (95) db_options ::= db_options REPLICA NK_INTEGER */ { 349, -3 }, /* (96) db_options ::= db_options VGROUPS NK_INTEGER */ { 349, -3 }, /* (97) db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { 349, -3 }, /* (98) db_options ::= db_options RETENTIONS retention_list */ { 349, -3 }, /* (99) db_options ::= db_options SCHEMALESS NK_INTEGER */ { 349, -3 }, /* (100) db_options ::= db_options WAL_LEVEL NK_INTEGER */ { 349, -3 }, /* (101) db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER */ { 349, -3 }, /* (102) db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER */ { 349, -4 }, /* (103) db_options ::= db_options WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER */ { 349, -3 }, /* (104) db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER */ { 349, -4 }, /* (105) db_options ::= db_options WAL_RETENTION_SIZE NK_MINUS NK_INTEGER */ { 349, -3 }, /* (106) db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER */ { 349, -3 }, /* (107) db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER */ { 349, -3 }, /* (108) db_options ::= db_options STT_TRIGGER NK_INTEGER */ { 349, -3 }, /* (109) db_options ::= db_options TABLE_PREFIX signed */ { 349, -3 }, /* (110) db_options ::= db_options TABLE_SUFFIX signed */ { 351, -1 }, /* (111) alter_db_options ::= alter_db_option */ { 351, -2 }, /* (112) alter_db_options ::= alter_db_options alter_db_option */ { 359, -2 }, /* (113) alter_db_option ::= BUFFER NK_INTEGER */ { 359, -2 }, /* (114) alter_db_option ::= CACHEMODEL NK_STRING */ { 359, -2 }, /* (115) alter_db_option ::= CACHESIZE NK_INTEGER */ { 359, -2 }, /* (116) alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER */ { 359, -2 }, /* (117) alter_db_option ::= KEEP integer_list */ { 359, -2 }, /* (118) alter_db_option ::= KEEP variable_list */ { 359, -2 }, /* (119) alter_db_option ::= PAGES NK_INTEGER */ { 359, -2 }, /* (120) alter_db_option ::= REPLICA NK_INTEGER */ { 359, -2 }, /* (121) alter_db_option ::= WAL_LEVEL NK_INTEGER */ { 359, -2 }, /* (122) alter_db_option ::= STT_TRIGGER NK_INTEGER */ { 359, -2 }, /* (123) alter_db_option ::= MINROWS NK_INTEGER */ { 359, -2 }, /* (124) alter_db_option ::= WAL_RETENTION_PERIOD NK_INTEGER */ { 359, -3 }, /* (125) alter_db_option ::= WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER */ { 359, -2 }, /* (126) alter_db_option ::= WAL_RETENTION_SIZE NK_INTEGER */ { 359, -3 }, /* (127) alter_db_option ::= WAL_RETENTION_SIZE NK_MINUS NK_INTEGER */ { 355, -1 }, /* (128) integer_list ::= NK_INTEGER */ { 355, -3 }, /* (129) integer_list ::= integer_list NK_COMMA NK_INTEGER */ { 356, -1 }, /* (130) variable_list ::= NK_VARIABLE */ { 356, -3 }, /* (131) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { 357, -1 }, /* (132) retention_list ::= retention */ { 357, -3 }, /* (133) retention_list ::= retention_list NK_COMMA retention */ { 360, -3 }, /* (134) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { 352, 0 }, /* (135) speed_opt ::= */ { 352, -2 }, /* (136) speed_opt ::= MAX_SPEED NK_INTEGER */ { 353, 0 }, /* (137) start_opt ::= */ { 353, -3 }, /* (138) start_opt ::= START WITH NK_INTEGER */ { 353, -3 }, /* (139) start_opt ::= START WITH NK_STRING */ { 353, -4 }, /* (140) start_opt ::= START WITH TIMESTAMP NK_STRING */ { 354, 0 }, /* (141) end_opt ::= */ { 354, -3 }, /* (142) end_opt ::= END WITH NK_INTEGER */ { 354, -3 }, /* (143) end_opt ::= END WITH NK_STRING */ { 354, -4 }, /* (144) end_opt ::= END WITH TIMESTAMP NK_STRING */ { 330, -9 }, /* (145) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ { 330, -3 }, /* (146) cmd ::= CREATE TABLE multi_create_clause */ { 330, -9 }, /* (147) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ { 330, -3 }, /* (148) cmd ::= DROP TABLE multi_drop_clause */ { 330, -4 }, /* (149) cmd ::= DROP STABLE exists_opt full_table_name */ { 330, -3 }, /* (150) cmd ::= ALTER TABLE alter_table_clause */ { 330, -3 }, /* (151) cmd ::= ALTER STABLE alter_table_clause */ { 368, -2 }, /* (152) alter_table_clause ::= full_table_name alter_table_options */ { 368, -5 }, /* (153) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { 368, -4 }, /* (154) alter_table_clause ::= full_table_name DROP COLUMN column_name */ { 368, -5 }, /* (155) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { 368, -5 }, /* (156) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { 368, -5 }, /* (157) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { 368, -4 }, /* (158) alter_table_clause ::= full_table_name DROP TAG column_name */ { 368, -5 }, /* (159) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { 368, -5 }, /* (160) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { 368, -6 }, /* (161) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ { 365, -1 }, /* (162) multi_create_clause ::= create_subtable_clause */ { 365, -2 }, /* (163) multi_create_clause ::= multi_create_clause create_subtable_clause */ { 373, -10 }, /* (164) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ { 367, -1 }, /* (165) multi_drop_clause ::= drop_table_clause */ { 367, -3 }, /* (166) multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ { 376, -2 }, /* (167) drop_table_clause ::= exists_opt full_table_name */ { 374, 0 }, /* (168) specific_cols_opt ::= */ { 374, -3 }, /* (169) specific_cols_opt ::= NK_LP col_name_list NK_RP */ { 361, -1 }, /* (170) full_table_name ::= table_name */ { 361, -3 }, /* (171) full_table_name ::= db_name NK_DOT table_name */ { 362, -1 }, /* (172) column_def_list ::= column_def */ { 362, -3 }, /* (173) column_def_list ::= column_def_list NK_COMMA column_def */ { 378, -2 }, /* (174) column_def ::= column_name type_name */ { 371, -1 }, /* (175) type_name ::= BOOL */ { 371, -1 }, /* (176) type_name ::= TINYINT */ { 371, -1 }, /* (177) type_name ::= SMALLINT */ { 371, -1 }, /* (178) type_name ::= INT */ { 371, -1 }, /* (179) type_name ::= INTEGER */ { 371, -1 }, /* (180) type_name ::= BIGINT */ { 371, -1 }, /* (181) type_name ::= FLOAT */ { 371, -1 }, /* (182) type_name ::= DOUBLE */ { 371, -4 }, /* (183) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { 371, -1 }, /* (184) type_name ::= TIMESTAMP */ { 371, -4 }, /* (185) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { 371, -2 }, /* (186) type_name ::= TINYINT UNSIGNED */ { 371, -2 }, /* (187) type_name ::= SMALLINT UNSIGNED */ { 371, -2 }, /* (188) type_name ::= INT UNSIGNED */ { 371, -2 }, /* (189) type_name ::= BIGINT UNSIGNED */ { 371, -1 }, /* (190) type_name ::= JSON */ { 371, -4 }, /* (191) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { 371, -1 }, /* (192) type_name ::= MEDIUMBLOB */ { 371, -1 }, /* (193) type_name ::= BLOB */ { 371, -4 }, /* (194) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { 371, -1 }, /* (195) type_name ::= DECIMAL */ { 371, -4 }, /* (196) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { 371, -6 }, /* (197) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { 363, 0 }, /* (198) tags_def_opt ::= */ { 363, -1 }, /* (199) tags_def_opt ::= tags_def */ { 366, -4 }, /* (200) tags_def ::= TAGS NK_LP column_def_list NK_RP */ { 364, 0 }, /* (201) table_options ::= */ { 364, -3 }, /* (202) table_options ::= table_options COMMENT NK_STRING */ { 364, -3 }, /* (203) table_options ::= table_options MAX_DELAY duration_list */ { 364, -3 }, /* (204) table_options ::= table_options WATERMARK duration_list */ { 364, -5 }, /* (205) table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ { 364, -3 }, /* (206) table_options ::= table_options TTL NK_INTEGER */ { 364, -5 }, /* (207) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { 364, -3 }, /* (208) table_options ::= table_options DELETE_MARK duration_list */ { 369, -1 }, /* (209) alter_table_options ::= alter_table_option */ { 369, -2 }, /* (210) alter_table_options ::= alter_table_options alter_table_option */ { 381, -2 }, /* (211) alter_table_option ::= COMMENT NK_STRING */ { 381, -2 }, /* (212) alter_table_option ::= TTL NK_INTEGER */ { 379, -1 }, /* (213) duration_list ::= duration_literal */ { 379, -3 }, /* (214) duration_list ::= duration_list NK_COMMA duration_literal */ { 380, -1 }, /* (215) rollup_func_list ::= rollup_func_name */ { 380, -3 }, /* (216) rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ { 383, -1 }, /* (217) rollup_func_name ::= function_name */ { 383, -1 }, /* (218) rollup_func_name ::= FIRST */ { 383, -1 }, /* (219) rollup_func_name ::= LAST */ { 377, -1 }, /* (220) col_name_list ::= col_name */ { 377, -3 }, /* (221) col_name_list ::= col_name_list NK_COMMA col_name */ { 385, -1 }, /* (222) col_name ::= column_name */ { 330, -2 }, /* (223) cmd ::= SHOW DNODES */ { 330, -2 }, /* (224) cmd ::= SHOW USERS */ { 330, -3 }, /* (225) cmd ::= SHOW USER PRIVILEGES */ { 330, -2 }, /* (226) cmd ::= SHOW DATABASES */ { 330, -4 }, /* (227) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { 330, -4 }, /* (228) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { 330, -3 }, /* (229) cmd ::= SHOW db_name_cond_opt VGROUPS */ { 330, -2 }, /* (230) cmd ::= SHOW MNODES */ { 330, -2 }, /* (231) cmd ::= SHOW QNODES */ { 330, -2 }, /* (232) cmd ::= SHOW FUNCTIONS */ { 330, -5 }, /* (233) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { 330, -2 }, /* (234) cmd ::= SHOW STREAMS */ { 330, -2 }, /* (235) cmd ::= SHOW ACCOUNTS */ { 330, -2 }, /* (236) cmd ::= SHOW APPS */ { 330, -2 }, /* (237) cmd ::= SHOW CONNECTIONS */ { 330, -2 }, /* (238) cmd ::= SHOW LICENCES */ { 330, -2 }, /* (239) cmd ::= SHOW GRANTS */ { 330, -4 }, /* (240) cmd ::= SHOW CREATE DATABASE db_name */ { 330, -4 }, /* (241) cmd ::= SHOW CREATE TABLE full_table_name */ { 330, -4 }, /* (242) cmd ::= SHOW CREATE STABLE full_table_name */ { 330, -2 }, /* (243) cmd ::= SHOW QUERIES */ { 330, -2 }, /* (244) cmd ::= SHOW SCORES */ { 330, -2 }, /* (245) cmd ::= SHOW TOPICS */ { 330, -2 }, /* (246) cmd ::= SHOW VARIABLES */ { 330, -3 }, /* (247) cmd ::= SHOW CLUSTER VARIABLES */ { 330, -3 }, /* (248) cmd ::= SHOW LOCAL VARIABLES */ { 330, -5 }, /* (249) cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ { 330, -2 }, /* (250) cmd ::= SHOW BNODES */ { 330, -2 }, /* (251) cmd ::= SHOW SNODES */ { 330, -2 }, /* (252) cmd ::= SHOW CLUSTER */ { 330, -2 }, /* (253) cmd ::= SHOW TRANSACTIONS */ { 330, -4 }, /* (254) cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ { 330, -2 }, /* (255) cmd ::= SHOW CONSUMERS */ { 330, -2 }, /* (256) cmd ::= SHOW SUBSCRIPTIONS */ { 330, -5 }, /* (257) cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ { 330, -7 }, /* (258) cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ { 330, -3 }, /* (259) cmd ::= SHOW VNODES NK_INTEGER */ { 330, -3 }, /* (260) cmd ::= SHOW VNODES NK_STRING */ { 330, -3 }, /* (261) cmd ::= SHOW db_name_cond_opt ALIVE */ { 330, -3 }, /* (262) cmd ::= SHOW CLUSTER ALIVE */ { 386, 0 }, /* (263) db_name_cond_opt ::= */ { 386, -2 }, /* (264) db_name_cond_opt ::= db_name NK_DOT */ { 387, 0 }, /* (265) like_pattern_opt ::= */ { 387, -2 }, /* (266) like_pattern_opt ::= LIKE NK_STRING */ { 388, -1 }, /* (267) table_name_cond ::= table_name */ { 389, 0 }, /* (268) from_db_opt ::= */ { 389, -2 }, /* (269) from_db_opt ::= FROM db_name */ { 390, 0 }, /* (270) tag_list_opt ::= */ { 390, -1 }, /* (271) tag_list_opt ::= tag_item */ { 390, -3 }, /* (272) tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ { 391, -1 }, /* (273) tag_item ::= TBNAME */ { 391, -1 }, /* (274) tag_item ::= QTAGS */ { 391, -1 }, /* (275) tag_item ::= column_name */ { 391, -2 }, /* (276) tag_item ::= column_name column_alias */ { 391, -3 }, /* (277) tag_item ::= column_name AS column_alias */ { 330, -8 }, /* (278) cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ { 330, -9 }, /* (279) cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ { 330, -4 }, /* (280) cmd ::= DROP INDEX exists_opt full_index_name */ { 393, -1 }, /* (281) full_index_name ::= index_name */ { 393, -3 }, /* (282) full_index_name ::= db_name NK_DOT index_name */ { 394, -10 }, /* (283) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ { 394, -12 }, /* (284) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ { 396, -1 }, /* (285) func_list ::= func */ { 396, -3 }, /* (286) func_list ::= func_list NK_COMMA func */ { 399, -4 }, /* (287) func ::= sma_func_name NK_LP expression_list NK_RP */ { 400, -1 }, /* (288) sma_func_name ::= function_name */ { 400, -1 }, /* (289) sma_func_name ::= COUNT */ { 400, -1 }, /* (290) sma_func_name ::= FIRST */ { 400, -1 }, /* (291) sma_func_name ::= LAST */ { 400, -1 }, /* (292) sma_func_name ::= LAST_ROW */ { 398, 0 }, /* (293) sma_stream_opt ::= */ { 398, -3 }, /* (294) sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ { 398, -3 }, /* (295) sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ { 398, -3 }, /* (296) sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ { 330, -6 }, /* (297) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ { 330, -7 }, /* (298) cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ { 330, -9 }, /* (299) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ { 330, -7 }, /* (300) cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ { 330, -9 }, /* (301) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ { 330, -4 }, /* (302) cmd ::= DROP TOPIC exists_opt topic_name */ { 330, -7 }, /* (303) cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ { 330, -2 }, /* (304) cmd ::= DESC full_table_name */ { 330, -2 }, /* (305) cmd ::= DESCRIBE full_table_name */ { 330, -3 }, /* (306) cmd ::= RESET QUERY CACHE */ { 330, -4 }, /* (307) cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ { 330, -4 }, /* (308) cmd ::= EXPLAIN analyze_opt explain_options insert_query */ { 403, 0 }, /* (309) analyze_opt ::= */ { 403, -1 }, /* (310) analyze_opt ::= ANALYZE */ { 404, 0 }, /* (311) explain_options ::= */ { 404, -3 }, /* (312) explain_options ::= explain_options VERBOSE NK_BOOL */ { 404, -3 }, /* (313) explain_options ::= explain_options RATIO NK_FLOAT */ { 330, -12 }, /* (314) cmd ::= CREATE or_replace_opt agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt language_opt */ { 330, -4 }, /* (315) cmd ::= DROP FUNCTION exists_opt function_name */ { 407, 0 }, /* (316) agg_func_opt ::= */ { 407, -1 }, /* (317) agg_func_opt ::= AGGREGATE */ { 408, 0 }, /* (318) bufsize_opt ::= */ { 408, -2 }, /* (319) bufsize_opt ::= BUFSIZE NK_INTEGER */ { 409, 0 }, /* (320) language_opt ::= */ { 409, -2 }, /* (321) language_opt ::= LANGUAGE NK_STRING */ { 406, 0 }, /* (322) or_replace_opt ::= */ { 406, -2 }, /* (323) or_replace_opt ::= OR REPLACE */ { 330, -12 }, /* (324) cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ { 330, -4 }, /* (325) cmd ::= DROP STREAM exists_opt stream_name */ { 412, 0 }, /* (326) col_list_opt ::= */ { 412, -3 }, /* (327) col_list_opt ::= NK_LP col_name_list NK_RP */ { 413, 0 }, /* (328) tag_def_or_ref_opt ::= */ { 413, -1 }, /* (329) tag_def_or_ref_opt ::= tags_def */ { 413, -4 }, /* (330) tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ { 411, 0 }, /* (331) stream_options ::= */ { 411, -3 }, /* (332) stream_options ::= stream_options TRIGGER AT_ONCE */ { 411, -3 }, /* (333) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ { 411, -4 }, /* (334) stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ { 411, -3 }, /* (335) stream_options ::= stream_options WATERMARK duration_literal */ { 411, -4 }, /* (336) stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ { 411, -3 }, /* (337) stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ { 411, -3 }, /* (338) stream_options ::= stream_options DELETE_MARK duration_literal */ { 411, -4 }, /* (339) stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ { 414, 0 }, /* (340) subtable_opt ::= */ { 414, -4 }, /* (341) subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ { 330, -3 }, /* (342) cmd ::= KILL CONNECTION NK_INTEGER */ { 330, -3 }, /* (343) cmd ::= KILL QUERY NK_STRING */ { 330, -3 }, /* (344) cmd ::= KILL TRANSACTION NK_INTEGER */ { 330, -2 }, /* (345) cmd ::= BALANCE VGROUP */ { 330, -3 }, /* (346) cmd ::= BALANCE VGROUP LEADER */ { 330, -4 }, /* (347) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { 330, -4 }, /* (348) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { 330, -3 }, /* (349) cmd ::= SPLIT VGROUP NK_INTEGER */ { 416, -2 }, /* (350) dnode_list ::= DNODE NK_INTEGER */ { 416, -3 }, /* (351) dnode_list ::= dnode_list DNODE NK_INTEGER */ { 330, -4 }, /* (352) cmd ::= DELETE FROM full_table_name where_clause_opt */ { 330, -1 }, /* (353) cmd ::= query_or_subquery */ { 330, -1 }, /* (354) cmd ::= insert_query */ { 405, -7 }, /* (355) insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ { 405, -4 }, /* (356) insert_query ::= INSERT INTO full_table_name query_or_subquery */ { 333, -1 }, /* (357) literal ::= NK_INTEGER */ { 333, -1 }, /* (358) literal ::= NK_FLOAT */ { 333, -1 }, /* (359) literal ::= NK_STRING */ { 333, -1 }, /* (360) literal ::= NK_BOOL */ { 333, -2 }, /* (361) literal ::= TIMESTAMP NK_STRING */ { 333, -1 }, /* (362) literal ::= duration_literal */ { 333, -1 }, /* (363) literal ::= NULL */ { 333, -1 }, /* (364) literal ::= NK_QUESTION */ { 382, -1 }, /* (365) duration_literal ::= NK_VARIABLE */ { 358, -1 }, /* (366) signed ::= NK_INTEGER */ { 358, -2 }, /* (367) signed ::= NK_PLUS NK_INTEGER */ { 358, -2 }, /* (368) signed ::= NK_MINUS NK_INTEGER */ { 358, -1 }, /* (369) signed ::= NK_FLOAT */ { 358, -2 }, /* (370) signed ::= NK_PLUS NK_FLOAT */ { 358, -2 }, /* (371) signed ::= NK_MINUS NK_FLOAT */ { 372, -1 }, /* (372) signed_literal ::= signed */ { 372, -1 }, /* (373) signed_literal ::= NK_STRING */ { 372, -1 }, /* (374) signed_literal ::= NK_BOOL */ { 372, -2 }, /* (375) signed_literal ::= TIMESTAMP NK_STRING */ { 372, -1 }, /* (376) signed_literal ::= duration_literal */ { 372, -1 }, /* (377) signed_literal ::= NULL */ { 372, -1 }, /* (378) signed_literal ::= literal_func */ { 372, -1 }, /* (379) signed_literal ::= NK_QUESTION */ { 419, -1 }, /* (380) literal_list ::= signed_literal */ { 419, -3 }, /* (381) literal_list ::= literal_list NK_COMMA signed_literal */ { 342, -1 }, /* (382) db_name ::= NK_ID */ { 343, -1 }, /* (383) table_name ::= NK_ID */ { 370, -1 }, /* (384) column_name ::= NK_ID */ { 384, -1 }, /* (385) function_name ::= NK_ID */ { 420, -1 }, /* (386) table_alias ::= NK_ID */ { 392, -1 }, /* (387) column_alias ::= NK_ID */ { 335, -1 }, /* (388) user_name ::= NK_ID */ { 344, -1 }, /* (389) topic_name ::= NK_ID */ { 410, -1 }, /* (390) stream_name ::= NK_ID */ { 402, -1 }, /* (391) cgroup_name ::= NK_ID */ { 395, -1 }, /* (392) index_name ::= NK_ID */ { 421, -1 }, /* (393) expr_or_subquery ::= expression */ { 415, -1 }, /* (394) expression ::= literal */ { 415, -1 }, /* (395) expression ::= pseudo_column */ { 415, -1 }, /* (396) expression ::= column_reference */ { 415, -1 }, /* (397) expression ::= function_expression */ { 415, -1 }, /* (398) expression ::= case_when_expression */ { 415, -3 }, /* (399) expression ::= NK_LP expression NK_RP */ { 415, -2 }, /* (400) expression ::= NK_PLUS expr_or_subquery */ { 415, -2 }, /* (401) expression ::= NK_MINUS expr_or_subquery */ { 415, -3 }, /* (402) expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ { 415, -3 }, /* (403) expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ { 415, -3 }, /* (404) expression ::= expr_or_subquery NK_STAR expr_or_subquery */ { 415, -3 }, /* (405) expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ { 415, -3 }, /* (406) expression ::= expr_or_subquery NK_REM expr_or_subquery */ { 415, -3 }, /* (407) expression ::= column_reference NK_ARROW NK_STRING */ { 415, -3 }, /* (408) expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ { 415, -3 }, /* (409) expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ { 375, -1 }, /* (410) expression_list ::= expr_or_subquery */ { 375, -3 }, /* (411) expression_list ::= expression_list NK_COMMA expr_or_subquery */ { 423, -1 }, /* (412) column_reference ::= column_name */ { 423, -3 }, /* (413) column_reference ::= table_name NK_DOT column_name */ { 422, -1 }, /* (414) pseudo_column ::= ROWTS */ { 422, -1 }, /* (415) pseudo_column ::= TBNAME */ { 422, -3 }, /* (416) pseudo_column ::= table_name NK_DOT TBNAME */ { 422, -1 }, /* (417) pseudo_column ::= QSTART */ { 422, -1 }, /* (418) pseudo_column ::= QEND */ { 422, -1 }, /* (419) pseudo_column ::= QDURATION */ { 422, -1 }, /* (420) pseudo_column ::= WSTART */ { 422, -1 }, /* (421) pseudo_column ::= WEND */ { 422, -1 }, /* (422) pseudo_column ::= WDURATION */ { 422, -1 }, /* (423) pseudo_column ::= IROWTS */ { 422, -1 }, /* (424) pseudo_column ::= ISFILLED */ { 422, -1 }, /* (425) pseudo_column ::= QTAGS */ { 424, -4 }, /* (426) function_expression ::= function_name NK_LP expression_list NK_RP */ { 424, -4 }, /* (427) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ { 424, -6 }, /* (428) function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ { 424, -1 }, /* (429) function_expression ::= literal_func */ { 418, -3 }, /* (430) literal_func ::= noarg_func NK_LP NK_RP */ { 418, -1 }, /* (431) literal_func ::= NOW */ { 428, -1 }, /* (432) noarg_func ::= NOW */ { 428, -1 }, /* (433) noarg_func ::= TODAY */ { 428, -1 }, /* (434) noarg_func ::= TIMEZONE */ { 428, -1 }, /* (435) noarg_func ::= DATABASE */ { 428, -1 }, /* (436) noarg_func ::= CLIENT_VERSION */ { 428, -1 }, /* (437) noarg_func ::= SERVER_VERSION */ { 428, -1 }, /* (438) noarg_func ::= SERVER_STATUS */ { 428, -1 }, /* (439) noarg_func ::= CURRENT_USER */ { 428, -1 }, /* (440) noarg_func ::= USER */ { 426, -1 }, /* (441) star_func ::= COUNT */ { 426, -1 }, /* (442) star_func ::= FIRST */ { 426, -1 }, /* (443) star_func ::= LAST */ { 426, -1 }, /* (444) star_func ::= LAST_ROW */ { 427, -1 }, /* (445) star_func_para_list ::= NK_STAR */ { 427, -1 }, /* (446) star_func_para_list ::= other_para_list */ { 429, -1 }, /* (447) other_para_list ::= star_func_para */ { 429, -3 }, /* (448) other_para_list ::= other_para_list NK_COMMA star_func_para */ { 430, -1 }, /* (449) star_func_para ::= expr_or_subquery */ { 430, -3 }, /* (450) star_func_para ::= table_name NK_DOT NK_STAR */ { 425, -4 }, /* (451) case_when_expression ::= CASE when_then_list case_when_else_opt END */ { 425, -5 }, /* (452) case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ { 431, -1 }, /* (453) when_then_list ::= when_then_expr */ { 431, -2 }, /* (454) when_then_list ::= when_then_list when_then_expr */ { 434, -4 }, /* (455) when_then_expr ::= WHEN common_expression THEN common_expression */ { 432, 0 }, /* (456) case_when_else_opt ::= */ { 432, -2 }, /* (457) case_when_else_opt ::= ELSE common_expression */ { 435, -3 }, /* (458) predicate ::= expr_or_subquery compare_op expr_or_subquery */ { 435, -5 }, /* (459) predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ { 435, -6 }, /* (460) predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ { 435, -3 }, /* (461) predicate ::= expr_or_subquery IS NULL */ { 435, -4 }, /* (462) predicate ::= expr_or_subquery IS NOT NULL */ { 435, -3 }, /* (463) predicate ::= expr_or_subquery in_op in_predicate_value */ { 436, -1 }, /* (464) compare_op ::= NK_LT */ { 436, -1 }, /* (465) compare_op ::= NK_GT */ { 436, -1 }, /* (466) compare_op ::= NK_LE */ { 436, -1 }, /* (467) compare_op ::= NK_GE */ { 436, -1 }, /* (468) compare_op ::= NK_NE */ { 436, -1 }, /* (469) compare_op ::= NK_EQ */ { 436, -1 }, /* (470) compare_op ::= LIKE */ { 436, -2 }, /* (471) compare_op ::= NOT LIKE */ { 436, -1 }, /* (472) compare_op ::= MATCH */ { 436, -1 }, /* (473) compare_op ::= NMATCH */ { 436, -1 }, /* (474) compare_op ::= CONTAINS */ { 437, -1 }, /* (475) in_op ::= IN */ { 437, -2 }, /* (476) in_op ::= NOT IN */ { 438, -3 }, /* (477) in_predicate_value ::= NK_LP literal_list NK_RP */ { 439, -1 }, /* (478) boolean_value_expression ::= boolean_primary */ { 439, -2 }, /* (479) boolean_value_expression ::= NOT boolean_primary */ { 439, -3 }, /* (480) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { 439, -3 }, /* (481) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { 440, -1 }, /* (482) boolean_primary ::= predicate */ { 440, -3 }, /* (483) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ { 433, -1 }, /* (484) common_expression ::= expr_or_subquery */ { 433, -1 }, /* (485) common_expression ::= boolean_value_expression */ { 441, 0 }, /* (486) from_clause_opt ::= */ { 441, -2 }, /* (487) from_clause_opt ::= FROM table_reference_list */ { 442, -1 }, /* (488) table_reference_list ::= table_reference */ { 442, -3 }, /* (489) table_reference_list ::= table_reference_list NK_COMMA table_reference */ { 443, -1 }, /* (490) table_reference ::= table_primary */ { 443, -1 }, /* (491) table_reference ::= joined_table */ { 444, -2 }, /* (492) table_primary ::= table_name alias_opt */ { 444, -4 }, /* (493) table_primary ::= db_name NK_DOT table_name alias_opt */ { 444, -2 }, /* (494) table_primary ::= subquery alias_opt */ { 444, -1 }, /* (495) table_primary ::= parenthesized_joined_table */ { 446, 0 }, /* (496) alias_opt ::= */ { 446, -1 }, /* (497) alias_opt ::= table_alias */ { 446, -2 }, /* (498) alias_opt ::= AS table_alias */ { 448, -3 }, /* (499) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ { 448, -3 }, /* (500) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ { 445, -6 }, /* (501) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { 449, 0 }, /* (502) join_type ::= */ { 449, -1 }, /* (503) join_type ::= INNER */ { 450, -12 }, /* (504) query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { 451, 0 }, /* (505) set_quantifier_opt ::= */ { 451, -1 }, /* (506) set_quantifier_opt ::= DISTINCT */ { 451, -1 }, /* (507) set_quantifier_opt ::= ALL */ { 452, -1 }, /* (508) select_list ::= select_item */ { 452, -3 }, /* (509) select_list ::= select_list NK_COMMA select_item */ { 460, -1 }, /* (510) select_item ::= NK_STAR */ { 460, -1 }, /* (511) select_item ::= common_expression */ { 460, -2 }, /* (512) select_item ::= common_expression column_alias */ { 460, -3 }, /* (513) select_item ::= common_expression AS column_alias */ { 460, -3 }, /* (514) select_item ::= table_name NK_DOT NK_STAR */ { 417, 0 }, /* (515) where_clause_opt ::= */ { 417, -2 }, /* (516) where_clause_opt ::= WHERE search_condition */ { 453, 0 }, /* (517) partition_by_clause_opt ::= */ { 453, -3 }, /* (518) partition_by_clause_opt ::= PARTITION BY partition_list */ { 461, -1 }, /* (519) partition_list ::= partition_item */ { 461, -3 }, /* (520) partition_list ::= partition_list NK_COMMA partition_item */ { 462, -1 }, /* (521) partition_item ::= expr_or_subquery */ { 462, -2 }, /* (522) partition_item ::= expr_or_subquery column_alias */ { 462, -3 }, /* (523) partition_item ::= expr_or_subquery AS column_alias */ { 457, 0 }, /* (524) twindow_clause_opt ::= */ { 457, -6 }, /* (525) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { 457, -4 }, /* (526) twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ { 457, -6 }, /* (527) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { 457, -8 }, /* (528) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { 457, -7 }, /* (529) twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ { 397, 0 }, /* (530) sliding_opt ::= */ { 397, -4 }, /* (531) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ { 456, 0 }, /* (532) fill_opt ::= */ { 456, -4 }, /* (533) fill_opt ::= FILL NK_LP fill_mode NK_RP */ { 456, -6 }, /* (534) fill_opt ::= FILL NK_LP VALUE NK_COMMA expression_list NK_RP */ { 456, -6 }, /* (535) fill_opt ::= FILL NK_LP VALUE_F NK_COMMA expression_list NK_RP */ { 463, -1 }, /* (536) fill_mode ::= NONE */ { 463, -1 }, /* (537) fill_mode ::= PREV */ { 463, -1 }, /* (538) fill_mode ::= NULL */ { 463, -1 }, /* (539) fill_mode ::= NULL_F */ { 463, -1 }, /* (540) fill_mode ::= LINEAR */ { 463, -1 }, /* (541) fill_mode ::= NEXT */ { 458, 0 }, /* (542) group_by_clause_opt ::= */ { 458, -3 }, /* (543) group_by_clause_opt ::= GROUP BY group_by_list */ { 464, -1 }, /* (544) group_by_list ::= expr_or_subquery */ { 464, -3 }, /* (545) group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ { 459, 0 }, /* (546) having_clause_opt ::= */ { 459, -2 }, /* (547) having_clause_opt ::= HAVING search_condition */ { 454, 0 }, /* (548) range_opt ::= */ { 454, -6 }, /* (549) range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ { 455, 0 }, /* (550) every_opt ::= */ { 455, -4 }, /* (551) every_opt ::= EVERY NK_LP duration_literal NK_RP */ { 465, -4 }, /* (552) query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ { 466, -1 }, /* (553) query_simple ::= query_specification */ { 466, -1 }, /* (554) query_simple ::= union_query_expression */ { 470, -4 }, /* (555) union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ { 470, -3 }, /* (556) union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ { 471, -1 }, /* (557) query_simple_or_subquery ::= query_simple */ { 471, -1 }, /* (558) query_simple_or_subquery ::= subquery */ { 401, -1 }, /* (559) query_or_subquery ::= query_expression */ { 401, -1 }, /* (560) query_or_subquery ::= subquery */ { 467, 0 }, /* (561) order_by_clause_opt ::= */ { 467, -3 }, /* (562) order_by_clause_opt ::= ORDER BY sort_specification_list */ { 468, 0 }, /* (563) slimit_clause_opt ::= */ { 468, -2 }, /* (564) slimit_clause_opt ::= SLIMIT NK_INTEGER */ { 468, -4 }, /* (565) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ { 468, -4 }, /* (566) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 469, 0 }, /* (567) limit_clause_opt ::= */ { 469, -2 }, /* (568) limit_clause_opt ::= LIMIT NK_INTEGER */ { 469, -4 }, /* (569) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ { 469, -4 }, /* (570) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 447, -3 }, /* (571) subquery ::= NK_LP query_expression NK_RP */ { 447, -3 }, /* (572) subquery ::= NK_LP subquery NK_RP */ { 345, -1 }, /* (573) search_condition ::= common_expression */ { 472, -1 }, /* (574) sort_specification_list ::= sort_specification */ { 472, -3 }, /* (575) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ { 473, -3 }, /* (576) sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ { 474, 0 }, /* (577) ordering_specification_opt ::= */ { 474, -1 }, /* (578) ordering_specification_opt ::= ASC */ { 474, -1 }, /* (579) ordering_specification_opt ::= DESC */ { 475, 0 }, /* (580) null_ordering_opt ::= */ { 475, -2 }, /* (581) null_ordering_opt ::= NULLS FIRST */ { 475, -2 }, /* (582) null_ordering_opt ::= NULLS LAST */ }; 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 */ ParseTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ ParseCTX_PDECL /* %extra_context */ ){ 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 */ ParseARG_FETCH (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 ** { ... } // User supplied code ** #line ** break; */ /********** Begin reduce actions **********************************************/ YYMINORTYPE yylhsminor; case 0: /* cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } yy_destructor(yypParser,331,&yymsp[0].minor); break; case 1: /* cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } yy_destructor(yypParser,332,&yymsp[0].minor); 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); { yy_destructor(yypParser,331,&yymsp[-2].minor); { } yy_destructor(yypParser,333,&yymsp[0].minor); } break; case 12: /* alter_account_options ::= alter_account_option */ { yy_destructor(yypParser,334,&yymsp[0].minor); { } } break; case 13: /* alter_account_options ::= alter_account_options alter_account_option */ { yy_destructor(yypParser,332,&yymsp[-1].minor); { } yy_destructor(yypParser,334,&yymsp[0].minor); } 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); { } yy_destructor(yypParser,333,&yymsp[0].minor); break; case 24: /* cmd ::= CREATE USER user_name PASS NK_STRING sysinfo_opt */ { pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-3].minor.yy113, &yymsp[-1].minor.yy0, yymsp[0].minor.yy551); } break; case 25: /* cmd ::= ALTER USER user_name PASS NK_STRING */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy113, TSDB_ALTER_USER_PASSWD, &yymsp[0].minor.yy0); } break; case 26: /* cmd ::= ALTER USER user_name ENABLE NK_INTEGER */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy113, TSDB_ALTER_USER_ENABLE, &yymsp[0].minor.yy0); } break; case 27: /* cmd ::= ALTER USER user_name SYSINFO NK_INTEGER */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy113, TSDB_ALTER_USER_SYSINFO, &yymsp[0].minor.yy0); } break; case 28: /* cmd ::= DROP USER user_name */ { pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy113); } break; case 29: /* sysinfo_opt ::= */ { yymsp[1].minor.yy551 = 1; } break; case 30: /* sysinfo_opt ::= SYSINFO NK_INTEGER */ { yymsp[-1].minor.yy551 = taosStr2Int8(yymsp[0].minor.yy0.z, NULL, 10); } break; case 31: /* cmd ::= GRANT privileges ON priv_level with_opt TO user_name */ { pCxt->pRootNode = createGrantStmt(pCxt, yymsp[-5].minor.yy837, &yymsp[-3].minor.yy777, &yymsp[0].minor.yy113, yymsp[-2].minor.yy448); } break; case 32: /* cmd ::= REVOKE privileges ON priv_level with_opt FROM user_name */ { pCxt->pRootNode = createRevokeStmt(pCxt, yymsp[-5].minor.yy837, &yymsp[-3].minor.yy777, &yymsp[0].minor.yy113, yymsp[-2].minor.yy448); } break; case 33: /* privileges ::= ALL */ { yymsp[0].minor.yy837 = PRIVILEGE_TYPE_ALL; } break; case 34: /* privileges ::= priv_type_list */ case 36: /* priv_type_list ::= priv_type */ yytestcase(yyruleno==36); { yylhsminor.yy837 = yymsp[0].minor.yy837; } yymsp[0].minor.yy837 = yylhsminor.yy837; break; case 35: /* privileges ::= SUBSCRIBE */ { yymsp[0].minor.yy837 = PRIVILEGE_TYPE_SUBSCRIBE; } break; case 37: /* priv_type_list ::= priv_type_list NK_COMMA priv_type */ { yylhsminor.yy837 = yymsp[-2].minor.yy837 | yymsp[0].minor.yy837; } yymsp[-2].minor.yy837 = yylhsminor.yy837; break; case 38: /* priv_type ::= READ */ { yymsp[0].minor.yy837 = PRIVILEGE_TYPE_READ; } break; case 39: /* priv_type ::= WRITE */ { yymsp[0].minor.yy837 = PRIVILEGE_TYPE_WRITE; } break; case 40: /* priv_level ::= NK_STAR NK_DOT NK_STAR */ { yylhsminor.yy777.first = yymsp[-2].minor.yy0; yylhsminor.yy777.second = yymsp[0].minor.yy0; } yymsp[-2].minor.yy777 = yylhsminor.yy777; break; case 41: /* priv_level ::= db_name NK_DOT NK_STAR */ { yylhsminor.yy777.first = yymsp[-2].minor.yy113; yylhsminor.yy777.second = yymsp[0].minor.yy0; } yymsp[-2].minor.yy777 = yylhsminor.yy777; break; case 42: /* priv_level ::= db_name NK_DOT table_name */ { yylhsminor.yy777.first = yymsp[-2].minor.yy113; yylhsminor.yy777.second = yymsp[0].minor.yy113; } yymsp[-2].minor.yy777 = yylhsminor.yy777; break; case 43: /* priv_level ::= topic_name */ { yylhsminor.yy777.first = yymsp[0].minor.yy113; yylhsminor.yy777.second = nil_token; } yymsp[0].minor.yy777 = yylhsminor.yy777; break; case 44: /* with_opt ::= */ case 137: /* start_opt ::= */ yytestcase(yyruleno==137); case 141: /* end_opt ::= */ yytestcase(yyruleno==141); case 265: /* like_pattern_opt ::= */ yytestcase(yyruleno==265); case 340: /* subtable_opt ::= */ yytestcase(yyruleno==340); case 456: /* case_when_else_opt ::= */ yytestcase(yyruleno==456); case 486: /* from_clause_opt ::= */ yytestcase(yyruleno==486); case 515: /* where_clause_opt ::= */ yytestcase(yyruleno==515); case 524: /* twindow_clause_opt ::= */ yytestcase(yyruleno==524); case 530: /* sliding_opt ::= */ yytestcase(yyruleno==530); case 532: /* fill_opt ::= */ yytestcase(yyruleno==532); case 546: /* having_clause_opt ::= */ yytestcase(yyruleno==546); case 548: /* range_opt ::= */ yytestcase(yyruleno==548); case 550: /* every_opt ::= */ yytestcase(yyruleno==550); case 563: /* slimit_clause_opt ::= */ yytestcase(yyruleno==563); case 567: /* limit_clause_opt ::= */ yytestcase(yyruleno==567); { yymsp[1].minor.yy448 = NULL; } break; case 45: /* with_opt ::= WITH search_condition */ case 487: /* from_clause_opt ::= FROM table_reference_list */ yytestcase(yyruleno==487); case 516: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==516); case 547: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==547); { yymsp[-1].minor.yy448 = yymsp[0].minor.yy448; } break; case 46: /* cmd ::= CREATE DNODE dnode_endpoint */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy113, NULL); } break; case 47: /* cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy0); } break; case 48: /* cmd ::= DROP DNODE NK_INTEGER force_opt */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy369); } break; case 49: /* cmd ::= DROP DNODE dnode_endpoint force_opt */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[-1].minor.yy113, yymsp[0].minor.yy369); } break; case 50: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, NULL); } break; case 51: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-2].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 52: /* cmd ::= ALTER ALL DNODES NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[0].minor.yy0, NULL); } break; case 53: /* cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 54: /* dnode_endpoint ::= NK_STRING */ case 55: /* dnode_endpoint ::= NK_ID */ yytestcase(yyruleno==55); case 56: /* dnode_endpoint ::= NK_IPTOKEN */ yytestcase(yyruleno==56); case 289: /* sma_func_name ::= COUNT */ yytestcase(yyruleno==289); case 290: /* sma_func_name ::= FIRST */ yytestcase(yyruleno==290); case 291: /* sma_func_name ::= LAST */ yytestcase(yyruleno==291); case 292: /* sma_func_name ::= LAST_ROW */ yytestcase(yyruleno==292); case 382: /* db_name ::= NK_ID */ yytestcase(yyruleno==382); case 383: /* table_name ::= NK_ID */ yytestcase(yyruleno==383); case 384: /* column_name ::= NK_ID */ yytestcase(yyruleno==384); case 385: /* function_name ::= NK_ID */ yytestcase(yyruleno==385); case 386: /* table_alias ::= NK_ID */ yytestcase(yyruleno==386); case 387: /* column_alias ::= NK_ID */ yytestcase(yyruleno==387); case 388: /* user_name ::= NK_ID */ yytestcase(yyruleno==388); case 389: /* topic_name ::= NK_ID */ yytestcase(yyruleno==389); case 390: /* stream_name ::= NK_ID */ yytestcase(yyruleno==390); case 391: /* cgroup_name ::= NK_ID */ yytestcase(yyruleno==391); case 392: /* index_name ::= NK_ID */ yytestcase(yyruleno==392); case 432: /* noarg_func ::= NOW */ yytestcase(yyruleno==432); case 433: /* noarg_func ::= TODAY */ yytestcase(yyruleno==433); case 434: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==434); case 435: /* noarg_func ::= DATABASE */ yytestcase(yyruleno==435); case 436: /* noarg_func ::= CLIENT_VERSION */ yytestcase(yyruleno==436); case 437: /* noarg_func ::= SERVER_VERSION */ yytestcase(yyruleno==437); case 438: /* noarg_func ::= SERVER_STATUS */ yytestcase(yyruleno==438); case 439: /* noarg_func ::= CURRENT_USER */ yytestcase(yyruleno==439); case 440: /* noarg_func ::= USER */ yytestcase(yyruleno==440); case 441: /* star_func ::= COUNT */ yytestcase(yyruleno==441); case 442: /* star_func ::= FIRST */ yytestcase(yyruleno==442); case 443: /* star_func ::= LAST */ yytestcase(yyruleno==443); case 444: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==444); { yylhsminor.yy113 = yymsp[0].minor.yy0; } yymsp[0].minor.yy113 = yylhsminor.yy113; break; case 57: /* force_opt ::= */ case 77: /* not_exists_opt ::= */ yytestcase(yyruleno==77); case 79: /* exists_opt ::= */ yytestcase(yyruleno==79); case 309: /* analyze_opt ::= */ yytestcase(yyruleno==309); case 316: /* agg_func_opt ::= */ yytestcase(yyruleno==316); case 322: /* or_replace_opt ::= */ yytestcase(yyruleno==322); case 505: /* set_quantifier_opt ::= */ yytestcase(yyruleno==505); { yymsp[1].minor.yy369 = false; } break; case 58: /* force_opt ::= FORCE */ case 310: /* analyze_opt ::= ANALYZE */ yytestcase(yyruleno==310); case 317: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==317); case 506: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==506); { yymsp[0].minor.yy369 = true; } break; case 59: /* cmd ::= ALTER LOCAL NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 60: /* cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 61: /* cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 62: /* cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 63: /* cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 64: /* cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 65: /* cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 66: /* cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 67: /* cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 68: /* cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 69: /* cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy369, &yymsp[-1].minor.yy113, yymsp[0].minor.yy448); } break; case 70: /* cmd ::= DROP DATABASE exists_opt db_name */ { pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy369, &yymsp[0].minor.yy113); } break; case 71: /* cmd ::= USE db_name */ { pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy113); } break; case 72: /* cmd ::= ALTER DATABASE db_name alter_db_options */ { pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy113, yymsp[0].minor.yy448); } break; case 73: /* cmd ::= FLUSH DATABASE db_name */ { pCxt->pRootNode = createFlushDatabaseStmt(pCxt, &yymsp[0].minor.yy113); } break; case 74: /* cmd ::= TRIM DATABASE db_name speed_opt */ { pCxt->pRootNode = createTrimDatabaseStmt(pCxt, &yymsp[-1].minor.yy113, yymsp[0].minor.yy788); } break; case 75: /* cmd ::= COMPACT DATABASE db_name start_opt end_opt */ { pCxt->pRootNode = createCompactStmt(pCxt, &yymsp[-2].minor.yy113, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 76: /* not_exists_opt ::= IF NOT EXISTS */ { yymsp[-2].minor.yy369 = true; } break; case 78: /* exists_opt ::= IF EXISTS */ case 323: /* or_replace_opt ::= OR REPLACE */ yytestcase(yyruleno==323); { yymsp[-1].minor.yy369 = true; } break; case 80: /* db_options ::= */ { yymsp[1].minor.yy448 = createDefaultDatabaseOptions(pCxt); } break; case 81: /* db_options ::= db_options BUFFER NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_BUFFER, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 82: /* db_options ::= db_options CACHEMODEL NK_STRING */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_CACHEMODEL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 83: /* db_options ::= db_options CACHESIZE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_CACHESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 84: /* db_options ::= db_options COMP NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_COMP, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 85: /* db_options ::= db_options DURATION NK_INTEGER */ case 86: /* db_options ::= db_options DURATION NK_VARIABLE */ yytestcase(yyruleno==86); { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_DAYS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 87: /* db_options ::= db_options MAXROWS NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_MAXROWS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 88: /* db_options ::= db_options MINROWS NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_MINROWS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 89: /* db_options ::= db_options KEEP integer_list */ case 90: /* db_options ::= db_options KEEP variable_list */ yytestcase(yyruleno==90); { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_KEEP, yymsp[0].minor.yy432); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 91: /* db_options ::= db_options PAGES NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_PAGES, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 92: /* db_options ::= db_options PAGESIZE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_PAGESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 93: /* db_options ::= db_options TSDB_PAGESIZE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_TSDB_PAGESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 94: /* db_options ::= db_options PRECISION NK_STRING */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_PRECISION, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 95: /* db_options ::= db_options REPLICA NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_REPLICA, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 96: /* db_options ::= db_options VGROUPS NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_VGROUPS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 97: /* db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_SINGLE_STABLE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 98: /* db_options ::= db_options RETENTIONS retention_list */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_RETENTIONS, yymsp[0].minor.yy432); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 99: /* db_options ::= db_options SCHEMALESS NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_SCHEMALESS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 100: /* db_options ::= db_options WAL_LEVEL NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_WAL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 101: /* db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_FSYNC, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 102: /* db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_WAL_RETENTION_PERIOD, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 103: /* db_options ::= db_options WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-3].minor.yy448, DB_OPTION_WAL_RETENTION_PERIOD, &t); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 104: /* db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_WAL_RETENTION_SIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 105: /* db_options ::= db_options WAL_RETENTION_SIZE NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-3].minor.yy448, DB_OPTION_WAL_RETENTION_SIZE, &t); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 106: /* db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_WAL_ROLL_PERIOD, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 107: /* db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_WAL_SEGMENT_SIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 108: /* db_options ::= db_options STT_TRIGGER NK_INTEGER */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_STT_TRIGGER, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 109: /* db_options ::= db_options TABLE_PREFIX signed */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_TABLE_PREFIX, yymsp[0].minor.yy448); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 110: /* db_options ::= db_options TABLE_SUFFIX signed */ { yylhsminor.yy448 = setDatabaseOption(pCxt, yymsp[-2].minor.yy448, DB_OPTION_TABLE_SUFFIX, yymsp[0].minor.yy448); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 111: /* alter_db_options ::= alter_db_option */ { yylhsminor.yy448 = createAlterDatabaseOptions(pCxt); yylhsminor.yy448 = setAlterDatabaseOption(pCxt, yylhsminor.yy448, &yymsp[0].minor.yy53); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 112: /* alter_db_options ::= alter_db_options alter_db_option */ { yylhsminor.yy448 = setAlterDatabaseOption(pCxt, yymsp[-1].minor.yy448, &yymsp[0].minor.yy53); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 113: /* alter_db_option ::= BUFFER NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_BUFFER; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 114: /* alter_db_option ::= CACHEMODEL NK_STRING */ { yymsp[-1].minor.yy53.type = DB_OPTION_CACHEMODEL; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 115: /* alter_db_option ::= CACHESIZE NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_CACHESIZE; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 116: /* alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 117: /* alter_db_option ::= KEEP integer_list */ case 118: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==118); { yymsp[-1].minor.yy53.type = DB_OPTION_KEEP; yymsp[-1].minor.yy53.pList = yymsp[0].minor.yy432; } break; case 119: /* alter_db_option ::= PAGES NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_PAGES; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 120: /* alter_db_option ::= REPLICA NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 121: /* alter_db_option ::= WAL_LEVEL NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_WAL; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 122: /* alter_db_option ::= STT_TRIGGER NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_STT_TRIGGER; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 123: /* alter_db_option ::= MINROWS NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_MINROWS; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 124: /* alter_db_option ::= WAL_RETENTION_PERIOD NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_WAL_RETENTION_PERIOD; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 125: /* alter_db_option ::= WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yymsp[-2].minor.yy53.type = DB_OPTION_WAL_RETENTION_PERIOD; yymsp[-2].minor.yy53.val = t; } break; case 126: /* alter_db_option ::= WAL_RETENTION_SIZE NK_INTEGER */ { yymsp[-1].minor.yy53.type = DB_OPTION_WAL_RETENTION_SIZE; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 127: /* alter_db_option ::= WAL_RETENTION_SIZE NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yymsp[-2].minor.yy53.type = DB_OPTION_WAL_RETENTION_SIZE; yymsp[-2].minor.yy53.val = t; } break; case 128: /* integer_list ::= NK_INTEGER */ { yylhsminor.yy432 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 129: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ case 351: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==351); { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-2].minor.yy432, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy432 = yylhsminor.yy432; break; case 130: /* variable_list ::= NK_VARIABLE */ { yylhsminor.yy432 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 131: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-2].minor.yy432, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy432 = yylhsminor.yy432; break; case 132: /* retention_list ::= retention */ case 162: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==162); case 165: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==165); case 172: /* column_def_list ::= column_def */ yytestcase(yyruleno==172); case 215: /* rollup_func_list ::= rollup_func_name */ yytestcase(yyruleno==215); case 220: /* col_name_list ::= col_name */ yytestcase(yyruleno==220); case 271: /* tag_list_opt ::= tag_item */ yytestcase(yyruleno==271); case 285: /* func_list ::= func */ yytestcase(yyruleno==285); case 380: /* literal_list ::= signed_literal */ yytestcase(yyruleno==380); case 447: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==447); case 453: /* when_then_list ::= when_then_expr */ yytestcase(yyruleno==453); case 508: /* select_list ::= select_item */ yytestcase(yyruleno==508); case 519: /* partition_list ::= partition_item */ yytestcase(yyruleno==519); case 574: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==574); { yylhsminor.yy432 = createNodeList(pCxt, yymsp[0].minor.yy448); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 133: /* retention_list ::= retention_list NK_COMMA retention */ case 166: /* multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ yytestcase(yyruleno==166); case 173: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==173); case 216: /* rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ yytestcase(yyruleno==216); case 221: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==221); case 272: /* tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ yytestcase(yyruleno==272); case 286: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==286); case 381: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==381); case 448: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==448); case 509: /* select_list ::= select_list NK_COMMA select_item */ yytestcase(yyruleno==509); case 520: /* partition_list ::= partition_list NK_COMMA partition_item */ yytestcase(yyruleno==520); case 575: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==575); { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-2].minor.yy432, yymsp[0].minor.yy448); } yymsp[-2].minor.yy432 = yylhsminor.yy432; break; case 134: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { yylhsminor.yy448 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 135: /* speed_opt ::= */ case 318: /* bufsize_opt ::= */ yytestcase(yyruleno==318); { yymsp[1].minor.yy788 = 0; } break; case 136: /* speed_opt ::= MAX_SPEED NK_INTEGER */ case 319: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ yytestcase(yyruleno==319); { yymsp[-1].minor.yy788 = taosStr2Int32(yymsp[0].minor.yy0.z, NULL, 10); } break; case 138: /* start_opt ::= START WITH NK_INTEGER */ case 142: /* end_opt ::= END WITH NK_INTEGER */ yytestcase(yyruleno==142); { yymsp[-2].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 139: /* start_opt ::= START WITH NK_STRING */ case 143: /* end_opt ::= END WITH NK_STRING */ yytestcase(yyruleno==143); { yymsp[-2].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; case 140: /* start_opt ::= START WITH TIMESTAMP NK_STRING */ case 144: /* end_opt ::= END WITH TIMESTAMP NK_STRING */ yytestcase(yyruleno==144); { yymsp[-3].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; case 145: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ case 147: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==147); { pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy369, yymsp[-5].minor.yy448, yymsp[-3].minor.yy432, yymsp[-1].minor.yy432, yymsp[0].minor.yy448); } break; case 146: /* cmd ::= CREATE TABLE multi_create_clause */ { pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy432); } break; case 148: /* cmd ::= DROP TABLE multi_drop_clause */ { pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy432); } break; case 149: /* cmd ::= DROP STABLE exists_opt full_table_name */ { pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy369, yymsp[0].minor.yy448); } break; case 150: /* cmd ::= ALTER TABLE alter_table_clause */ case 353: /* cmd ::= query_or_subquery */ yytestcase(yyruleno==353); case 354: /* cmd ::= insert_query */ yytestcase(yyruleno==354); { pCxt->pRootNode = yymsp[0].minor.yy448; } break; case 151: /* cmd ::= ALTER STABLE alter_table_clause */ { pCxt->pRootNode = setAlterSuperTableType(yymsp[0].minor.yy448); } break; case 152: /* alter_table_clause ::= full_table_name alter_table_options */ { yylhsminor.yy448 = createAlterTableModifyOptions(pCxt, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 153: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { yylhsminor.yy448 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy113, yymsp[0].minor.yy728); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 154: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ { yylhsminor.yy448 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy448, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy113); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 155: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { yylhsminor.yy448 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy113, yymsp[0].minor.yy728); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 156: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { yylhsminor.yy448 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy113, &yymsp[0].minor.yy113); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 157: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { yylhsminor.yy448 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy113, yymsp[0].minor.yy728); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 158: /* alter_table_clause ::= full_table_name DROP TAG column_name */ { yylhsminor.yy448 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy448, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy113); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 159: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { yylhsminor.yy448 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy113, yymsp[0].minor.yy728); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 160: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { yylhsminor.yy448 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy448, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy113, &yymsp[0].minor.yy113); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 161: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ { yylhsminor.yy448 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy448, &yymsp[-2].minor.yy113, yymsp[0].minor.yy448); } yymsp[-5].minor.yy448 = yylhsminor.yy448; break; case 163: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ case 454: /* when_then_list ::= when_then_list when_then_expr */ yytestcase(yyruleno==454); { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-1].minor.yy432, yymsp[0].minor.yy448); } yymsp[-1].minor.yy432 = yylhsminor.yy432; break; case 164: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ { yylhsminor.yy448 = createCreateSubTableClause(pCxt, yymsp[-9].minor.yy369, yymsp[-8].minor.yy448, yymsp[-6].minor.yy448, yymsp[-5].minor.yy432, yymsp[-2].minor.yy432, yymsp[0].minor.yy448); } yymsp[-9].minor.yy448 = yylhsminor.yy448; break; case 167: /* drop_table_clause ::= exists_opt full_table_name */ { yylhsminor.yy448 = createDropTableClause(pCxt, yymsp[-1].minor.yy369, yymsp[0].minor.yy448); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 168: /* specific_cols_opt ::= */ case 198: /* tags_def_opt ::= */ yytestcase(yyruleno==198); case 270: /* tag_list_opt ::= */ yytestcase(yyruleno==270); case 326: /* col_list_opt ::= */ yytestcase(yyruleno==326); case 328: /* tag_def_or_ref_opt ::= */ yytestcase(yyruleno==328); case 517: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==517); case 542: /* group_by_clause_opt ::= */ yytestcase(yyruleno==542); case 561: /* order_by_clause_opt ::= */ yytestcase(yyruleno==561); { yymsp[1].minor.yy432 = NULL; } break; case 169: /* specific_cols_opt ::= NK_LP col_name_list NK_RP */ case 327: /* col_list_opt ::= NK_LP col_name_list NK_RP */ yytestcase(yyruleno==327); { yymsp[-2].minor.yy432 = yymsp[-1].minor.yy432; } break; case 170: /* full_table_name ::= table_name */ { yylhsminor.yy448 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy113, NULL); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 171: /* full_table_name ::= db_name NK_DOT table_name */ { yylhsminor.yy448 = createRealTableNode(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy113, NULL); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 174: /* column_def ::= column_name type_name */ { yylhsminor.yy448 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy113, yymsp[0].minor.yy728, NULL); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 175: /* type_name ::= BOOL */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_BOOL); } break; case 176: /* type_name ::= TINYINT */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_TINYINT); } break; case 177: /* type_name ::= SMALLINT */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_SMALLINT); } break; case 178: /* type_name ::= INT */ case 179: /* type_name ::= INTEGER */ yytestcase(yyruleno==179); { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_INT); } break; case 180: /* type_name ::= BIGINT */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_BIGINT); } break; case 181: /* type_name ::= FLOAT */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_FLOAT); } break; case 182: /* type_name ::= DOUBLE */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_DOUBLE); } break; case 183: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy728 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } break; case 184: /* type_name ::= TIMESTAMP */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } break; case 185: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy728 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } break; case 186: /* type_name ::= TINYINT UNSIGNED */ { yymsp[-1].minor.yy728 = createDataType(TSDB_DATA_TYPE_UTINYINT); } break; case 187: /* type_name ::= SMALLINT UNSIGNED */ { yymsp[-1].minor.yy728 = createDataType(TSDB_DATA_TYPE_USMALLINT); } break; case 188: /* type_name ::= INT UNSIGNED */ { yymsp[-1].minor.yy728 = createDataType(TSDB_DATA_TYPE_UINT); } break; case 189: /* type_name ::= BIGINT UNSIGNED */ { yymsp[-1].minor.yy728 = createDataType(TSDB_DATA_TYPE_UBIGINT); } break; case 190: /* type_name ::= JSON */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_JSON); } break; case 191: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy728 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } break; case 192: /* type_name ::= MEDIUMBLOB */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } break; case 193: /* type_name ::= BLOB */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_BLOB); } break; case 194: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy728 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } break; case 195: /* type_name ::= DECIMAL */ { yymsp[0].minor.yy728 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 196: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy728 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 197: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { yymsp[-5].minor.yy728 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 199: /* tags_def_opt ::= tags_def */ case 329: /* tag_def_or_ref_opt ::= tags_def */ yytestcase(yyruleno==329); case 446: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==446); { yylhsminor.yy432 = yymsp[0].minor.yy432; } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 200: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ case 330: /* tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ yytestcase(yyruleno==330); { yymsp[-3].minor.yy432 = yymsp[-1].minor.yy432; } break; case 201: /* table_options ::= */ { yymsp[1].minor.yy448 = createDefaultTableOptions(pCxt); } break; case 202: /* table_options ::= table_options COMMENT NK_STRING */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-2].minor.yy448, TABLE_OPTION_COMMENT, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 203: /* table_options ::= table_options MAX_DELAY duration_list */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-2].minor.yy448, TABLE_OPTION_MAXDELAY, yymsp[0].minor.yy432); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 204: /* table_options ::= table_options WATERMARK duration_list */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-2].minor.yy448, TABLE_OPTION_WATERMARK, yymsp[0].minor.yy432); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 205: /* table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-4].minor.yy448, TABLE_OPTION_ROLLUP, yymsp[-1].minor.yy432); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 206: /* table_options ::= table_options TTL NK_INTEGER */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-2].minor.yy448, TABLE_OPTION_TTL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 207: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-4].minor.yy448, TABLE_OPTION_SMA, yymsp[-1].minor.yy432); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 208: /* table_options ::= table_options DELETE_MARK duration_list */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-2].minor.yy448, TABLE_OPTION_DELETE_MARK, yymsp[0].minor.yy432); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 209: /* alter_table_options ::= alter_table_option */ { yylhsminor.yy448 = createAlterTableOptions(pCxt); yylhsminor.yy448 = setTableOption(pCxt, yylhsminor.yy448, yymsp[0].minor.yy53.type, &yymsp[0].minor.yy53.val); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 210: /* alter_table_options ::= alter_table_options alter_table_option */ { yylhsminor.yy448 = setTableOption(pCxt, yymsp[-1].minor.yy448, yymsp[0].minor.yy53.type, &yymsp[0].minor.yy53.val); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 211: /* alter_table_option ::= COMMENT NK_STRING */ { yymsp[-1].minor.yy53.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 212: /* alter_table_option ::= TTL NK_INTEGER */ { yymsp[-1].minor.yy53.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy53.val = yymsp[0].minor.yy0; } break; case 213: /* duration_list ::= duration_literal */ case 410: /* expression_list ::= expr_or_subquery */ yytestcase(yyruleno==410); { yylhsminor.yy432 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 214: /* duration_list ::= duration_list NK_COMMA duration_literal */ case 411: /* expression_list ::= expression_list NK_COMMA expr_or_subquery */ yytestcase(yyruleno==411); { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-2].minor.yy432, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[-2].minor.yy432 = yylhsminor.yy432; break; case 217: /* rollup_func_name ::= function_name */ { yylhsminor.yy448 = createFunctionNode(pCxt, &yymsp[0].minor.yy113, NULL); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 218: /* rollup_func_name ::= FIRST */ case 219: /* rollup_func_name ::= LAST */ yytestcase(yyruleno==219); case 274: /* tag_item ::= QTAGS */ yytestcase(yyruleno==274); { yylhsminor.yy448 = createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 222: /* col_name ::= column_name */ case 275: /* tag_item ::= column_name */ yytestcase(yyruleno==275); { yylhsminor.yy448 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy113); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 223: /* cmd ::= SHOW DNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT); } break; case 224: /* cmd ::= SHOW USERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT); } break; case 225: /* cmd ::= SHOW USER PRIVILEGES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USER_PRIVILEGES_STMT); } break; case 226: /* cmd ::= SHOW DATABASES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT); } break; case 227: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy448, yymsp[0].minor.yy448, OP_TYPE_LIKE); } break; case 228: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy448, yymsp[0].minor.yy448, OP_TYPE_LIKE); } break; case 229: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy448, NULL, OP_TYPE_LIKE); } break; case 230: /* cmd ::= SHOW MNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT); } break; case 231: /* cmd ::= SHOW QNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT); } break; case 232: /* cmd ::= SHOW FUNCTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT); } break; case 233: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[0].minor.yy448, yymsp[-1].minor.yy448, OP_TYPE_EQUAL); } break; case 234: /* cmd ::= SHOW STREAMS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT); } break; case 235: /* cmd ::= SHOW ACCOUNTS */ { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } break; case 236: /* cmd ::= SHOW APPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT); } break; case 237: /* cmd ::= SHOW CONNECTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT); } break; case 238: /* cmd ::= SHOW LICENCES */ case 239: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==239); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCES_STMT); } break; case 240: /* cmd ::= SHOW CREATE DATABASE db_name */ { pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy113); } break; case 241: /* cmd ::= SHOW CREATE TABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy448); } break; case 242: /* cmd ::= SHOW CREATE STABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy448); } break; case 243: /* cmd ::= SHOW QUERIES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT); } break; case 244: /* cmd ::= SHOW SCORES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT); } break; case 245: /* cmd ::= SHOW TOPICS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT); } break; case 246: /* cmd ::= SHOW VARIABLES */ case 247: /* cmd ::= SHOW CLUSTER VARIABLES */ yytestcase(yyruleno==247); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLES_STMT); } break; case 248: /* cmd ::= SHOW LOCAL VARIABLES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LOCAL_VARIABLES_STMT); } break; case 249: /* cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ { pCxt->pRootNode = createShowDnodeVariablesStmt(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[-2].minor.yy0), yymsp[0].minor.yy448); } break; case 250: /* cmd ::= SHOW BNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT); } break; case 251: /* cmd ::= SHOW SNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT); } break; case 252: /* cmd ::= SHOW CLUSTER */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CLUSTER_STMT); } break; case 253: /* cmd ::= SHOW TRANSACTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TRANSACTIONS_STMT); } break; case 254: /* cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ { pCxt->pRootNode = createShowTableDistributedStmt(pCxt, yymsp[0].minor.yy448); } break; case 255: /* cmd ::= SHOW CONSUMERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONSUMERS_STMT); } break; case 256: /* cmd ::= SHOW SUBSCRIPTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SUBSCRIPTIONS_STMT); } break; case 257: /* cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TAGS_STMT, yymsp[0].minor.yy448, yymsp[-1].minor.yy448, OP_TYPE_EQUAL); } break; case 258: /* cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowTableTagsStmt(pCxt, yymsp[-1].minor.yy448, yymsp[0].minor.yy448, yymsp[-3].minor.yy432); } break; case 259: /* cmd ::= SHOW VNODES NK_INTEGER */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0), NULL); } break; case 260: /* cmd ::= SHOW VNODES NK_STRING */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, NULL, createValueNode(pCxt, TSDB_DATA_TYPE_VARCHAR, &yymsp[0].minor.yy0)); } break; case 261: /* cmd ::= SHOW db_name_cond_opt ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, yymsp[-1].minor.yy448, QUERY_NODE_SHOW_DB_ALIVE_STMT); } break; case 262: /* cmd ::= SHOW CLUSTER ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, NULL, QUERY_NODE_SHOW_CLUSTER_ALIVE_STMT); } break; case 263: /* db_name_cond_opt ::= */ case 268: /* from_db_opt ::= */ yytestcase(yyruleno==268); { yymsp[1].minor.yy448 = createDefaultDatabaseCondValue(pCxt); } break; case 264: /* db_name_cond_opt ::= db_name NK_DOT */ { yylhsminor.yy448 = createIdentifierValueNode(pCxt, &yymsp[-1].minor.yy113); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 266: /* like_pattern_opt ::= LIKE NK_STRING */ { yymsp[-1].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; case 267: /* table_name_cond ::= table_name */ { yylhsminor.yy448 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy113); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 269: /* from_db_opt ::= FROM db_name */ { yymsp[-1].minor.yy448 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy113); } break; case 273: /* tag_item ::= TBNAME */ { yylhsminor.yy448 = setProjectionAlias(pCxt, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL), &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 276: /* tag_item ::= column_name column_alias */ { yylhsminor.yy448 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-1].minor.yy113), &yymsp[0].minor.yy113); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 277: /* tag_item ::= column_name AS column_alias */ { yylhsminor.yy448 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-2].minor.yy113), &yymsp[0].minor.yy113); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 278: /* cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy369, yymsp[-3].minor.yy448, yymsp[-1].minor.yy448, NULL, yymsp[0].minor.yy448); } break; case 279: /* cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_NORMAL, yymsp[-6].minor.yy369, yymsp[-5].minor.yy448, yymsp[-3].minor.yy448, yymsp[-1].minor.yy432, NULL); } break; case 280: /* cmd ::= DROP INDEX exists_opt full_index_name */ { pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-1].minor.yy369, yymsp[0].minor.yy448); } break; case 281: /* full_index_name ::= index_name */ { yylhsminor.yy448 = createRealTableNodeForIndexName(pCxt, NULL, &yymsp[0].minor.yy113); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 282: /* full_index_name ::= db_name NK_DOT index_name */ { yylhsminor.yy448 = createRealTableNodeForIndexName(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy113); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 283: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ { yymsp[-9].minor.yy448 = createIndexOption(pCxt, yymsp[-7].minor.yy432, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), NULL, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 284: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ { yymsp[-11].minor.yy448 = createIndexOption(pCxt, yymsp[-9].minor.yy432, releaseRawExprNode(pCxt, yymsp[-5].minor.yy448), releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 287: /* func ::= sma_func_name NK_LP expression_list NK_RP */ { yylhsminor.yy448 = createFunctionNode(pCxt, &yymsp[-3].minor.yy113, yymsp[-1].minor.yy432); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 288: /* sma_func_name ::= function_name */ case 497: /* alias_opt ::= table_alias */ yytestcase(yyruleno==497); { yylhsminor.yy113 = yymsp[0].minor.yy113; } yymsp[0].minor.yy113 = yylhsminor.yy113; break; case 293: /* sma_stream_opt ::= */ case 331: /* stream_options ::= */ yytestcase(yyruleno==331); { yymsp[1].minor.yy448 = createStreamOptions(pCxt); } break; case 294: /* sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy448)->pWatermark = releaseRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = yymsp[-2].minor.yy448; } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 295: /* sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy448)->pDelay = releaseRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = yymsp[-2].minor.yy448; } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 296: /* sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy448)->pDeleteMark = releaseRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = yymsp[-2].minor.yy448; } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 297: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ { pCxt->pRootNode = createCreateTopicStmtUseQuery(pCxt, yymsp[-3].minor.yy369, &yymsp[-2].minor.yy113, yymsp[0].minor.yy448); } break; case 298: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-4].minor.yy369, &yymsp[-3].minor.yy113, &yymsp[0].minor.yy113, false); } break; case 299: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-6].minor.yy369, &yymsp[-5].minor.yy113, &yymsp[0].minor.yy113, true); } break; case 300: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-4].minor.yy369, &yymsp[-3].minor.yy113, yymsp[0].minor.yy448, false); } break; case 301: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-6].minor.yy369, &yymsp[-5].minor.yy113, yymsp[0].minor.yy448, true); } break; case 302: /* cmd ::= DROP TOPIC exists_opt topic_name */ { pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy369, &yymsp[0].minor.yy113); } break; case 303: /* cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ { pCxt->pRootNode = createDropCGroupStmt(pCxt, yymsp[-3].minor.yy369, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy113); } break; case 304: /* cmd ::= DESC full_table_name */ case 305: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==305); { pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy448); } break; case 306: /* cmd ::= RESET QUERY CACHE */ { pCxt->pRootNode = createResetQueryCacheStmt(pCxt); } break; case 307: /* cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ case 308: /* cmd ::= EXPLAIN analyze_opt explain_options insert_query */ yytestcase(yyruleno==308); { pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy369, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 311: /* explain_options ::= */ { yymsp[1].minor.yy448 = createDefaultExplainOptions(pCxt); } break; case 312: /* explain_options ::= explain_options VERBOSE NK_BOOL */ { yylhsminor.yy448 = setExplainVerbose(pCxt, yymsp[-2].minor.yy448, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 313: /* explain_options ::= explain_options RATIO NK_FLOAT */ { yylhsminor.yy448 = setExplainRatio(pCxt, yymsp[-2].minor.yy448, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 314: /* cmd ::= CREATE or_replace_opt agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt language_opt */ { pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-7].minor.yy369, yymsp[-9].minor.yy369, &yymsp[-6].minor.yy113, &yymsp[-4].minor.yy0, yymsp[-2].minor.yy728, yymsp[-1].minor.yy788, &yymsp[0].minor.yy113, yymsp[-10].minor.yy369); } break; case 315: /* cmd ::= DROP FUNCTION exists_opt function_name */ { pCxt->pRootNode = createDropFunctionStmt(pCxt, yymsp[-1].minor.yy369, &yymsp[0].minor.yy113); } break; case 320: /* language_opt ::= */ { yymsp[1].minor.yy113 = nil_token; } break; case 321: /* language_opt ::= LANGUAGE NK_STRING */ { yymsp[-1].minor.yy113 = yymsp[0].minor.yy0; } break; case 324: /* cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ { pCxt->pRootNode = createCreateStreamStmt(pCxt, yymsp[-9].minor.yy369, &yymsp[-8].minor.yy113, yymsp[-5].minor.yy448, yymsp[-7].minor.yy448, yymsp[-3].minor.yy432, yymsp[-2].minor.yy448, yymsp[0].minor.yy448, yymsp[-4].minor.yy432); } break; case 325: /* cmd ::= DROP STREAM exists_opt stream_name */ { pCxt->pRootNode = createDropStreamStmt(pCxt, yymsp[-1].minor.yy369, &yymsp[0].minor.yy113); } break; case 332: /* stream_options ::= stream_options TRIGGER AT_ONCE */ case 333: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ yytestcase(yyruleno==333); { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-2].minor.yy448, SOPT_TRIGGER_TYPE_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 334: /* stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-3].minor.yy448, SOPT_TRIGGER_TYPE_SET, &yymsp[-1].minor.yy0, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 335: /* stream_options ::= stream_options WATERMARK duration_literal */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-2].minor.yy448, SOPT_WATERMARK_SET, NULL, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 336: /* stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-3].minor.yy448, SOPT_IGNORE_EXPIRED_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 337: /* stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-2].minor.yy448, SOPT_FILL_HISTORY_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 338: /* stream_options ::= stream_options DELETE_MARK duration_literal */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-2].minor.yy448, SOPT_DELETE_MARK_SET, NULL, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 339: /* stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ { yylhsminor.yy448 = setStreamOptions(pCxt, yymsp[-3].minor.yy448, SOPT_IGNORE_UPDATE_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 341: /* subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ case 531: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ yytestcase(yyruleno==531); case 551: /* every_opt ::= EVERY NK_LP duration_literal NK_RP */ yytestcase(yyruleno==551); { yymsp[-3].minor.yy448 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy448); } break; case 342: /* cmd ::= KILL CONNECTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); } break; case 343: /* cmd ::= KILL QUERY NK_STRING */ { pCxt->pRootNode = createKillQueryStmt(pCxt, &yymsp[0].minor.yy0); } break; case 344: /* cmd ::= KILL TRANSACTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_TRANSACTION_STMT, &yymsp[0].minor.yy0); } break; case 345: /* cmd ::= BALANCE VGROUP */ { pCxt->pRootNode = createBalanceVgroupStmt(pCxt); } break; case 346: /* cmd ::= BALANCE VGROUP LEADER */ { pCxt->pRootNode = createBalanceVgroupLeaderStmt(pCxt); } break; case 347: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 348: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy432); } break; case 349: /* cmd ::= SPLIT VGROUP NK_INTEGER */ { pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); } break; case 350: /* dnode_list ::= DNODE NK_INTEGER */ { yymsp[-1].minor.yy432 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } break; case 352: /* cmd ::= DELETE FROM full_table_name where_clause_opt */ { pCxt->pRootNode = createDeleteStmt(pCxt, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 355: /* insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ { yymsp[-6].minor.yy448 = createInsertStmt(pCxt, yymsp[-4].minor.yy448, yymsp[-2].minor.yy432, yymsp[0].minor.yy448); } break; case 356: /* insert_query ::= INSERT INTO full_table_name query_or_subquery */ { yymsp[-3].minor.yy448 = createInsertStmt(pCxt, yymsp[-1].minor.yy448, NULL, yymsp[0].minor.yy448); } break; case 357: /* literal ::= NK_INTEGER */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 358: /* literal ::= NK_FLOAT */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 359: /* literal ::= NK_STRING */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 360: /* literal ::= NK_BOOL */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 361: /* literal ::= TIMESTAMP NK_STRING */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 362: /* literal ::= duration_literal */ case 372: /* signed_literal ::= signed */ yytestcase(yyruleno==372); case 393: /* expr_or_subquery ::= expression */ yytestcase(yyruleno==393); case 394: /* expression ::= literal */ yytestcase(yyruleno==394); case 395: /* expression ::= pseudo_column */ yytestcase(yyruleno==395); case 396: /* expression ::= column_reference */ yytestcase(yyruleno==396); case 397: /* expression ::= function_expression */ yytestcase(yyruleno==397); case 398: /* expression ::= case_when_expression */ yytestcase(yyruleno==398); case 429: /* function_expression ::= literal_func */ yytestcase(yyruleno==429); case 478: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==478); case 482: /* boolean_primary ::= predicate */ yytestcase(yyruleno==482); case 484: /* common_expression ::= expr_or_subquery */ yytestcase(yyruleno==484); case 485: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==485); case 488: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==488); case 490: /* table_reference ::= table_primary */ yytestcase(yyruleno==490); case 491: /* table_reference ::= joined_table */ yytestcase(yyruleno==491); case 495: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==495); case 553: /* query_simple ::= query_specification */ yytestcase(yyruleno==553); case 554: /* query_simple ::= union_query_expression */ yytestcase(yyruleno==554); case 557: /* query_simple_or_subquery ::= query_simple */ yytestcase(yyruleno==557); case 559: /* query_or_subquery ::= query_expression */ yytestcase(yyruleno==559); { yylhsminor.yy448 = yymsp[0].minor.yy448; } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 363: /* literal ::= NULL */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 364: /* literal ::= NK_QUESTION */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 365: /* duration_literal ::= NK_VARIABLE */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 366: /* signed ::= NK_INTEGER */ { yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 367: /* signed ::= NK_PLUS NK_INTEGER */ { yymsp[-1].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } break; case 368: /* signed ::= NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 369: /* signed ::= NK_FLOAT */ { yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 370: /* signed ::= NK_PLUS NK_FLOAT */ { yymsp[-1].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } break; case 371: /* signed ::= NK_MINUS NK_FLOAT */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 373: /* signed_literal ::= NK_STRING */ { yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 374: /* signed_literal ::= NK_BOOL */ { yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 375: /* signed_literal ::= TIMESTAMP NK_STRING */ { yymsp[-1].minor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; case 376: /* signed_literal ::= duration_literal */ case 378: /* signed_literal ::= literal_func */ yytestcase(yyruleno==378); case 449: /* star_func_para ::= expr_or_subquery */ yytestcase(yyruleno==449); case 511: /* select_item ::= common_expression */ yytestcase(yyruleno==511); case 521: /* partition_item ::= expr_or_subquery */ yytestcase(yyruleno==521); case 558: /* query_simple_or_subquery ::= subquery */ yytestcase(yyruleno==558); case 560: /* query_or_subquery ::= subquery */ yytestcase(yyruleno==560); case 573: /* search_condition ::= common_expression */ yytestcase(yyruleno==573); { yylhsminor.yy448 = releaseRawExprNode(pCxt, yymsp[0].minor.yy448); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 377: /* signed_literal ::= NULL */ { yylhsminor.yy448 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 379: /* signed_literal ::= NK_QUESTION */ { yylhsminor.yy448 = createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 399: /* expression ::= NK_LP expression NK_RP */ case 483: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==483); case 572: /* subquery ::= NK_LP subquery NK_RP */ yytestcase(yyruleno==572); { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy448)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 400: /* expression ::= NK_PLUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 401: /* expression ::= NK_MINUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy448), NULL)); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 402: /* expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 403: /* expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 404: /* expression ::= expr_or_subquery NK_STAR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 405: /* expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 406: /* expression ::= expr_or_subquery NK_REM expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_REM, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 407: /* expression ::= column_reference NK_ARROW NK_STRING */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_JSON_GET_VALUE, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 408: /* expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_BIT_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 409: /* expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_BIT_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 412: /* column_reference ::= column_name */ { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy113, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy113)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 413: /* column_reference ::= table_name NK_DOT column_name */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy113, createColumnNode(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy113)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 414: /* pseudo_column ::= ROWTS */ case 415: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==415); case 417: /* pseudo_column ::= QSTART */ yytestcase(yyruleno==417); case 418: /* pseudo_column ::= QEND */ yytestcase(yyruleno==418); case 419: /* pseudo_column ::= QDURATION */ yytestcase(yyruleno==419); case 420: /* pseudo_column ::= WSTART */ yytestcase(yyruleno==420); case 421: /* pseudo_column ::= WEND */ yytestcase(yyruleno==421); case 422: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==422); case 423: /* pseudo_column ::= IROWTS */ yytestcase(yyruleno==423); case 424: /* pseudo_column ::= ISFILLED */ yytestcase(yyruleno==424); case 425: /* pseudo_column ::= QTAGS */ yytestcase(yyruleno==425); case 431: /* literal_func ::= NOW */ yytestcase(yyruleno==431); { yylhsminor.yy448 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 416: /* pseudo_column ::= table_name NK_DOT TBNAME */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-2].minor.yy113)))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 426: /* function_expression ::= function_name NK_LP expression_list NK_RP */ case 427: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==427); { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy113, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy113, yymsp[-1].minor.yy432)); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 428: /* function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0, createCastFunctionNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), yymsp[-1].minor.yy728)); } yymsp[-5].minor.yy448 = yylhsminor.yy448; break; case 430: /* literal_func ::= noarg_func NK_LP NK_RP */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-2].minor.yy113, NULL)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 445: /* star_func_para_list ::= NK_STAR */ { yylhsminor.yy432 = createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 450: /* star_func_para ::= table_name NK_DOT NK_STAR */ case 514: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==514); { yylhsminor.yy448 = createColumnNode(pCxt, &yymsp[-2].minor.yy113, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 451: /* case_when_expression ::= CASE when_then_list case_when_else_opt END */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, NULL, yymsp[-2].minor.yy432, yymsp[-1].minor.yy448)); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 452: /* case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-4].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), yymsp[-2].minor.yy432, yymsp[-1].minor.yy448)); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 455: /* when_then_expr ::= WHEN common_expression THEN common_expression */ { yymsp[-3].minor.yy448 = createWhenThenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448)); } break; case 457: /* case_when_else_opt ::= ELSE common_expression */ { yymsp[-1].minor.yy448 = releaseRawExprNode(pCxt, yymsp[0].minor.yy448); } break; case 458: /* predicate ::= expr_or_subquery compare_op expr_or_subquery */ case 463: /* predicate ::= expr_or_subquery in_op in_predicate_value */ yytestcase(yyruleno==463); { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy156, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 459: /* predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy448), releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-4].minor.yy448 = yylhsminor.yy448; break; case 460: /* predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy448), releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-5].minor.yy448 = yylhsminor.yy448; break; case 461: /* predicate ::= expr_or_subquery IS NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), NULL)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 462: /* predicate ::= expr_or_subquery IS NOT NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), NULL)); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 464: /* compare_op ::= NK_LT */ { yymsp[0].minor.yy156 = OP_TYPE_LOWER_THAN; } break; case 465: /* compare_op ::= NK_GT */ { yymsp[0].minor.yy156 = OP_TYPE_GREATER_THAN; } break; case 466: /* compare_op ::= NK_LE */ { yymsp[0].minor.yy156 = OP_TYPE_LOWER_EQUAL; } break; case 467: /* compare_op ::= NK_GE */ { yymsp[0].minor.yy156 = OP_TYPE_GREATER_EQUAL; } break; case 468: /* compare_op ::= NK_NE */ { yymsp[0].minor.yy156 = OP_TYPE_NOT_EQUAL; } break; case 469: /* compare_op ::= NK_EQ */ { yymsp[0].minor.yy156 = OP_TYPE_EQUAL; } break; case 470: /* compare_op ::= LIKE */ { yymsp[0].minor.yy156 = OP_TYPE_LIKE; } break; case 471: /* compare_op ::= NOT LIKE */ { yymsp[-1].minor.yy156 = OP_TYPE_NOT_LIKE; } break; case 472: /* compare_op ::= MATCH */ { yymsp[0].minor.yy156 = OP_TYPE_MATCH; } break; case 473: /* compare_op ::= NMATCH */ { yymsp[0].minor.yy156 = OP_TYPE_NMATCH; } break; case 474: /* compare_op ::= CONTAINS */ { yymsp[0].minor.yy156 = OP_TYPE_JSON_CONTAINS; } break; case 475: /* in_op ::= IN */ { yymsp[0].minor.yy156 = OP_TYPE_IN; } break; case 476: /* in_op ::= NOT IN */ { yymsp[-1].minor.yy156 = OP_TYPE_NOT_IN; } break; case 477: /* in_predicate_value ::= NK_LP literal_list NK_RP */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy432)); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 479: /* boolean_value_expression ::= NOT boolean_primary */ { SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy448), NULL)); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 480: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 481: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy448); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy448); yylhsminor.yy448 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 489: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ { yylhsminor.yy448 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy448, yymsp[0].minor.yy448, NULL); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 492: /* table_primary ::= table_name alias_opt */ { yylhsminor.yy448 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy113, &yymsp[0].minor.yy113); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 493: /* table_primary ::= db_name NK_DOT table_name alias_opt */ { yylhsminor.yy448 = createRealTableNode(pCxt, &yymsp[-3].minor.yy113, &yymsp[-1].minor.yy113, &yymsp[0].minor.yy113); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 494: /* table_primary ::= subquery alias_opt */ { yylhsminor.yy448 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy448), &yymsp[0].minor.yy113); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 496: /* alias_opt ::= */ { yymsp[1].minor.yy113 = nil_token; } break; case 498: /* alias_opt ::= AS table_alias */ { yymsp[-1].minor.yy113 = yymsp[0].minor.yy113; } break; case 499: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ case 500: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==500); { yymsp[-2].minor.yy448 = yymsp[-1].minor.yy448; } break; case 501: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { yylhsminor.yy448 = createJoinTableNode(pCxt, yymsp[-4].minor.yy596, yymsp[-5].minor.yy448, yymsp[-2].minor.yy448, yymsp[0].minor.yy448); } yymsp[-5].minor.yy448 = yylhsminor.yy448; break; case 502: /* join_type ::= */ { yymsp[1].minor.yy596 = JOIN_TYPE_INNER; } break; case 503: /* join_type ::= INNER */ { yymsp[0].minor.yy596 = JOIN_TYPE_INNER; } break; case 504: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { yymsp[-11].minor.yy448 = createSelectStmt(pCxt, yymsp[-10].minor.yy369, yymsp[-9].minor.yy432, yymsp[-8].minor.yy448); yymsp[-11].minor.yy448 = addWhereClause(pCxt, yymsp[-11].minor.yy448, yymsp[-7].minor.yy448); yymsp[-11].minor.yy448 = addPartitionByClause(pCxt, yymsp[-11].minor.yy448, yymsp[-6].minor.yy432); yymsp[-11].minor.yy448 = addWindowClauseClause(pCxt, yymsp[-11].minor.yy448, yymsp[-2].minor.yy448); yymsp[-11].minor.yy448 = addGroupByClause(pCxt, yymsp[-11].minor.yy448, yymsp[-1].minor.yy432); yymsp[-11].minor.yy448 = addHavingClause(pCxt, yymsp[-11].minor.yy448, yymsp[0].minor.yy448); yymsp[-11].minor.yy448 = addRangeClause(pCxt, yymsp[-11].minor.yy448, yymsp[-5].minor.yy448); yymsp[-11].minor.yy448 = addEveryClause(pCxt, yymsp[-11].minor.yy448, yymsp[-4].minor.yy448); yymsp[-11].minor.yy448 = addFillClause(pCxt, yymsp[-11].minor.yy448, yymsp[-3].minor.yy448); } break; case 507: /* set_quantifier_opt ::= ALL */ { yymsp[0].minor.yy369 = false; } break; case 510: /* select_item ::= NK_STAR */ { yylhsminor.yy448 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy448 = yylhsminor.yy448; break; case 512: /* select_item ::= common_expression column_alias */ case 522: /* partition_item ::= expr_or_subquery column_alias */ yytestcase(yyruleno==522); { yylhsminor.yy448 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy448), &yymsp[0].minor.yy113); } yymsp[-1].minor.yy448 = yylhsminor.yy448; break; case 513: /* select_item ::= common_expression AS column_alias */ case 523: /* partition_item ::= expr_or_subquery AS column_alias */ yytestcase(yyruleno==523); { yylhsminor.yy448 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), &yymsp[0].minor.yy113); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 518: /* partition_by_clause_opt ::= PARTITION BY partition_list */ case 543: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==543); case 562: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==562); { yymsp[-2].minor.yy432 = yymsp[0].minor.yy432; } break; case 525: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { yymsp[-5].minor.yy448 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), releaseRawExprNode(pCxt, yymsp[-1].minor.yy448)); } break; case 526: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ { yymsp[-3].minor.yy448 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy448)); } break; case 527: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-5].minor.yy448 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), NULL, yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 528: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-7].minor.yy448 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy448), releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), yymsp[-1].minor.yy448, yymsp[0].minor.yy448); } break; case 529: /* twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ { yymsp[-6].minor.yy448 = createEventWindowNode(pCxt, yymsp[-3].minor.yy448, yymsp[0].minor.yy448); } break; case 533: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ { yymsp[-3].minor.yy448 = createFillNode(pCxt, yymsp[-1].minor.yy46, NULL); } break; case 534: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA expression_list NK_RP */ { yymsp[-5].minor.yy448 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy432)); } break; case 535: /* fill_opt ::= FILL NK_LP VALUE_F NK_COMMA expression_list NK_RP */ { yymsp[-5].minor.yy448 = createFillNode(pCxt, FILL_MODE_VALUE_F, createNodeListNode(pCxt, yymsp[-1].minor.yy432)); } break; case 536: /* fill_mode ::= NONE */ { yymsp[0].minor.yy46 = FILL_MODE_NONE; } break; case 537: /* fill_mode ::= PREV */ { yymsp[0].minor.yy46 = FILL_MODE_PREV; } break; case 538: /* fill_mode ::= NULL */ { yymsp[0].minor.yy46 = FILL_MODE_NULL; } break; case 539: /* fill_mode ::= NULL_F */ { yymsp[0].minor.yy46 = FILL_MODE_NULL_F; } break; case 540: /* fill_mode ::= LINEAR */ { yymsp[0].minor.yy46 = FILL_MODE_LINEAR; } break; case 541: /* fill_mode ::= NEXT */ { yymsp[0].minor.yy46 = FILL_MODE_NEXT; } break; case 544: /* group_by_list ::= expr_or_subquery */ { yylhsminor.yy432 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[0].minor.yy432 = yylhsminor.yy432; break; case 545: /* group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ { yylhsminor.yy432 = addNodeToList(pCxt, yymsp[-2].minor.yy432, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy448))); } yymsp[-2].minor.yy432 = yylhsminor.yy432; break; case 549: /* range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ { yymsp[-5].minor.yy448 = createInterpTimeRange(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy448), releaseRawExprNode(pCxt, yymsp[-1].minor.yy448)); } break; case 552: /* query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ { yylhsminor.yy448 = addOrderByClause(pCxt, yymsp[-3].minor.yy448, yymsp[-2].minor.yy432); yylhsminor.yy448 = addSlimitClause(pCxt, yylhsminor.yy448, yymsp[-1].minor.yy448); yylhsminor.yy448 = addLimitClause(pCxt, yylhsminor.yy448, yymsp[0].minor.yy448); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 555: /* union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ { yylhsminor.yy448 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy448, yymsp[0].minor.yy448); } yymsp[-3].minor.yy448 = yylhsminor.yy448; break; case 556: /* union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ { yylhsminor.yy448 = createSetOperator(pCxt, SET_OP_TYPE_UNION, yymsp[-2].minor.yy448, yymsp[0].minor.yy448); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 564: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ case 568: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==568); { yymsp[-1].minor.yy448 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 565: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ case 569: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==569); { yymsp[-3].minor.yy448 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; case 566: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ case 570: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==570); { yymsp[-3].minor.yy448 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } break; case 571: /* subquery ::= NK_LP query_expression NK_RP */ { yylhsminor.yy448 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy448); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 576: /* sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ { yylhsminor.yy448 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy448), yymsp[-1].minor.yy666, yymsp[0].minor.yy585); } yymsp[-2].minor.yy448 = yylhsminor.yy448; break; case 577: /* ordering_specification_opt ::= */ { yymsp[1].minor.yy666 = ORDER_ASC; } break; case 578: /* ordering_specification_opt ::= ASC */ { yymsp[0].minor.yy666 = ORDER_ASC; } break; case 579: /* ordering_specification_opt ::= DESC */ { yymsp[0].minor.yy666 = ORDER_DESC; } break; case 580: /* null_ordering_opt ::= */ { yymsp[1].minor.yy585 = NULL_ORDER_DEFAULT; } break; case 581: /* null_ordering_opt ::= NULLS FIRST */ { yymsp[-1].minor.yy585 = NULL_ORDER_FIRST; } break; case 582: /* null_ordering_opt ::= NULLS LAST */ { yymsp[-1].minor.yy585 = NULL_ORDER_LAST; } break; default: break; /********** End reduce actions ************************************************/ }; assert( yyrulenoYY_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 */ ){ ParseARG_FETCH ParseCTX_FETCH #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 *****************************************/ ParseARG_STORE /* Suppress warning about unused %extra_argument variable */ ParseCTX_STORE } #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 */ ParseTOKENTYPE yyminor /* The minor type of the error token */ ){ ParseARG_FETCH ParseCTX_FETCH #define TOKEN yyminor /************ Begin %syntax_error code ****************************************/ if (TSDB_CODE_SUCCESS == pCxt->errCode) { if(TOKEN.z) { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_SYNTAX_ERROR, TOKEN.z); } else { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INCOMPLETE_SQL); } } else if (TSDB_CODE_PAR_DB_NOT_SPECIFIED == pCxt->errCode && TK_NK_FLOAT == TOKEN.type) { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_SYNTAX_ERROR, TOKEN.z); } /************ End %syntax_error code ******************************************/ ParseARG_STORE /* Suppress warning about unused %extra_argument variable */ ParseCTX_STORE } /* ** The following is executed when the parser accepts */ static void yy_accept( yyParser *yypParser /* The parser */ ){ ParseARG_FETCH ParseCTX_FETCH #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 *******************************************/ ParseARG_STORE /* Suppress warning about unused %extra_argument variable */ ParseCTX_STORE } /* The main parser program. ** The first argument is a pointer to a structure obtained from ** "ParseAlloc" which describes the current state of the parser. ** 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: **
    **
  • A pointer to the parser (an opaque structure.) **
  • The major token number. **
  • The minor token number. **
  • An option argument of a grammar-specified type. **
** ** Outputs: ** None. */ void Parse( void *yyp, /* The parser */ int yymajor, /* The major token code number */ ParseTOKENTYPE yyminor /* The value for the token */ ParseARG_PDECL /* Optional %extra_argument parameter */ ){ 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 */ ParseCTX_FETCH ParseARG_STORE 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, yyminor ParseCTX_PARAM); }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. */ int ParseFallback(int iToken){ #ifdef YYFALLBACK if( iToken<(int)(sizeof(yyFallback)/sizeof(yyFallback[0])) ){ return yyFallback[iToken]; } #else (void)iToken; #endif return 0; }