/* ** 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 469 #define YYACTIONTYPE unsigned short int #define ParseTOKENTYPE SToken typedef union { int yyinit; ParseTOKENTYPE yy0; EOperatorType yy2; SNode* yy42; bool yy103; EOrder yy106; SNodeList* yy110; SToken yy225; EFillMode yy410; SDataType yy448; SAlterOption yy459; int32_t yy508; ENullOrder yy599; EJoinType yy638; int64_t yy641; int8_t yy705; } 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 743 #define YYNRULE 563 #define YYNTOKEN 328 #define YY_MAX_SHIFT 742 #define YY_MIN_SHIFTREDUCE 1102 #define YY_MAX_SHIFTREDUCE 1664 #define YY_ERROR_ACTION 1665 #define YY_ACCEPT_ACTION 1666 #define YY_NO_ACTION 1667 #define YY_MIN_REDUCE 1668 #define YY_MAX_REDUCE 2230 /************* 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 (2749) static const YYACTIONTYPE yy_action[] = { /* 0 */ 1941, 2206, 1798, 607, 482, 2201, 483, 1704, 491, 1811, /* 10 */ 483, 1704, 45, 43, 1592, 1939, 619, 31, 176, 178, /* 20 */ 380, 2205, 1441, 38, 37, 2202, 2204, 44, 42, 41, /* 30 */ 40, 39, 1862, 1522, 139, 1439, 1466, 2042, 1875, 347, /* 40 */ 1924, 2028, 38, 37, 613, 358, 44, 42, 41, 40, /* 50 */ 39, 425, 2024, 2206, 1873, 38, 37, 2201, 1517, 44, /* 60 */ 42, 41, 40, 39, 18, 686, 385, 1469, 2060, 1868, /* 70 */ 1870, 1447, 1666, 2205, 167, 607, 646, 2202, 2203, 1776, /* 80 */ 1154, 2010, 1153, 648, 45, 43, 2020, 2026, 361, 570, /* 90 */ 1135, 330, 380, 2201, 1441, 220, 14, 642, 340, 181, /* 100 */ 2138, 2139, 550, 137, 2143, 1522, 139, 1439, 2207, 182, /* 110 */ 602, 1155, 2041, 2202, 596, 548, 2077, 546, 739, 324, /* 120 */ 2043, 652, 2045, 2046, 647, 645, 642, 633, 2095, 1137, /* 130 */ 1517, 1140, 1141, 1524, 1525, 631, 18, 481, 393, 1551, /* 140 */ 486, 1710, 392, 1447, 1691, 1262, 674, 673, 672, 1266, /* 150 */ 671, 1268, 1269, 670, 1271, 667, 176, 1277, 664, 1279, /* 160 */ 1280, 661, 658, 1497, 1507, 1941, 607, 617, 14, 1523, /* 170 */ 1526, 267, 2138, 606, 383, 133, 605, 371, 1925, 2201, /* 180 */ 1938, 619, 161, 570, 1442, 618, 1440, 2201, 2010, 359, /* 190 */ 739, 1824, 631, 270, 594, 182, 1552, 139, 1873, 2202, /* 200 */ 596, 500, 2207, 182, 631, 1524, 1525, 2202, 596, 590, /* 210 */ 1445, 1446, 247, 1496, 1499, 1500, 1501, 1502, 1503, 1504, /* 220 */ 1505, 1506, 644, 640, 1515, 1516, 1518, 1519, 1520, 1521, /* 230 */ 2, 61, 498, 92, 1934, 1497, 1507, 585, 106, 686, /* 240 */ 122, 1523, 1526, 121, 120, 119, 118, 117, 116, 115, /* 250 */ 114, 113, 140, 1596, 352, 166, 1442, 1680, 1440, 1466, /* 260 */ 1814, 609, 180, 2138, 2139, 1465, 137, 2143, 48, 34, /* 270 */ 378, 1546, 1547, 1548, 1549, 1550, 1554, 1555, 1556, 1557, /* 280 */ 48, 61, 1445, 1446, 1222, 1496, 1499, 1500, 1501, 1502, /* 290 */ 1503, 1504, 1505, 1506, 644, 640, 1515, 1516, 1518, 1519, /* 300 */ 1520, 1521, 2, 2028, 11, 45, 43, 44, 42, 41, /* 310 */ 40, 39, 1466, 380, 2024, 1441, 353, 742, 351, 350, /* 320 */ 1224, 523, 591, 586, 579, 525, 1522, 1466, 1439, 490, /* 330 */ 2042, 295, 486, 1710, 607, 35, 288, 38, 37, 603, /* 340 */ 412, 44, 42, 41, 40, 39, 175, 524, 2020, 2026, /* 350 */ 362, 1517, 732, 728, 724, 720, 293, 18, 86, 642, /* 360 */ 488, 2060, 414, 410, 1447, 139, 484, 559, 417, 649, /* 370 */ 416, 2145, 349, 1154, 2010, 1153, 648, 45, 43, 1527, /* 380 */ 1467, 1817, 2206, 185, 11, 380, 9, 1441, 61, 14, /* 390 */ 279, 280, 65, 107, 415, 278, 286, 2142, 1522, 1468, /* 400 */ 1439, 634, 1498, 2102, 1155, 2041, 1737, 632, 1690, 2077, /* 410 */ 632, 739, 168, 2043, 652, 2045, 2046, 647, 1669, 642, /* 420 */ 185, 132, 678, 1517, 187, 1866, 1524, 1525, 521, 628, /* 430 */ 183, 2138, 2139, 185, 137, 2143, 1447, 632, 1822, 122, /* 440 */ 11, 1822, 121, 120, 119, 118, 117, 116, 115, 114, /* 450 */ 113, 132, 2010, 571, 2167, 194, 1497, 1507, 526, 1875, /* 460 */ 100, 46, 1523, 1526, 273, 636, 368, 2102, 1822, 272, /* 470 */ 1360, 1361, 536, 535, 534, 1873, 1654, 1442, 2031, 1440, /* 480 */ 136, 530, 1815, 739, 61, 529, 1404, 463, 241, 1905, /* 490 */ 528, 533, 83, 1305, 1306, 82, 527, 237, 1524, 1525, /* 500 */ 1869, 1870, 1467, 1445, 1446, 1661, 1496, 1499, 1500, 1501, /* 510 */ 1502, 1503, 1504, 1505, 1506, 644, 640, 1515, 1516, 1518, /* 520 */ 1519, 1520, 1521, 2, 536, 535, 534, 2033, 1497, 1507, /* 530 */ 1668, 1875, 136, 530, 1523, 1526, 632, 529, 345, 632, /* 540 */ 185, 1447, 528, 533, 269, 198, 197, 1873, 527, 1442, /* 550 */ 54, 1440, 618, 423, 131, 130, 129, 128, 127, 126, /* 560 */ 125, 124, 123, 1415, 1416, 419, 677, 1822, 462, 418, /* 570 */ 1822, 41, 40, 39, 2042, 1445, 1446, 618, 1496, 1499, /* 580 */ 1500, 1501, 1502, 1503, 1504, 1505, 1506, 644, 640, 1515, /* 590 */ 1516, 1518, 1519, 1520, 1521, 2, 45, 43, 1468, 616, /* 600 */ 1920, 1934, 86, 1660, 380, 2060, 1441, 632, 595, 632, /* 610 */ 570, 190, 2201, 649, 2201, 1377, 1378, 1522, 2010, 1439, /* 620 */ 648, 424, 221, 433, 627, 1818, 1934, 594, 182, 2207, /* 630 */ 182, 61, 2202, 596, 2202, 596, 185, 171, 1822, 1689, /* 640 */ 1822, 443, 1517, 517, 513, 509, 505, 218, 632, 2041, /* 650 */ 442, 1376, 1379, 2077, 1620, 1447, 110, 2043, 652, 2045, /* 660 */ 2046, 647, 448, 642, 49, 372, 1532, 1688, 45, 43, /* 670 */ 2130, 2205, 1466, 164, 2129, 2126, 380, 698, 1441, 1822, /* 680 */ 46, 541, 1824, 2010, 87, 1687, 2145, 216, 1807, 1522, /* 690 */ 1686, 1439, 141, 38, 37, 2101, 551, 44, 42, 41, /* 700 */ 40, 39, 739, 582, 581, 1618, 1619, 1621, 1622, 1623, /* 710 */ 234, 2010, 2141, 1685, 1517, 38, 37, 1524, 1525, 44, /* 720 */ 42, 41, 40, 39, 236, 544, 33, 1447, 235, 2010, /* 730 */ 538, 1799, 38, 37, 2010, 233, 44, 42, 41, 40, /* 740 */ 39, 1684, 595, 269, 1553, 2145, 2201, 1497, 1507, 1875, /* 750 */ 632, 27, 14, 1523, 1526, 215, 209, 2010, 13, 12, /* 760 */ 214, 594, 182, 496, 449, 1874, 2202, 596, 1442, 383, /* 770 */ 1440, 2140, 69, 1589, 739, 68, 2060, 164, 1683, 207, /* 780 */ 1809, 1822, 1631, 185, 589, 2010, 1824, 89, 335, 1524, /* 790 */ 1525, 357, 1978, 552, 1445, 1446, 1469, 1496, 1499, 1500, /* 800 */ 1501, 1502, 1503, 1504, 1505, 1506, 644, 640, 1515, 1516, /* 810 */ 1518, 1519, 1520, 1521, 2, 1498, 185, 32, 1805, 1497, /* 820 */ 1507, 333, 2010, 1464, 684, 1523, 1526, 1558, 164, 588, /* 830 */ 456, 710, 708, 470, 1875, 152, 469, 1825, 238, 684, /* 840 */ 1442, 373, 1440, 154, 153, 681, 680, 679, 151, 1682, /* 850 */ 1873, 439, 1679, 471, 1565, 676, 441, 1920, 154, 153, /* 860 */ 681, 680, 679, 151, 532, 531, 1445, 1446, 192, 1496, /* 870 */ 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 644, 640, /* 880 */ 1515, 1516, 1518, 1519, 1520, 1521, 2, 699, 53, 1792, /* 890 */ 632, 682, 165, 2010, 1866, 1678, 2010, 308, 348, 1734, /* 900 */ 632, 38, 37, 1797, 499, 44, 42, 41, 40, 39, /* 910 */ 429, 306, 72, 242, 1819, 71, 1677, 1920, 643, 38, /* 920 */ 37, 1822, 1875, 44, 42, 41, 40, 39, 196, 384, /* 930 */ 51, 1822, 3, 203, 478, 476, 473, 598, 1873, 2010, /* 940 */ 467, 191, 525, 461, 460, 459, 458, 455, 454, 453, /* 950 */ 452, 451, 447, 446, 445, 444, 332, 436, 435, 434, /* 960 */ 2010, 431, 430, 346, 524, 716, 715, 714, 713, 390, /* 970 */ 61, 712, 711, 143, 706, 705, 704, 703, 702, 701, /* 980 */ 700, 156, 696, 695, 694, 389, 388, 691, 690, 689, /* 990 */ 688, 687, 632, 632, 1676, 38, 37, 565, 2003, 44, /* 1000 */ 42, 41, 40, 39, 1441, 632, 239, 566, 1608, 108, /* 1010 */ 2042, 684, 1996, 632, 632, 632, 1469, 1439, 1588, 629, /* 1020 */ 8, 1675, 1674, 1822, 1822, 1673, 1672, 630, 611, 615, /* 1030 */ 154, 153, 681, 680, 679, 151, 1822, 683, 2010, 1466, /* 1040 */ 1866, 2060, 1671, 570, 1822, 1822, 1822, 2201, 152, 610, /* 1050 */ 80, 79, 422, 1447, 2010, 189, 648, 632, 163, 2042, /* 1060 */ 400, 302, 2207, 182, 1852, 2010, 2010, 2202, 596, 2010, /* 1070 */ 2010, 283, 599, 2028, 331, 1140, 1141, 408, 1450, 406, /* 1080 */ 402, 398, 395, 415, 2024, 2041, 2010, 1681, 1822, 2077, /* 1090 */ 2060, 1813, 109, 2043, 652, 2045, 2046, 647, 649, 642, /* 1100 */ 739, 1410, 2024, 2010, 179, 648, 2130, 1777, 386, 632, /* 1110 */ 374, 2126, 2150, 1585, 426, 639, 164, 2029, 2020, 2026, /* 1120 */ 375, 632, 185, 387, 184, 1824, 2042, 427, 2024, 642, /* 1130 */ 2004, 145, 2156, 134, 2041, 289, 2020, 2026, 2077, 1800, /* 1140 */ 1822, 109, 2043, 652, 2045, 2046, 647, 642, 642, 52, /* 1150 */ 152, 142, 1822, 149, 2101, 2130, 569, 2060, 2042, 374, /* 1160 */ 2126, 246, 2020, 2026, 73, 610, 1442, 1711, 1440, 1724, /* 1170 */ 2010, 226, 648, 642, 224, 570, 1717, 228, 230, 2201, /* 1180 */ 227, 229, 1498, 147, 232, 245, 554, 231, 553, 2060, /* 1190 */ 2170, 537, 1445, 1446, 2207, 182, 1715, 649, 539, 2202, /* 1200 */ 596, 2041, 2010, 1413, 648, 2077, 1449, 2042, 109, 2043, /* 1210 */ 652, 2045, 2046, 647, 81, 642, 734, 63, 542, 63, /* 1220 */ 179, 251, 2130, 1663, 1664, 90, 374, 2126, 1585, 1453, /* 1230 */ 152, 47, 276, 2041, 70, 13, 12, 2077, 2060, 105, /* 1240 */ 109, 2043, 652, 2045, 2046, 647, 649, 642, 2157, 102, /* 1250 */ 264, 2010, 2221, 648, 2130, 583, 150, 557, 374, 2126, /* 1260 */ 152, 1543, 63, 47, 47, 219, 2042, 258, 2061, 2164, /* 1270 */ 1617, 656, 1616, 692, 253, 150, 152, 135, 1184, 150, /* 1280 */ 391, 1929, 2041, 614, 1374, 281, 2077, 624, 1705, 109, /* 1290 */ 2043, 652, 2045, 2046, 647, 1203, 642, 2060, 693, 600, /* 1300 */ 2042, 2221, 570, 2130, 1863, 649, 2201, 374, 2126, 285, /* 1310 */ 2010, 2160, 648, 1255, 1185, 1559, 1508, 301, 2177, 608, /* 1320 */ 1201, 2207, 182, 263, 1283, 266, 2202, 596, 1287, 1294, /* 1330 */ 1292, 2060, 155, 1, 399, 4, 394, 296, 344, 649, /* 1340 */ 1397, 2041, 195, 428, 2010, 2077, 648, 1469, 109, 2043, /* 1350 */ 652, 2045, 2046, 647, 432, 642, 1930, 1452, 437, 465, /* 1360 */ 2221, 1464, 2130, 450, 1922, 457, 374, 2126, 464, 466, /* 1370 */ 472, 474, 200, 2042, 475, 2041, 477, 577, 479, 2077, /* 1380 */ 1470, 480, 109, 2043, 652, 2045, 2046, 647, 489, 642, /* 1390 */ 1472, 206, 377, 376, 2221, 492, 2130, 1467, 493, 208, /* 1400 */ 374, 2126, 1455, 1471, 2060, 494, 1473, 211, 495, 497, /* 1410 */ 1157, 2195, 649, 1522, 518, 1448, 519, 2010, 213, 648, /* 1420 */ 84, 85, 2042, 522, 217, 501, 520, 1987, 1812, 223, /* 1430 */ 1808, 334, 225, 112, 1984, 1983, 556, 558, 1517, 88, /* 1440 */ 240, 148, 157, 158, 1810, 1806, 297, 560, 2041, 159, /* 1450 */ 160, 1447, 2077, 2060, 243, 109, 2043, 652, 2045, 2046, /* 1460 */ 647, 649, 642, 561, 567, 584, 2010, 2221, 648, 2130, /* 1470 */ 622, 2176, 564, 374, 2126, 2175, 574, 580, 593, 363, /* 1480 */ 587, 2161, 575, 7, 2149, 2171, 2042, 2152, 573, 249, /* 1490 */ 172, 257, 259, 252, 260, 572, 261, 2041, 638, 364, /* 1500 */ 604, 2077, 2224, 1585, 109, 2043, 652, 2045, 2046, 647, /* 1510 */ 601, 642, 138, 1468, 265, 262, 2105, 2060, 2130, 612, /* 1520 */ 2200, 2146, 374, 2126, 367, 649, 271, 1474, 95, 1935, /* 1530 */ 2010, 620, 648, 625, 298, 621, 1949, 1948, 1947, 299, /* 1540 */ 370, 626, 97, 99, 1823, 60, 2111, 300, 101, 303, /* 1550 */ 1793, 292, 735, 1867, 2042, 327, 736, 654, 738, 336, /* 1560 */ 312, 2041, 326, 50, 1456, 2077, 1451, 316, 109, 2043, /* 1570 */ 652, 2045, 2046, 647, 305, 642, 307, 2002, 2001, 2000, /* 1580 */ 2103, 77, 2130, 337, 2042, 2060, 374, 2126, 1997, 396, /* 1590 */ 1459, 1461, 397, 649, 1432, 1433, 188, 401, 2010, 1995, /* 1600 */ 648, 405, 403, 640, 1515, 1516, 1518, 1519, 1520, 1521, /* 1610 */ 404, 1994, 407, 1993, 2042, 2060, 409, 1992, 411, 1991, /* 1620 */ 413, 78, 1400, 649, 1399, 1961, 1960, 1959, 2010, 2041, /* 1630 */ 648, 420, 421, 2077, 1958, 1957, 109, 2043, 652, 2045, /* 1640 */ 2046, 647, 1351, 642, 2042, 2060, 1913, 1912, 635, 1910, /* 1650 */ 2130, 144, 1909, 649, 374, 2126, 1908, 1911, 2010, 2041, /* 1660 */ 648, 1907, 1906, 2077, 193, 438, 110, 2043, 652, 2045, /* 1670 */ 2046, 647, 1904, 642, 1903, 2060, 1902, 1901, 2042, 440, /* 1680 */ 2130, 1915, 1900, 649, 637, 2126, 1899, 1898, 2010, 650, /* 1690 */ 648, 1897, 1896, 2077, 1895, 1894, 110, 2043, 652, 2045, /* 1700 */ 2046, 647, 1893, 642, 1892, 2042, 1891, 1890, 1889, 2060, /* 1710 */ 2130, 1888, 1887, 1886, 339, 2126, 1885, 649, 1884, 2041, /* 1720 */ 146, 1883, 2010, 2077, 648, 1914, 169, 2043, 652, 2045, /* 1730 */ 2046, 647, 1882, 642, 1881, 1880, 2060, 1353, 1879, 1878, /* 1740 */ 468, 1877, 1876, 1740, 649, 1230, 199, 1739, 201, 2010, /* 1750 */ 1738, 648, 2030, 2041, 2042, 202, 1736, 2077, 1700, 204, /* 1760 */ 168, 2043, 652, 2045, 2046, 647, 75, 642, 177, 1143, /* 1770 */ 485, 1142, 1699, 487, 1974, 1968, 205, 1956, 597, 2222, /* 1780 */ 2041, 212, 1955, 76, 2077, 2060, 1933, 110, 2043, 652, /* 1790 */ 2045, 2046, 647, 649, 642, 1801, 1177, 1735, 2010, 210, /* 1800 */ 648, 2130, 2168, 1733, 502, 504, 2127, 503, 1731, 507, /* 1810 */ 508, 506, 1729, 510, 1727, 511, 2042, 1714, 514, 512, /* 1820 */ 516, 515, 1713, 1696, 1803, 62, 1299, 1298, 1802, 2041, /* 1830 */ 1725, 222, 707, 2077, 1221, 1220, 318, 2043, 652, 2045, /* 1840 */ 2046, 647, 1219, 642, 1218, 1215, 709, 2060, 2042, 1213, /* 1850 */ 1214, 1212, 1718, 354, 355, 649, 540, 1716, 356, 1695, /* 1860 */ 2010, 543, 648, 1694, 545, 1693, 549, 111, 547, 1420, /* 1870 */ 1422, 1973, 1419, 1406, 55, 1967, 562, 1954, 1952, 2060, /* 1880 */ 592, 1424, 2206, 26, 369, 66, 162, 649, 16, 244, /* 1890 */ 19, 2041, 2010, 1633, 648, 2077, 576, 2042, 169, 2043, /* 1900 */ 652, 2045, 2046, 647, 578, 642, 568, 28, 58, 248, /* 1910 */ 563, 360, 5, 59, 2042, 250, 1615, 170, 255, 256, /* 1920 */ 6, 254, 20, 2041, 30, 64, 1648, 2077, 2060, 2031, /* 1930 */ 325, 2043, 652, 2045, 2046, 647, 646, 642, 29, 21, /* 1940 */ 1607, 2010, 1653, 648, 91, 2060, 2042, 1654, 17, 1647, /* 1950 */ 379, 2223, 365, 649, 1652, 1651, 366, 1582, 2010, 1581, /* 1960 */ 648, 1953, 57, 268, 1951, 56, 1950, 1932, 94, 93, /* 1970 */ 173, 2042, 2041, 274, 1931, 96, 2077, 2060, 287, 324, /* 1980 */ 2043, 652, 2045, 2046, 647, 649, 642, 275, 2096, 2041, /* 1990 */ 2010, 1613, 648, 2077, 102, 2042, 325, 2043, 652, 2045, /* 2000 */ 2046, 647, 2060, 642, 22, 277, 282, 381, 623, 67, /* 2010 */ 649, 12, 23, 1457, 1544, 2010, 1534, 648, 174, 284, /* 2020 */ 2042, 555, 1512, 98, 1533, 2077, 2060, 10, 320, 2043, /* 2030 */ 652, 2045, 2046, 647, 649, 642, 2080, 641, 36, 2010, /* 2040 */ 1510, 648, 1509, 1481, 15, 24, 2041, 186, 1489, 25, /* 2050 */ 2077, 2060, 655, 325, 2043, 652, 2045, 2046, 647, 649, /* 2060 */ 642, 651, 653, 382, 2010, 657, 648, 1284, 659, 660, /* 2070 */ 2041, 662, 1281, 1278, 2077, 663, 665, 309, 2043, 652, /* 2080 */ 2045, 2046, 647, 2042, 642, 1272, 666, 668, 1261, 1270, /* 2090 */ 669, 675, 290, 103, 104, 2041, 1293, 1276, 1275, 2077, /* 2100 */ 1274, 1273, 310, 2043, 652, 2045, 2046, 647, 74, 642, /* 2110 */ 2042, 1289, 1175, 685, 2060, 1209, 1208, 1207, 1206, 291, /* 2120 */ 1205, 1204, 649, 1202, 1228, 1200, 1199, 2010, 1198, 648, /* 2130 */ 697, 1196, 2042, 1195, 1194, 1193, 1192, 1191, 1190, 1225, /* 2140 */ 1223, 2060, 1187, 1186, 1183, 1182, 1181, 1180, 1732, 649, /* 2150 */ 717, 1730, 718, 719, 2010, 721, 648, 723, 2041, 1728, /* 2160 */ 725, 727, 2077, 2060, 722, 311, 2043, 652, 2045, 2046, /* 2170 */ 647, 649, 642, 1726, 726, 729, 2010, 730, 648, 1712, /* 2180 */ 731, 733, 1132, 1692, 294, 2041, 737, 741, 1443, 2077, /* 2190 */ 304, 740, 317, 2043, 652, 2045, 2046, 647, 1667, 642, /* 2200 */ 1667, 1667, 1667, 1667, 1667, 1667, 1667, 2041, 1667, 1667, /* 2210 */ 1667, 2077, 2042, 1667, 321, 2043, 652, 2045, 2046, 647, /* 2220 */ 1667, 642, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 2042, /* 2230 */ 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, /* 2240 */ 1667, 1667, 1667, 2060, 1667, 1667, 2042, 1667, 1667, 1667, /* 2250 */ 1667, 649, 1667, 1667, 1667, 1667, 2010, 1667, 648, 1667, /* 2260 */ 2060, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 649, 1667, /* 2270 */ 1667, 1667, 1667, 2010, 1667, 648, 1667, 2060, 2042, 1667, /* 2280 */ 1667, 1667, 1667, 1667, 1667, 649, 1667, 2041, 1667, 1667, /* 2290 */ 2010, 2077, 648, 1667, 313, 2043, 652, 2045, 2046, 647, /* 2300 */ 1667, 642, 1667, 2042, 2041, 1667, 1667, 1667, 2077, 2060, /* 2310 */ 1667, 322, 2043, 652, 2045, 2046, 647, 649, 642, 1667, /* 2320 */ 1667, 2041, 2010, 1667, 648, 2077, 1667, 2042, 314, 2043, /* 2330 */ 652, 2045, 2046, 647, 2060, 642, 1667, 1667, 1667, 1667, /* 2340 */ 1667, 1667, 649, 1667, 1667, 1667, 1667, 2010, 1667, 648, /* 2350 */ 1667, 1667, 2042, 2041, 1667, 1667, 1667, 2077, 2060, 1667, /* 2360 */ 323, 2043, 652, 2045, 2046, 647, 649, 642, 1667, 1667, /* 2370 */ 1667, 2010, 1667, 648, 1667, 1667, 1667, 1667, 2041, 1667, /* 2380 */ 1667, 1667, 2077, 2060, 1667, 315, 2043, 652, 2045, 2046, /* 2390 */ 647, 649, 642, 1667, 1667, 1667, 2010, 1667, 648, 1667, /* 2400 */ 1667, 1667, 2041, 1667, 1667, 1667, 2077, 1667, 1667, 328, /* 2410 */ 2043, 652, 2045, 2046, 647, 2042, 642, 1667, 1667, 1667, /* 2420 */ 1667, 1667, 1667, 1667, 1667, 1667, 1667, 2041, 1667, 1667, /* 2430 */ 1667, 2077, 1667, 1667, 329, 2043, 652, 2045, 2046, 647, /* 2440 */ 1667, 642, 2042, 1667, 1667, 1667, 2060, 1667, 1667, 1667, /* 2450 */ 1667, 1667, 1667, 1667, 649, 1667, 1667, 1667, 1667, 2010, /* 2460 */ 1667, 648, 1667, 1667, 2042, 1667, 1667, 1667, 1667, 1667, /* 2470 */ 1667, 1667, 1667, 2060, 1667, 1667, 1667, 1667, 1667, 1667, /* 2480 */ 1667, 649, 1667, 1667, 1667, 1667, 2010, 1667, 648, 1667, /* 2490 */ 2041, 1667, 1667, 1667, 2077, 2060, 1667, 2054, 2043, 652, /* 2500 */ 2045, 2046, 647, 649, 642, 1667, 1667, 1667, 2010, 1667, /* 2510 */ 648, 1667, 1667, 1667, 1667, 1667, 1667, 2041, 1667, 1667, /* 2520 */ 1667, 2077, 1667, 1667, 2053, 2043, 652, 2045, 2046, 647, /* 2530 */ 1667, 642, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 2041, /* 2540 */ 1667, 1667, 1667, 2077, 2042, 1667, 2052, 2043, 652, 2045, /* 2550 */ 2046, 647, 1667, 642, 1667, 1667, 1667, 1667, 1667, 1667, /* 2560 */ 1667, 2042, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, /* 2570 */ 1667, 1667, 1667, 1667, 1667, 2060, 1667, 1667, 2042, 1667, /* 2580 */ 1667, 1667, 1667, 649, 1667, 1667, 1667, 1667, 2010, 1667, /* 2590 */ 648, 1667, 2060, 1667, 1667, 1667, 1667, 1667, 1667, 1667, /* 2600 */ 649, 1667, 1667, 1667, 1667, 2010, 1667, 648, 1667, 2060, /* 2610 */ 2042, 1667, 1667, 1667, 1667, 1667, 1667, 649, 1667, 2041, /* 2620 */ 1667, 1667, 2010, 2077, 648, 1667, 341, 2043, 652, 2045, /* 2630 */ 2046, 647, 1667, 642, 1667, 2042, 2041, 1667, 1667, 1667, /* 2640 */ 2077, 2060, 1667, 342, 2043, 652, 2045, 2046, 647, 649, /* 2650 */ 642, 1667, 1667, 2041, 2010, 1667, 648, 2077, 1667, 2042, /* 2660 */ 338, 2043, 652, 2045, 2046, 647, 2060, 642, 1667, 1667, /* 2670 */ 1667, 1667, 1667, 1667, 649, 1667, 1667, 1667, 1667, 2010, /* 2680 */ 1667, 648, 1667, 1667, 1667, 2041, 1667, 1667, 1667, 2077, /* 2690 */ 2060, 1667, 343, 2043, 652, 2045, 2046, 647, 649, 642, /* 2700 */ 1667, 1667, 1667, 2010, 1667, 648, 1667, 1667, 1667, 1667, /* 2710 */ 650, 1667, 1667, 1667, 2077, 1667, 1667, 320, 2043, 652, /* 2720 */ 2045, 2046, 647, 1667, 642, 1667, 1667, 1667, 1667, 1667, /* 2730 */ 1667, 1667, 1667, 1667, 2041, 1667, 1667, 1667, 2077, 1667, /* 2740 */ 1667, 319, 2043, 652, 2045, 2046, 647, 1667, 642, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 377, 439, 0, 339, 335, 443, 337, 338, 335, 363, /* 10 */ 337, 338, 12, 13, 14, 392, 393, 2, 362, 361, /* 20 */ 20, 459, 22, 8, 9, 463, 464, 12, 13, 14, /* 30 */ 15, 16, 374, 33, 370, 35, 20, 331, 362, 383, /* 40 */ 384, 364, 8, 9, 394, 369, 12, 13, 14, 15, /* 50 */ 16, 339, 375, 439, 378, 8, 9, 443, 58, 12, /* 60 */ 13, 14, 15, 16, 64, 63, 373, 20, 362, 376, /* 70 */ 377, 71, 328, 459, 346, 339, 370, 463, 464, 351, /* 80 */ 20, 375, 22, 377, 12, 13, 409, 410, 411, 439, /* 90 */ 4, 379, 20, 443, 22, 35, 96, 420, 64, 435, /* 100 */ 436, 437, 21, 439, 440, 33, 370, 35, 458, 459, /* 110 */ 44, 51, 406, 463, 464, 34, 410, 36, 118, 413, /* 120 */ 414, 415, 416, 417, 418, 419, 420, 421, 422, 43, /* 130 */ 58, 45, 46, 133, 134, 20, 64, 336, 394, 105, /* 140 */ 339, 340, 398, 71, 331, 109, 110, 111, 112, 113, /* 150 */ 114, 115, 116, 117, 118, 119, 362, 121, 122, 123, /* 160 */ 124, 125, 126, 163, 164, 377, 339, 20, 96, 169, /* 170 */ 170, 435, 436, 437, 354, 439, 440, 389, 384, 443, /* 180 */ 392, 393, 362, 439, 184, 339, 186, 443, 375, 369, /* 190 */ 118, 371, 20, 58, 458, 459, 162, 370, 378, 463, /* 200 */ 464, 63, 458, 459, 20, 133, 134, 463, 464, 20, /* 210 */ 210, 211, 165, 213, 214, 215, 216, 217, 218, 219, /* 220 */ 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, /* 230 */ 230, 96, 386, 98, 388, 163, 164, 168, 343, 63, /* 240 */ 21, 169, 170, 24, 25, 26, 27, 28, 29, 30, /* 250 */ 31, 32, 357, 14, 37, 330, 184, 332, 186, 20, /* 260 */ 365, 434, 435, 436, 437, 20, 439, 440, 96, 235, /* 270 */ 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, /* 280 */ 96, 96, 210, 211, 35, 213, 214, 215, 216, 217, /* 290 */ 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, /* 300 */ 228, 229, 230, 364, 232, 12, 13, 12, 13, 14, /* 310 */ 15, 16, 20, 20, 375, 22, 99, 19, 101, 102, /* 320 */ 71, 104, 253, 254, 255, 108, 33, 20, 35, 336, /* 330 */ 331, 33, 339, 340, 339, 428, 429, 8, 9, 273, /* 340 */ 179, 12, 13, 14, 15, 16, 48, 130, 409, 410, /* 350 */ 411, 58, 54, 55, 56, 57, 58, 64, 345, 420, /* 360 */ 14, 362, 201, 202, 71, 370, 20, 107, 183, 370, /* 370 */ 185, 412, 359, 20, 375, 22, 377, 12, 13, 14, /* 380 */ 20, 368, 3, 248, 232, 20, 234, 22, 96, 96, /* 390 */ 127, 128, 4, 95, 209, 132, 98, 438, 33, 20, /* 400 */ 35, 424, 163, 426, 51, 406, 0, 339, 331, 410, /* 410 */ 339, 118, 413, 414, 415, 416, 417, 418, 0, 420, /* 420 */ 248, 353, 372, 58, 353, 375, 133, 134, 360, 131, /* 430 */ 435, 436, 437, 248, 439, 440, 71, 339, 370, 21, /* 440 */ 232, 370, 24, 25, 26, 27, 28, 29, 30, 31, /* 450 */ 32, 353, 375, 454, 455, 58, 163, 164, 360, 362, /* 460 */ 343, 96, 169, 170, 166, 424, 369, 426, 370, 171, /* 470 */ 163, 164, 66, 67, 68, 378, 97, 184, 47, 186, /* 480 */ 74, 75, 365, 118, 96, 79, 188, 80, 190, 0, /* 490 */ 84, 85, 95, 133, 134, 98, 90, 127, 133, 134, /* 500 */ 376, 377, 20, 210, 211, 176, 213, 214, 215, 216, /* 510 */ 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, /* 520 */ 227, 228, 229, 230, 66, 67, 68, 96, 163, 164, /* 530 */ 0, 362, 74, 75, 169, 170, 339, 79, 369, 339, /* 540 */ 248, 71, 84, 85, 165, 138, 139, 378, 90, 184, /* 550 */ 353, 186, 339, 353, 24, 25, 26, 27, 28, 29, /* 560 */ 30, 31, 32, 193, 194, 394, 107, 370, 161, 398, /* 570 */ 370, 14, 15, 16, 331, 210, 211, 339, 213, 214, /* 580 */ 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, /* 590 */ 225, 226, 227, 228, 229, 230, 12, 13, 20, 386, /* 600 */ 370, 388, 345, 274, 20, 362, 22, 339, 439, 339, /* 610 */ 439, 381, 443, 370, 443, 133, 134, 33, 375, 35, /* 620 */ 377, 353, 33, 353, 386, 368, 388, 458, 459, 458, /* 630 */ 459, 96, 463, 464, 463, 464, 248, 48, 370, 331, /* 640 */ 370, 152, 58, 54, 55, 56, 57, 58, 339, 406, /* 650 */ 161, 169, 170, 410, 210, 71, 413, 414, 415, 416, /* 660 */ 417, 418, 353, 420, 96, 354, 14, 331, 12, 13, /* 670 */ 427, 3, 20, 362, 431, 432, 20, 71, 22, 370, /* 680 */ 96, 4, 371, 375, 95, 331, 412, 98, 363, 33, /* 690 */ 331, 35, 423, 8, 9, 426, 19, 12, 13, 14, /* 700 */ 15, 16, 118, 259, 260, 261, 262, 263, 264, 265, /* 710 */ 33, 375, 438, 331, 58, 8, 9, 133, 134, 12, /* 720 */ 13, 14, 15, 16, 128, 48, 2, 71, 132, 375, /* 730 */ 53, 0, 8, 9, 375, 58, 12, 13, 14, 15, /* 740 */ 16, 331, 439, 165, 162, 412, 443, 163, 164, 362, /* 750 */ 339, 44, 96, 169, 170, 166, 167, 375, 1, 2, /* 760 */ 171, 458, 459, 174, 353, 378, 463, 464, 184, 354, /* 770 */ 186, 438, 95, 4, 118, 98, 362, 362, 331, 190, /* 780 */ 363, 370, 97, 248, 370, 375, 371, 191, 192, 133, /* 790 */ 134, 195, 358, 197, 210, 211, 20, 213, 214, 215, /* 800 */ 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, /* 810 */ 226, 227, 228, 229, 230, 163, 248, 235, 363, 163, /* 820 */ 164, 18, 375, 20, 108, 169, 170, 245, 362, 415, /* 830 */ 27, 348, 349, 30, 362, 44, 33, 371, 404, 108, /* 840 */ 184, 369, 186, 127, 128, 129, 130, 131, 132, 331, /* 850 */ 378, 48, 331, 50, 97, 363, 53, 370, 127, 128, /* 860 */ 129, 130, 131, 132, 348, 349, 210, 211, 381, 213, /* 870 */ 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, /* 880 */ 224, 225, 226, 227, 228, 229, 230, 350, 97, 352, /* 890 */ 339, 372, 18, 375, 375, 331, 375, 23, 95, 0, /* 900 */ 339, 8, 9, 0, 353, 12, 13, 14, 15, 16, /* 910 */ 107, 37, 38, 363, 353, 41, 331, 370, 363, 8, /* 920 */ 9, 370, 362, 12, 13, 14, 15, 16, 381, 369, /* 930 */ 42, 370, 44, 59, 60, 61, 62, 269, 378, 375, /* 940 */ 137, 165, 108, 140, 141, 142, 143, 144, 145, 146, /* 950 */ 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, /* 960 */ 375, 158, 159, 160, 130, 66, 67, 68, 69, 70, /* 970 */ 96, 72, 73, 74, 75, 76, 77, 78, 79, 80, /* 980 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, /* 990 */ 91, 92, 339, 339, 331, 8, 9, 399, 394, 12, /* 1000 */ 13, 14, 15, 16, 22, 339, 353, 353, 97, 135, /* 1010 */ 331, 108, 0, 339, 339, 339, 20, 35, 249, 353, /* 1020 */ 39, 331, 331, 370, 370, 331, 331, 353, 353, 353, /* 1030 */ 127, 128, 129, 130, 131, 132, 370, 372, 375, 20, /* 1040 */ 375, 362, 331, 439, 370, 370, 370, 443, 44, 370, /* 1050 */ 176, 177, 178, 71, 375, 181, 377, 339, 165, 331, /* 1060 */ 48, 355, 458, 459, 358, 375, 375, 463, 464, 375, /* 1070 */ 375, 353, 44, 364, 200, 45, 46, 203, 35, 205, /* 1080 */ 206, 207, 208, 209, 375, 406, 375, 332, 370, 410, /* 1090 */ 362, 364, 413, 414, 415, 416, 417, 418, 370, 420, /* 1100 */ 118, 97, 375, 375, 425, 377, 427, 351, 354, 339, /* 1110 */ 431, 432, 246, 247, 22, 64, 362, 364, 409, 410, /* 1120 */ 411, 339, 248, 353, 445, 371, 331, 35, 375, 420, /* 1130 */ 394, 42, 453, 44, 406, 353, 409, 410, 410, 0, /* 1140 */ 370, 413, 414, 415, 416, 417, 418, 420, 420, 165, /* 1150 */ 44, 423, 370, 425, 426, 427, 172, 362, 331, 431, /* 1160 */ 432, 165, 409, 410, 107, 370, 184, 0, 186, 0, /* 1170 */ 375, 100, 377, 420, 103, 439, 0, 100, 100, 443, /* 1180 */ 103, 103, 163, 44, 100, 58, 196, 103, 198, 362, /* 1190 */ 385, 22, 210, 211, 458, 459, 0, 370, 22, 463, /* 1200 */ 464, 406, 375, 97, 377, 410, 35, 331, 413, 414, /* 1210 */ 415, 416, 417, 418, 157, 420, 49, 44, 22, 44, /* 1220 */ 425, 44, 427, 133, 134, 98, 431, 432, 247, 186, /* 1230 */ 44, 44, 44, 406, 44, 1, 2, 410, 362, 96, /* 1240 */ 413, 414, 415, 416, 417, 418, 370, 420, 453, 106, /* 1250 */ 467, 375, 425, 377, 427, 456, 44, 394, 431, 432, /* 1260 */ 44, 210, 44, 44, 44, 341, 331, 450, 362, 442, /* 1270 */ 97, 44, 97, 13, 97, 44, 44, 44, 35, 44, /* 1280 */ 341, 385, 406, 97, 97, 97, 410, 97, 338, 413, /* 1290 */ 414, 415, 416, 417, 418, 35, 420, 362, 13, 271, /* 1300 */ 331, 425, 439, 427, 374, 370, 443, 431, 432, 97, /* 1310 */ 375, 385, 377, 97, 71, 97, 97, 97, 442, 441, /* 1320 */ 35, 458, 459, 433, 97, 460, 463, 464, 97, 97, /* 1330 */ 97, 362, 97, 444, 48, 250, 408, 396, 407, 370, /* 1340 */ 182, 406, 42, 382, 375, 410, 377, 20, 413, 414, /* 1350 */ 415, 416, 417, 418, 382, 420, 385, 186, 380, 162, /* 1360 */ 425, 20, 427, 339, 339, 382, 431, 432, 380, 380, /* 1370 */ 339, 94, 339, 331, 347, 406, 339, 442, 339, 410, /* 1380 */ 20, 333, 413, 414, 415, 416, 417, 418, 333, 420, /* 1390 */ 20, 345, 12, 13, 425, 401, 427, 20, 377, 345, /* 1400 */ 431, 432, 22, 20, 362, 340, 20, 345, 395, 340, /* 1410 */ 52, 442, 370, 33, 342, 35, 342, 375, 345, 377, /* 1420 */ 345, 345, 331, 362, 345, 339, 333, 375, 362, 362, /* 1430 */ 362, 333, 362, 339, 375, 375, 199, 405, 58, 96, /* 1440 */ 343, 403, 362, 362, 362, 362, 401, 189, 406, 362, /* 1450 */ 362, 71, 410, 362, 343, 413, 414, 415, 416, 417, /* 1460 */ 418, 370, 420, 400, 339, 258, 375, 425, 377, 427, /* 1470 */ 257, 449, 377, 431, 432, 449, 375, 375, 175, 375, /* 1480 */ 375, 385, 268, 266, 442, 385, 331, 452, 267, 390, /* 1490 */ 449, 451, 448, 390, 447, 251, 446, 406, 118, 275, /* 1500 */ 272, 410, 468, 247, 413, 414, 415, 416, 417, 418, /* 1510 */ 270, 420, 370, 20, 461, 408, 425, 362, 427, 339, /* 1520 */ 462, 412, 431, 432, 340, 370, 343, 20, 343, 388, /* 1530 */ 375, 375, 377, 167, 390, 375, 375, 375, 375, 390, /* 1540 */ 375, 387, 343, 343, 370, 96, 430, 358, 96, 339, /* 1550 */ 352, 343, 36, 375, 331, 402, 334, 366, 333, 391, /* 1560 */ 356, 406, 356, 397, 184, 410, 186, 356, 413, 414, /* 1570 */ 415, 416, 417, 418, 344, 420, 329, 0, 0, 0, /* 1580 */ 425, 42, 427, 391, 331, 362, 431, 432, 0, 35, /* 1590 */ 210, 211, 204, 370, 35, 35, 35, 204, 375, 0, /* 1600 */ 377, 204, 35, 223, 224, 225, 226, 227, 228, 229, /* 1610 */ 35, 0, 204, 0, 331, 362, 35, 0, 22, 0, /* 1620 */ 35, 191, 186, 370, 184, 0, 0, 0, 375, 406, /* 1630 */ 377, 180, 179, 410, 0, 0, 413, 414, 415, 416, /* 1640 */ 417, 418, 47, 420, 331, 362, 0, 0, 425, 0, /* 1650 */ 427, 42, 0, 370, 431, 432, 0, 0, 375, 406, /* 1660 */ 377, 0, 0, 410, 152, 35, 413, 414, 415, 416, /* 1670 */ 417, 418, 0, 420, 0, 362, 0, 0, 331, 152, /* 1680 */ 427, 0, 0, 370, 431, 432, 0, 0, 375, 406, /* 1690 */ 377, 0, 0, 410, 0, 0, 413, 414, 415, 416, /* 1700 */ 417, 418, 0, 420, 0, 331, 0, 0, 0, 362, /* 1710 */ 427, 0, 0, 0, 431, 432, 0, 370, 0, 406, /* 1720 */ 42, 0, 375, 410, 377, 0, 413, 414, 415, 416, /* 1730 */ 417, 418, 0, 420, 0, 0, 362, 22, 0, 0, /* 1740 */ 136, 0, 0, 0, 370, 35, 58, 0, 58, 375, /* 1750 */ 0, 377, 47, 406, 331, 58, 0, 410, 0, 42, /* 1760 */ 413, 414, 415, 416, 417, 418, 39, 420, 44, 14, /* 1770 */ 47, 14, 0, 47, 0, 0, 40, 0, 465, 466, /* 1780 */ 406, 175, 0, 39, 410, 362, 0, 413, 414, 415, /* 1790 */ 416, 417, 418, 370, 420, 0, 65, 0, 375, 39, /* 1800 */ 377, 427, 455, 0, 35, 39, 432, 48, 0, 48, /* 1810 */ 39, 35, 0, 35, 0, 48, 331, 0, 35, 39, /* 1820 */ 39, 48, 0, 0, 0, 105, 35, 22, 0, 406, /* 1830 */ 0, 103, 44, 410, 35, 35, 413, 414, 415, 416, /* 1840 */ 417, 418, 35, 420, 35, 35, 44, 362, 331, 22, /* 1850 */ 35, 35, 0, 22, 22, 370, 50, 0, 22, 0, /* 1860 */ 375, 35, 377, 0, 35, 0, 22, 20, 35, 35, /* 1870 */ 35, 0, 35, 35, 165, 0, 22, 0, 0, 362, /* 1880 */ 457, 97, 3, 96, 367, 96, 187, 370, 252, 167, /* 1890 */ 44, 406, 375, 97, 377, 410, 231, 331, 413, 414, /* 1900 */ 415, 416, 417, 418, 256, 420, 173, 96, 44, 96, /* 1910 */ 165, 165, 172, 44, 331, 97, 97, 96, 44, 47, /* 1920 */ 172, 96, 252, 406, 44, 3, 35, 410, 362, 47, /* 1930 */ 413, 414, 415, 416, 417, 418, 370, 420, 96, 44, /* 1940 */ 97, 375, 97, 377, 96, 362, 331, 97, 252, 35, /* 1950 */ 367, 466, 35, 370, 35, 35, 35, 97, 375, 97, /* 1960 */ 377, 0, 44, 47, 0, 246, 0, 0, 39, 96, /* 1970 */ 47, 331, 406, 47, 0, 39, 410, 362, 47, 413, /* 1980 */ 414, 415, 416, 417, 418, 370, 420, 97, 422, 406, /* 1990 */ 375, 97, 377, 410, 106, 331, 413, 414, 415, 416, /* 2000 */ 417, 418, 362, 420, 96, 96, 96, 367, 168, 96, /* 2010 */ 370, 2, 44, 22, 210, 375, 231, 377, 47, 166, /* 2020 */ 331, 406, 97, 96, 231, 410, 362, 233, 413, 414, /* 2030 */ 415, 416, 417, 418, 370, 420, 96, 96, 96, 375, /* 2040 */ 97, 377, 97, 97, 96, 96, 406, 47, 22, 96, /* 2050 */ 410, 362, 35, 413, 414, 415, 416, 417, 418, 370, /* 2060 */ 420, 212, 107, 35, 375, 96, 377, 97, 35, 96, /* 2070 */ 406, 35, 97, 97, 410, 96, 35, 413, 414, 415, /* 2080 */ 416, 417, 418, 331, 420, 97, 96, 35, 22, 97, /* 2090 */ 96, 108, 44, 96, 96, 406, 35, 120, 120, 410, /* 2100 */ 120, 120, 413, 414, 415, 416, 417, 418, 96, 420, /* 2110 */ 331, 22, 65, 64, 362, 35, 35, 35, 35, 44, /* 2120 */ 35, 35, 370, 35, 71, 35, 35, 375, 35, 377, /* 2130 */ 93, 35, 331, 35, 35, 22, 35, 35, 35, 71, /* 2140 */ 35, 362, 35, 35, 35, 35, 22, 35, 0, 370, /* 2150 */ 35, 0, 48, 39, 375, 35, 377, 39, 406, 0, /* 2160 */ 35, 39, 410, 362, 48, 413, 414, 415, 416, 417, /* 2170 */ 418, 370, 420, 0, 48, 35, 375, 48, 377, 0, /* 2180 */ 39, 35, 35, 0, 22, 406, 21, 20, 22, 410, /* 2190 */ 22, 21, 413, 414, 415, 416, 417, 418, 469, 420, /* 2200 */ 469, 469, 469, 469, 469, 469, 469, 406, 469, 469, /* 2210 */ 469, 410, 331, 469, 413, 414, 415, 416, 417, 418, /* 2220 */ 469, 420, 469, 469, 469, 469, 469, 469, 469, 331, /* 2230 */ 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, /* 2240 */ 469, 469, 469, 362, 469, 469, 331, 469, 469, 469, /* 2250 */ 469, 370, 469, 469, 469, 469, 375, 469, 377, 469, /* 2260 */ 362, 469, 469, 469, 469, 469, 469, 469, 370, 469, /* 2270 */ 469, 469, 469, 375, 469, 377, 469, 362, 331, 469, /* 2280 */ 469, 469, 469, 469, 469, 370, 469, 406, 469, 469, /* 2290 */ 375, 410, 377, 469, 413, 414, 415, 416, 417, 418, /* 2300 */ 469, 420, 469, 331, 406, 469, 469, 469, 410, 362, /* 2310 */ 469, 413, 414, 415, 416, 417, 418, 370, 420, 469, /* 2320 */ 469, 406, 375, 469, 377, 410, 469, 331, 413, 414, /* 2330 */ 415, 416, 417, 418, 362, 420, 469, 469, 469, 469, /* 2340 */ 469, 469, 370, 469, 469, 469, 469, 375, 469, 377, /* 2350 */ 469, 469, 331, 406, 469, 469, 469, 410, 362, 469, /* 2360 */ 413, 414, 415, 416, 417, 418, 370, 420, 469, 469, /* 2370 */ 469, 375, 469, 377, 469, 469, 469, 469, 406, 469, /* 2380 */ 469, 469, 410, 362, 469, 413, 414, 415, 416, 417, /* 2390 */ 418, 370, 420, 469, 469, 469, 375, 469, 377, 469, /* 2400 */ 469, 469, 406, 469, 469, 469, 410, 469, 469, 413, /* 2410 */ 414, 415, 416, 417, 418, 331, 420, 469, 469, 469, /* 2420 */ 469, 469, 469, 469, 469, 469, 469, 406, 469, 469, /* 2430 */ 469, 410, 469, 469, 413, 414, 415, 416, 417, 418, /* 2440 */ 469, 420, 331, 469, 469, 469, 362, 469, 469, 469, /* 2450 */ 469, 469, 469, 469, 370, 469, 469, 469, 469, 375, /* 2460 */ 469, 377, 469, 469, 331, 469, 469, 469, 469, 469, /* 2470 */ 469, 469, 469, 362, 469, 469, 469, 469, 469, 469, /* 2480 */ 469, 370, 469, 469, 469, 469, 375, 469, 377, 469, /* 2490 */ 406, 469, 469, 469, 410, 362, 469, 413, 414, 415, /* 2500 */ 416, 417, 418, 370, 420, 469, 469, 469, 375, 469, /* 2510 */ 377, 469, 469, 469, 469, 469, 469, 406, 469, 469, /* 2520 */ 469, 410, 469, 469, 413, 414, 415, 416, 417, 418, /* 2530 */ 469, 420, 469, 469, 469, 469, 469, 469, 469, 406, /* 2540 */ 469, 469, 469, 410, 331, 469, 413, 414, 415, 416, /* 2550 */ 417, 418, 469, 420, 469, 469, 469, 469, 469, 469, /* 2560 */ 469, 331, 469, 469, 469, 469, 469, 469, 469, 469, /* 2570 */ 469, 469, 469, 469, 469, 362, 469, 469, 331, 469, /* 2580 */ 469, 469, 469, 370, 469, 469, 469, 469, 375, 469, /* 2590 */ 377, 469, 362, 469, 469, 469, 469, 469, 469, 469, /* 2600 */ 370, 469, 469, 469, 469, 375, 469, 377, 469, 362, /* 2610 */ 331, 469, 469, 469, 469, 469, 469, 370, 469, 406, /* 2620 */ 469, 469, 375, 410, 377, 469, 413, 414, 415, 416, /* 2630 */ 417, 418, 469, 420, 469, 331, 406, 469, 469, 469, /* 2640 */ 410, 362, 469, 413, 414, 415, 416, 417, 418, 370, /* 2650 */ 420, 469, 469, 406, 375, 469, 377, 410, 469, 331, /* 2660 */ 413, 414, 415, 416, 417, 418, 362, 420, 469, 469, /* 2670 */ 469, 469, 469, 469, 370, 469, 469, 469, 469, 375, /* 2680 */ 469, 377, 469, 469, 469, 406, 469, 469, 469, 410, /* 2690 */ 362, 469, 413, 414, 415, 416, 417, 418, 370, 420, /* 2700 */ 469, 469, 469, 375, 469, 377, 469, 469, 469, 469, /* 2710 */ 406, 469, 469, 469, 410, 469, 469, 413, 414, 415, /* 2720 */ 416, 417, 418, 469, 420, 469, 469, 469, 469, 469, /* 2730 */ 469, 469, 469, 469, 406, 469, 469, 469, 410, 469, /* 2740 */ 469, 413, 414, 415, 416, 417, 418, 469, 420, }; #define YY_SHIFT_COUNT (742) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (2183) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 874, 0, 72, 0, 293, 293, 293, 293, 293, 293, /* 10 */ 293, 293, 293, 293, 293, 365, 584, 584, 656, 584, /* 20 */ 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, /* 30 */ 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, /* 40 */ 584, 584, 584, 584, 584, 584, 584, 584, 172, 292, /* 50 */ 185, 184, 135, 535, 568, 535, 184, 184, 1380, 1380, /* 60 */ 1380, 535, 1380, 1380, 388, 535, 16, 482, 115, 115, /* 70 */ 482, 86, 86, 307, 360, 346, 346, 115, 115, 115, /* 80 */ 115, 115, 115, 115, 147, 115, 115, 138, 16, 115, /* 90 */ 115, 189, 115, 16, 115, 147, 115, 147, 16, 115, /* 100 */ 115, 16, 115, 16, 16, 16, 115, 176, 803, 34, /* 110 */ 34, 219, 458, 982, 982, 982, 982, 982, 982, 982, /* 120 */ 982, 982, 982, 982, 982, 982, 982, 982, 982, 982, /* 130 */ 982, 982, 217, 379, 307, 360, 249, 578, 578, 578, /* 140 */ 2, 152, 152, 249, 245, 245, 245, 138, 260, 208, /* 150 */ 16, 470, 16, 470, 470, 459, 606, 36, 36, 36, /* 160 */ 36, 36, 36, 36, 36, 298, 418, 406, 47, 329, /* 170 */ 444, 60, 69, 239, 652, 353, 776, 1030, 834, 996, /* 180 */ 866, 981, 668, 866, 888, 769, 1019, 1085, 1286, 1158, /* 190 */ 1300, 1327, 1300, 1197, 1341, 1341, 1300, 1197, 1197, 1341, /* 200 */ 1277, 1341, 1341, 1341, 1360, 1360, 1370, 138, 1377, 138, /* 210 */ 1383, 1386, 138, 1383, 138, 138, 138, 1341, 138, 1358, /* 220 */ 1358, 1360, 16, 16, 16, 16, 16, 16, 16, 16, /* 230 */ 16, 16, 16, 1341, 1360, 470, 470, 470, 1237, 1343, /* 240 */ 1370, 176, 1258, 1377, 176, 1341, 1327, 1327, 470, 1207, /* 250 */ 1213, 470, 1207, 1213, 470, 470, 16, 1217, 1303, 1207, /* 260 */ 1214, 1221, 1244, 1085, 1224, 1228, 1240, 1256, 245, 1493, /* 270 */ 1341, 1383, 176, 176, 1507, 1213, 470, 470, 470, 470, /* 280 */ 470, 1213, 470, 1366, 176, 459, 176, 245, 1449, 1452, /* 290 */ 470, 606, 1341, 176, 1516, 1360, 2749, 2749, 2749, 2749, /* 300 */ 2749, 2749, 2749, 2749, 2749, 899, 589, 530, 677, 685, /* 310 */ 707, 911, 731, 15, 724, 893, 903, 987, 987, 987, /* 320 */ 987, 987, 987, 987, 987, 987, 716, 596, 295, 295, /* 330 */ 407, 161, 489, 397, 81, 370, 263, 263, 557, 757, /* 340 */ 582, 557, 557, 557, 1012, 791, 1092, 1089, 1057, 1139, /* 350 */ 1071, 1077, 1078, 1084, 1169, 1176, 1196, 990, 1004, 1106, /* 360 */ 1127, 1173, 1175, 1177, 1090, 1028, 66, 984, 1186, 1187, /* 370 */ 1188, 1190, 1212, 1216, 1234, 1218, 1043, 1171, 1051, 1219, /* 380 */ 431, 1220, 1227, 1231, 1232, 1233, 1235, 1143, 1260, 1285, /* 390 */ 1243, 1167, 1577, 1578, 1579, 1539, 1588, 1554, 1388, 1559, /* 400 */ 1560, 1561, 1393, 1599, 1567, 1575, 1397, 1611, 1408, 1613, /* 410 */ 1581, 1617, 1596, 1619, 1585, 1430, 1436, 1440, 1625, 1626, /* 420 */ 1627, 1451, 1453, 1634, 1635, 1595, 1646, 1647, 1649, 1609, /* 430 */ 1652, 1656, 1657, 1661, 1662, 1672, 1674, 1676, 1512, 1630, /* 440 */ 1677, 1527, 1681, 1682, 1686, 1687, 1691, 1692, 1694, 1695, /* 450 */ 1702, 1704, 1706, 1707, 1708, 1711, 1712, 1713, 1678, 1716, /* 460 */ 1718, 1721, 1725, 1732, 1734, 1715, 1735, 1738, 1739, 1604, /* 470 */ 1741, 1742, 1743, 1688, 1710, 1747, 1690, 1750, 1697, 1756, /* 480 */ 1758, 1717, 1727, 1724, 1705, 1755, 1723, 1757, 1726, 1772, /* 490 */ 1736, 1744, 1774, 1775, 1777, 1760, 1606, 1782, 1786, 1795, /* 500 */ 1731, 1797, 1803, 1769, 1759, 1766, 1808, 1776, 1761, 1771, /* 510 */ 1812, 1778, 1767, 1780, 1814, 1783, 1773, 1781, 1817, 1822, /* 520 */ 1823, 1824, 1720, 1728, 1791, 1805, 1828, 1799, 1800, 1807, /* 530 */ 1809, 1788, 1802, 1810, 1815, 1827, 1816, 1830, 1831, 1852, /* 540 */ 1832, 1806, 1857, 1836, 1826, 1859, 1829, 1863, 1833, 1865, /* 550 */ 1844, 1847, 1834, 1835, 1837, 1784, 1787, 1871, 1709, 1789, /* 560 */ 1838, 1875, 1699, 1854, 1745, 1722, 1877, 1878, 1746, 1733, /* 570 */ 1879, 1846, 1636, 1811, 1796, 1813, 1740, 1665, 1748, 1648, /* 580 */ 1818, 1864, 1869, 1819, 1821, 1825, 1842, 1843, 1874, 1872, /* 590 */ 1882, 1848, 1880, 1670, 1845, 1850, 1922, 1895, 1696, 1891, /* 600 */ 1914, 1917, 1919, 1920, 1921, 1860, 1862, 1916, 1719, 1918, /* 610 */ 1923, 1961, 1964, 1966, 1967, 1873, 1929, 1705, 1926, 1908, /* 620 */ 1890, 1894, 1909, 1910, 1840, 1913, 1974, 1936, 1853, 1927, /* 630 */ 1888, 1705, 1931, 1968, 1785, 1794, 1793, 2009, 1991, 1804, /* 640 */ 1940, 1925, 1941, 1943, 1942, 1945, 1971, 1948, 1949, 2000, /* 650 */ 1946, 2026, 1849, 1953, 1955, 1970, 2017, 2028, 1969, 1975, /* 660 */ 2033, 1973, 1976, 2036, 1979, 1988, 2041, 1990, 1992, 2052, /* 670 */ 1994, 1977, 1978, 1980, 1981, 2066, 1983, 1997, 2048, 1998, /* 680 */ 2061, 2012, 2048, 2048, 2089, 2047, 2049, 2080, 2081, 2082, /* 690 */ 2083, 2085, 2086, 2088, 2090, 2091, 2093, 2053, 2037, 2075, /* 700 */ 2096, 2098, 2099, 2113, 2101, 2102, 2103, 2068, 1788, 2105, /* 710 */ 1802, 2107, 2108, 2109, 2110, 2124, 2112, 2148, 2115, 2104, /* 720 */ 2114, 2151, 2120, 2116, 2118, 2159, 2125, 2126, 2122, 2173, /* 730 */ 2140, 2129, 2141, 2179, 2146, 2147, 2183, 2162, 2165, 2166, /* 740 */ 2168, 2170, 2167, }; #define YY_REDUCE_COUNT (304) #define YY_REDUCE_MIN (-438) #define YY_REDUCE_MAX (2328) static const short yy_reduce_ofst[] = { /* 0 */ -256, 679, 728, 795, 827, 876, 935, 969, 1042, 1091, /* 10 */ 1155, 1223, 243, 1253, 1283, -294, -1, 1313, 1374, 1347, /* 20 */ 1423, 1485, 1517, 1566, 1583, 1640, 1615, 1664, 1689, 1752, /* 30 */ 1779, 1801, 1881, 1898, 1915, 1947, 1972, 1996, 2021, 2084, /* 40 */ 2111, 2133, 2213, 2230, 2247, 2279, 2304, 2328, -264, 169, /* 50 */ 171, -173, -350, 604, 736, 863, -336, -5, -323, -61, /* 60 */ 709, 303, 727, 753, -438, -386, -180, -212, 68, 98, /* 70 */ -377, -331, -327, -344, -307, -199, -7, 71, 197, 200, /* 80 */ 268, 270, 309, 411, -154, 551, 561, 13, -324, 653, /* 90 */ 654, 414, 675, 97, 676, 213, 718, 238, 311, 666, /* 100 */ 674, 472, 782, 415, 560, 754, 770, -105, -288, -93, /* 110 */ -93, -75, -272, -187, 77, 308, 336, 354, 359, 382, /* 120 */ 410, 447, 518, 521, 564, 585, 663, 690, 691, 694, /* 130 */ 695, 711, -342, -41, -206, 124, 516, -41, 274, 333, /* 140 */ 117, -23, 41, 483, 230, 487, 547, 257, 434, 269, /* 150 */ 466, 50, 387, 519, 665, 706, 537, -354, 325, 417, /* 160 */ 455, 492, 550, 555, 492, 598, 755, 756, 805, 783, /* 170 */ 799, 924, 817, 906, 906, 939, 896, 950, 930, 926, /* 180 */ 878, 878, 865, 878, 890, 889, 906, 928, 931, 941, /* 190 */ 961, 971, 972, 978, 1024, 1025, 983, 988, 989, 1031, /* 200 */ 1027, 1033, 1037, 1039, 1048, 1055, 994, 1046, 1021, 1054, /* 210 */ 1065, 1013, 1062, 1069, 1073, 1075, 1076, 1086, 1079, 1072, /* 220 */ 1074, 1093, 1061, 1066, 1067, 1068, 1070, 1080, 1081, 1082, /* 230 */ 1083, 1087, 1088, 1094, 1098, 1052, 1059, 1060, 1032, 1038, /* 240 */ 1045, 1097, 1063, 1095, 1111, 1125, 1096, 1100, 1101, 1022, /* 250 */ 1099, 1102, 1026, 1103, 1104, 1105, 906, 1035, 1040, 1041, /* 260 */ 1044, 1047, 1050, 1107, 1034, 1058, 1053, 878, 1142, 1109, /* 270 */ 1180, 1184, 1183, 1185, 1141, 1144, 1156, 1160, 1161, 1162, /* 280 */ 1163, 1149, 1165, 1154, 1199, 1189, 1200, 1174, 1116, 1191, /* 290 */ 1178, 1198, 1210, 1208, 1222, 1225, 1166, 1153, 1168, 1192, /* 300 */ 1204, 1206, 1211, 1230, 1247, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 10 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 20 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 30 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 40 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 50 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 60 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 70 */ 1665, 1665, 1665, 1923, 1665, 1665, 1665, 1665, 1665, 1665, /* 80 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1744, 1665, 1665, /* 90 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 100 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1742, 1916, 2132, /* 110 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 120 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 130 */ 1665, 1665, 1665, 2144, 1665, 1665, 1665, 2144, 2144, 2144, /* 140 */ 1742, 2104, 2104, 1665, 1665, 1665, 1665, 1744, 1977, 1665, /* 150 */ 1665, 1665, 1665, 1665, 1665, 1851, 1665, 1665, 1665, 1665, /* 160 */ 1665, 1875, 1665, 1665, 1665, 1969, 1665, 1665, 2169, 2225, /* 170 */ 1665, 1665, 2172, 1665, 1665, 1665, 1928, 1665, 1804, 2159, /* 180 */ 2136, 2150, 2209, 2137, 2134, 2153, 1665, 2163, 1665, 1962, /* 190 */ 1921, 1665, 1921, 1918, 1665, 1665, 1921, 1918, 1918, 1665, /* 200 */ 1795, 1665, 1665, 1665, 1665, 1665, 1665, 1744, 1665, 1744, /* 210 */ 1665, 1665, 1744, 1665, 1744, 1744, 1744, 1665, 1744, 1722, /* 220 */ 1722, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 230 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1989, 1975, /* 240 */ 1665, 1742, 1971, 1665, 1742, 1665, 1665, 1665, 1665, 2180, /* 250 */ 2178, 1665, 2180, 2178, 1665, 1665, 1665, 2194, 2190, 2180, /* 260 */ 2198, 2196, 2165, 2163, 2228, 2215, 2211, 2150, 1665, 1665, /* 270 */ 1665, 1665, 1742, 1742, 1665, 2178, 1665, 1665, 1665, 1665, /* 280 */ 1665, 2178, 1665, 1665, 1742, 1665, 1742, 1665, 1665, 1820, /* 290 */ 1665, 1665, 1665, 1742, 1697, 1665, 1964, 1980, 1946, 1946, /* 300 */ 1854, 1854, 1854, 1745, 1670, 1665, 1665, 1665, 1665, 1665, /* 310 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 2193, 2192, 2059, /* 320 */ 1665, 2108, 2107, 2106, 2097, 2058, 1816, 1665, 2057, 2056, /* 330 */ 1665, 1665, 1665, 1665, 1665, 1665, 1937, 1936, 2050, 1665, /* 340 */ 1665, 2051, 2049, 2048, 1665, 1665, 1665, 1665, 1665, 1665, /* 350 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 360 */ 1665, 1665, 1665, 1665, 1665, 2212, 2216, 1665, 1665, 1665, /* 370 */ 1665, 1665, 1665, 1665, 2133, 1665, 1665, 1665, 1665, 1665, /* 380 */ 2032, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 390 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 400 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 410 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 420 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 430 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 440 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 450 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 460 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 470 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 480 */ 1665, 1665, 1665, 1702, 2037, 1665, 1665, 1665, 1665, 1665, /* 490 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 500 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 510 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 520 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 530 */ 1665, 1783, 1782, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 540 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 550 */ 1665, 1665, 1665, 1665, 1665, 2041, 1665, 1665, 1665, 1665, /* 560 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 570 */ 2208, 2166, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 580 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 590 */ 2032, 1665, 2191, 1665, 1665, 2206, 1665, 2210, 1665, 1665, /* 600 */ 1665, 1665, 1665, 1665, 1665, 2143, 2139, 1665, 1665, 2135, /* 610 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 2040, 1665, 1665, /* 620 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 630 */ 1665, 2031, 1665, 2094, 1665, 1665, 1665, 2128, 1665, 1665, /* 640 */ 2079, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 650 */ 2041, 1665, 2044, 1665, 1665, 1665, 1665, 1665, 1848, 1665, /* 660 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 670 */ 1665, 1833, 1831, 1830, 1829, 1665, 1826, 1665, 1861, 1665, /* 680 */ 1665, 1665, 1857, 1856, 1665, 1665, 1665, 1665, 1665, 1665, /* 690 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1763, /* 700 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1755, 1665, /* 710 */ 1754, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 720 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 730 */ 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, /* 740 */ 1665, 1665, 1665, }; /********** 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, /* 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, /* 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, /* COMMENT => 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, /* TIMESTAMP => 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, /* 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, /* WITH => 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, /* 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, /* 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 */ 276, /* END => ABORT */ 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, /* START => 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 */ 276, /* AFTER => ABORT */ 276, /* ATTACH => ABORT */ 276, /* BEFORE => ABORT */ 276, /* BEGIN => ABORT */ 276, /* BITAND => ABORT */ 276, /* BITNOT => ABORT */ 276, /* BITOR => ABORT */ 276, /* BLOCKS => ABORT */ 276, /* CHANGE => ABORT */ 276, /* COMMA => ABORT */ 276, /* CONCAT => ABORT */ 276, /* CONFLICT => ABORT */ 276, /* COPY => ABORT */ 276, /* DEFERRED => ABORT */ 276, /* DELIMITERS => ABORT */ 276, /* DETACH => ABORT */ 276, /* DIVIDE => ABORT */ 276, /* DOT => ABORT */ 276, /* EACH => ABORT */ 276, /* FAIL => ABORT */ 276, /* FILE => ABORT */ 276, /* FOR => ABORT */ 276, /* GLOB => ABORT */ 276, /* ID => ABORT */ 276, /* IMMEDIATE => ABORT */ 276, /* IMPORT => ABORT */ 276, /* INITIALLY => ABORT */ 276, /* INSTEAD => ABORT */ 276, /* ISNULL => ABORT */ 276, /* KEY => ABORT */ 276, /* MODULES => ABORT */ 276, /* NK_BITNOT => ABORT */ 276, /* NK_SEMI => ABORT */ 276, /* NOTNULL => ABORT */ 276, /* OF => ABORT */ 276, /* PLUS => ABORT */ 276, /* PRIVILEGE => ABORT */ 276, /* RAISE => ABORT */ 276, /* REPLACE => ABORT */ 276, /* RESTRICT => ABORT */ 276, /* ROW => ABORT */ 276, /* SEMI => ABORT */ 276, /* STAR => ABORT */ 276, /* STATEMENT => ABORT */ 276, /* STRICT => ABORT */ 276, /* STRING => ABORT */ 276, /* TIMES => ABORT */ 276, /* VALUES => ABORT */ 276, /* VARIABLE => ABORT */ 276, /* VIEW => ABORT */ 276, /* 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 */ "DNODE", /* 49 */ "PORT", /* 50 */ "DNODES", /* 51 */ "NK_IPTOKEN", /* 52 */ "FORCE", /* 53 */ "LOCAL", /* 54 */ "QNODE", /* 55 */ "BNODE", /* 56 */ "SNODE", /* 57 */ "MNODE", /* 58 */ "DATABASE", /* 59 */ "USE", /* 60 */ "FLUSH", /* 61 */ "TRIM", /* 62 */ "COMPACT", /* 63 */ "IF", /* 64 */ "NOT", /* 65 */ "EXISTS", /* 66 */ "BUFFER", /* 67 */ "CACHEMODEL", /* 68 */ "CACHESIZE", /* 69 */ "COMP", /* 70 */ "DURATION", /* 71 */ "NK_VARIABLE", /* 72 */ "MAXROWS", /* 73 */ "MINROWS", /* 74 */ "KEEP", /* 75 */ "PAGES", /* 76 */ "PAGESIZE", /* 77 */ "TSDB_PAGESIZE", /* 78 */ "PRECISION", /* 79 */ "REPLICA", /* 80 */ "VGROUPS", /* 81 */ "SINGLE_STABLE", /* 82 */ "RETENTIONS", /* 83 */ "SCHEMALESS", /* 84 */ "WAL_LEVEL", /* 85 */ "WAL_FSYNC_PERIOD", /* 86 */ "WAL_RETENTION_PERIOD", /* 87 */ "WAL_RETENTION_SIZE", /* 88 */ "WAL_ROLL_PERIOD", /* 89 */ "WAL_SEGMENT_SIZE", /* 90 */ "STT_TRIGGER", /* 91 */ "TABLE_PREFIX", /* 92 */ "TABLE_SUFFIX", /* 93 */ "NK_COLON", /* 94 */ "MAX_SPEED", /* 95 */ "TABLE", /* 96 */ "NK_LP", /* 97 */ "NK_RP", /* 98 */ "STABLE", /* 99 */ "ADD", /* 100 */ "COLUMN", /* 101 */ "MODIFY", /* 102 */ "RENAME", /* 103 */ "TAG", /* 104 */ "SET", /* 105 */ "NK_EQ", /* 106 */ "USING", /* 107 */ "TAGS", /* 108 */ "COMMENT", /* 109 */ "BOOL", /* 110 */ "TINYINT", /* 111 */ "SMALLINT", /* 112 */ "INT", /* 113 */ "INTEGER", /* 114 */ "BIGINT", /* 115 */ "FLOAT", /* 116 */ "DOUBLE", /* 117 */ "BINARY", /* 118 */ "TIMESTAMP", /* 119 */ "NCHAR", /* 120 */ "UNSIGNED", /* 121 */ "JSON", /* 122 */ "VARCHAR", /* 123 */ "MEDIUMBLOB", /* 124 */ "BLOB", /* 125 */ "VARBINARY", /* 126 */ "DECIMAL", /* 127 */ "MAX_DELAY", /* 128 */ "WATERMARK", /* 129 */ "ROLLUP", /* 130 */ "TTL", /* 131 */ "SMA", /* 132 */ "DELETE_MARK", /* 133 */ "FIRST", /* 134 */ "LAST", /* 135 */ "SHOW", /* 136 */ "PRIVILEGES", /* 137 */ "DATABASES", /* 138 */ "TABLES", /* 139 */ "STABLES", /* 140 */ "MNODES", /* 141 */ "QNODES", /* 142 */ "FUNCTIONS", /* 143 */ "INDEXES", /* 144 */ "ACCOUNTS", /* 145 */ "APPS", /* 146 */ "CONNECTIONS", /* 147 */ "LICENCES", /* 148 */ "GRANTS", /* 149 */ "QUERIES", /* 150 */ "SCORES", /* 151 */ "TOPICS", /* 152 */ "VARIABLES", /* 153 */ "CLUSTER", /* 154 */ "BNODES", /* 155 */ "SNODES", /* 156 */ "TRANSACTIONS", /* 157 */ "DISTRIBUTED", /* 158 */ "CONSUMERS", /* 159 */ "SUBSCRIPTIONS", /* 160 */ "VNODES", /* 161 */ "ALIVE", /* 162 */ "LIKE", /* 163 */ "TBNAME", /* 164 */ "QTAGS", /* 165 */ "AS", /* 166 */ "INDEX", /* 167 */ "FUNCTION", /* 168 */ "INTERVAL", /* 169 */ "COUNT", /* 170 */ "LAST_ROW", /* 171 */ "TOPIC", /* 172 */ "WITH", /* 173 */ "META", /* 174 */ "CONSUMER", /* 175 */ "GROUP", /* 176 */ "DESC", /* 177 */ "DESCRIBE", /* 178 */ "RESET", /* 179 */ "QUERY", /* 180 */ "CACHE", /* 181 */ "EXPLAIN", /* 182 */ "ANALYZE", /* 183 */ "VERBOSE", /* 184 */ "NK_BOOL", /* 185 */ "RATIO", /* 186 */ "NK_FLOAT", /* 187 */ "OUTPUTTYPE", /* 188 */ "AGGREGATE", /* 189 */ "BUFSIZE", /* 190 */ "STREAM", /* 191 */ "INTO", /* 192 */ "TRIGGER", /* 193 */ "AT_ONCE", /* 194 */ "WINDOW_CLOSE", /* 195 */ "IGNORE", /* 196 */ "EXPIRED", /* 197 */ "FILL_HISTORY", /* 198 */ "UPDATE", /* 199 */ "SUBTABLE", /* 200 */ "KILL", /* 201 */ "CONNECTION", /* 202 */ "TRANSACTION", /* 203 */ "BALANCE", /* 204 */ "VGROUP", /* 205 */ "MERGE", /* 206 */ "REDISTRIBUTE", /* 207 */ "SPLIT", /* 208 */ "DELETE", /* 209 */ "INSERT", /* 210 */ "NULL", /* 211 */ "NK_QUESTION", /* 212 */ "NK_ARROW", /* 213 */ "ROWTS", /* 214 */ "QSTART", /* 215 */ "QEND", /* 216 */ "QDURATION", /* 217 */ "WSTART", /* 218 */ "WEND", /* 219 */ "WDURATION", /* 220 */ "IROWTS", /* 221 */ "ISFILLED", /* 222 */ "CAST", /* 223 */ "NOW", /* 224 */ "TODAY", /* 225 */ "TIMEZONE", /* 226 */ "CLIENT_VERSION", /* 227 */ "SERVER_VERSION", /* 228 */ "SERVER_STATUS", /* 229 */ "CURRENT_USER", /* 230 */ "CASE", /* 231 */ "END", /* 232 */ "WHEN", /* 233 */ "THEN", /* 234 */ "ELSE", /* 235 */ "BETWEEN", /* 236 */ "IS", /* 237 */ "NK_LT", /* 238 */ "NK_GT", /* 239 */ "NK_LE", /* 240 */ "NK_GE", /* 241 */ "NK_NE", /* 242 */ "MATCH", /* 243 */ "NMATCH", /* 244 */ "CONTAINS", /* 245 */ "IN", /* 246 */ "JOIN", /* 247 */ "INNER", /* 248 */ "SELECT", /* 249 */ "DISTINCT", /* 250 */ "WHERE", /* 251 */ "PARTITION", /* 252 */ "BY", /* 253 */ "SESSION", /* 254 */ "STATE_WINDOW", /* 255 */ "EVENT_WINDOW", /* 256 */ "START", /* 257 */ "SLIDING", /* 258 */ "FILL", /* 259 */ "VALUE", /* 260 */ "VALUE_F", /* 261 */ "NONE", /* 262 */ "PREV", /* 263 */ "NULL_F", /* 264 */ "LINEAR", /* 265 */ "NEXT", /* 266 */ "HAVING", /* 267 */ "RANGE", /* 268 */ "EVERY", /* 269 */ "ORDER", /* 270 */ "SLIMIT", /* 271 */ "SOFFSET", /* 272 */ "LIMIT", /* 273 */ "OFFSET", /* 274 */ "ASC", /* 275 */ "NULLS", /* 276 */ "ABORT", /* 277 */ "AFTER", /* 278 */ "ATTACH", /* 279 */ "BEFORE", /* 280 */ "BEGIN", /* 281 */ "BITAND", /* 282 */ "BITNOT", /* 283 */ "BITOR", /* 284 */ "BLOCKS", /* 285 */ "CHANGE", /* 286 */ "COMMA", /* 287 */ "CONCAT", /* 288 */ "CONFLICT", /* 289 */ "COPY", /* 290 */ "DEFERRED", /* 291 */ "DELIMITERS", /* 292 */ "DETACH", /* 293 */ "DIVIDE", /* 294 */ "DOT", /* 295 */ "EACH", /* 296 */ "FAIL", /* 297 */ "FILE", /* 298 */ "FOR", /* 299 */ "GLOB", /* 300 */ "ID", /* 301 */ "IMMEDIATE", /* 302 */ "IMPORT", /* 303 */ "INITIALLY", /* 304 */ "INSTEAD", /* 305 */ "ISNULL", /* 306 */ "KEY", /* 307 */ "MODULES", /* 308 */ "NK_BITNOT", /* 309 */ "NK_SEMI", /* 310 */ "NOTNULL", /* 311 */ "OF", /* 312 */ "PLUS", /* 313 */ "PRIVILEGE", /* 314 */ "RAISE", /* 315 */ "REPLACE", /* 316 */ "RESTRICT", /* 317 */ "ROW", /* 318 */ "SEMI", /* 319 */ "STAR", /* 320 */ "STATEMENT", /* 321 */ "STRICT", /* 322 */ "STRING", /* 323 */ "TIMES", /* 324 */ "VALUES", /* 325 */ "VARIABLE", /* 326 */ "VIEW", /* 327 */ "WAL", /* 328 */ "cmd", /* 329 */ "account_options", /* 330 */ "alter_account_options", /* 331 */ "literal", /* 332 */ "alter_account_option", /* 333 */ "user_name", /* 334 */ "sysinfo_opt", /* 335 */ "privileges", /* 336 */ "priv_level", /* 337 */ "priv_type_list", /* 338 */ "priv_type", /* 339 */ "db_name", /* 340 */ "topic_name", /* 341 */ "dnode_endpoint", /* 342 */ "force_opt", /* 343 */ "not_exists_opt", /* 344 */ "db_options", /* 345 */ "exists_opt", /* 346 */ "alter_db_options", /* 347 */ "speed_opt", /* 348 */ "integer_list", /* 349 */ "variable_list", /* 350 */ "retention_list", /* 351 */ "alter_db_option", /* 352 */ "retention", /* 353 */ "full_table_name", /* 354 */ "column_def_list", /* 355 */ "tags_def_opt", /* 356 */ "table_options", /* 357 */ "multi_create_clause", /* 358 */ "tags_def", /* 359 */ "multi_drop_clause", /* 360 */ "alter_table_clause", /* 361 */ "alter_table_options", /* 362 */ "column_name", /* 363 */ "type_name", /* 364 */ "signed_literal", /* 365 */ "create_subtable_clause", /* 366 */ "specific_cols_opt", /* 367 */ "expression_list", /* 368 */ "drop_table_clause", /* 369 */ "col_name_list", /* 370 */ "table_name", /* 371 */ "column_def", /* 372 */ "duration_list", /* 373 */ "rollup_func_list", /* 374 */ "alter_table_option", /* 375 */ "duration_literal", /* 376 */ "rollup_func_name", /* 377 */ "function_name", /* 378 */ "col_name", /* 379 */ "db_name_cond_opt", /* 380 */ "like_pattern_opt", /* 381 */ "table_name_cond", /* 382 */ "from_db_opt", /* 383 */ "tag_list_opt", /* 384 */ "tag_item", /* 385 */ "column_alias", /* 386 */ "full_index_name", /* 387 */ "index_options", /* 388 */ "index_name", /* 389 */ "func_list", /* 390 */ "sliding_opt", /* 391 */ "sma_stream_opt", /* 392 */ "func", /* 393 */ "sma_func_name", /* 394 */ "query_or_subquery", /* 395 */ "cgroup_name", /* 396 */ "analyze_opt", /* 397 */ "explain_options", /* 398 */ "insert_query", /* 399 */ "agg_func_opt", /* 400 */ "bufsize_opt", /* 401 */ "stream_name", /* 402 */ "stream_options", /* 403 */ "col_list_opt", /* 404 */ "tag_def_or_ref_opt", /* 405 */ "subtable_opt", /* 406 */ "expression", /* 407 */ "dnode_list", /* 408 */ "where_clause_opt", /* 409 */ "signed", /* 410 */ "literal_func", /* 411 */ "literal_list", /* 412 */ "table_alias", /* 413 */ "expr_or_subquery", /* 414 */ "pseudo_column", /* 415 */ "column_reference", /* 416 */ "function_expression", /* 417 */ "case_when_expression", /* 418 */ "star_func", /* 419 */ "star_func_para_list", /* 420 */ "noarg_func", /* 421 */ "other_para_list", /* 422 */ "star_func_para", /* 423 */ "when_then_list", /* 424 */ "case_when_else_opt", /* 425 */ "common_expression", /* 426 */ "when_then_expr", /* 427 */ "predicate", /* 428 */ "compare_op", /* 429 */ "in_op", /* 430 */ "in_predicate_value", /* 431 */ "boolean_value_expression", /* 432 */ "boolean_primary", /* 433 */ "from_clause_opt", /* 434 */ "table_reference_list", /* 435 */ "table_reference", /* 436 */ "table_primary", /* 437 */ "joined_table", /* 438 */ "alias_opt", /* 439 */ "subquery", /* 440 */ "parenthesized_joined_table", /* 441 */ "join_type", /* 442 */ "search_condition", /* 443 */ "query_specification", /* 444 */ "set_quantifier_opt", /* 445 */ "select_list", /* 446 */ "partition_by_clause_opt", /* 447 */ "range_opt", /* 448 */ "every_opt", /* 449 */ "fill_opt", /* 450 */ "twindow_clause_opt", /* 451 */ "group_by_clause_opt", /* 452 */ "having_clause_opt", /* 453 */ "select_item", /* 454 */ "partition_list", /* 455 */ "partition_item", /* 456 */ "fill_mode", /* 457 */ "group_by_list", /* 458 */ "query_expression", /* 459 */ "query_simple", /* 460 */ "order_by_clause_opt", /* 461 */ "slimit_clause_opt", /* 462 */ "limit_clause_opt", /* 463 */ "union_query_expression", /* 464 */ "query_simple_or_subquery", /* 465 */ "sort_specification_list", /* 466 */ "sort_specification", /* 467 */ "ordering_specification_opt", /* 468 */ "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 TO user_name", /* 32 */ "cmd ::= REVOKE privileges ON priv_level 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 ::= topic_name", /* 43 */ "cmd ::= CREATE DNODE dnode_endpoint", /* 44 */ "cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER", /* 45 */ "cmd ::= DROP DNODE NK_INTEGER force_opt", /* 46 */ "cmd ::= DROP DNODE dnode_endpoint force_opt", /* 47 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING", /* 48 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING", /* 49 */ "cmd ::= ALTER ALL DNODES NK_STRING", /* 50 */ "cmd ::= ALTER ALL DNODES NK_STRING NK_STRING", /* 51 */ "dnode_endpoint ::= NK_STRING", /* 52 */ "dnode_endpoint ::= NK_ID", /* 53 */ "dnode_endpoint ::= NK_IPTOKEN", /* 54 */ "force_opt ::=", /* 55 */ "force_opt ::= FORCE", /* 56 */ "cmd ::= ALTER LOCAL NK_STRING", /* 57 */ "cmd ::= ALTER LOCAL NK_STRING NK_STRING", /* 58 */ "cmd ::= CREATE QNODE ON DNODE NK_INTEGER", /* 59 */ "cmd ::= DROP QNODE ON DNODE NK_INTEGER", /* 60 */ "cmd ::= CREATE BNODE ON DNODE NK_INTEGER", /* 61 */ "cmd ::= DROP BNODE ON DNODE NK_INTEGER", /* 62 */ "cmd ::= CREATE SNODE ON DNODE NK_INTEGER", /* 63 */ "cmd ::= DROP SNODE ON DNODE NK_INTEGER", /* 64 */ "cmd ::= CREATE MNODE ON DNODE NK_INTEGER", /* 65 */ "cmd ::= DROP MNODE ON DNODE NK_INTEGER", /* 66 */ "cmd ::= CREATE DATABASE not_exists_opt db_name db_options", /* 67 */ "cmd ::= DROP DATABASE exists_opt db_name", /* 68 */ "cmd ::= USE db_name", /* 69 */ "cmd ::= ALTER DATABASE db_name alter_db_options", /* 70 */ "cmd ::= FLUSH DATABASE db_name", /* 71 */ "cmd ::= TRIM DATABASE db_name speed_opt", /* 72 */ "cmd ::= COMPACT DATABASE db_name", /* 73 */ "not_exists_opt ::= IF NOT EXISTS", /* 74 */ "not_exists_opt ::=", /* 75 */ "exists_opt ::= IF EXISTS", /* 76 */ "exists_opt ::=", /* 77 */ "db_options ::=", /* 78 */ "db_options ::= db_options BUFFER NK_INTEGER", /* 79 */ "db_options ::= db_options CACHEMODEL NK_STRING", /* 80 */ "db_options ::= db_options CACHESIZE NK_INTEGER", /* 81 */ "db_options ::= db_options COMP NK_INTEGER", /* 82 */ "db_options ::= db_options DURATION NK_INTEGER", /* 83 */ "db_options ::= db_options DURATION NK_VARIABLE", /* 84 */ "db_options ::= db_options MAXROWS NK_INTEGER", /* 85 */ "db_options ::= db_options MINROWS NK_INTEGER", /* 86 */ "db_options ::= db_options KEEP integer_list", /* 87 */ "db_options ::= db_options KEEP variable_list", /* 88 */ "db_options ::= db_options PAGES NK_INTEGER", /* 89 */ "db_options ::= db_options PAGESIZE NK_INTEGER", /* 90 */ "db_options ::= db_options TSDB_PAGESIZE NK_INTEGER", /* 91 */ "db_options ::= db_options PRECISION NK_STRING", /* 92 */ "db_options ::= db_options REPLICA NK_INTEGER", /* 93 */ "db_options ::= db_options VGROUPS NK_INTEGER", /* 94 */ "db_options ::= db_options SINGLE_STABLE NK_INTEGER", /* 95 */ "db_options ::= db_options RETENTIONS retention_list", /* 96 */ "db_options ::= db_options SCHEMALESS NK_INTEGER", /* 97 */ "db_options ::= db_options WAL_LEVEL NK_INTEGER", /* 98 */ "db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER", /* 99 */ "db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER", /* 100 */ "db_options ::= db_options WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER", /* 101 */ "db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER", /* 102 */ "db_options ::= db_options WAL_RETENTION_SIZE NK_MINUS NK_INTEGER", /* 103 */ "db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER", /* 104 */ "db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER", /* 105 */ "db_options ::= db_options STT_TRIGGER NK_INTEGER", /* 106 */ "db_options ::= db_options TABLE_PREFIX NK_INTEGER", /* 107 */ "db_options ::= db_options TABLE_SUFFIX NK_INTEGER", /* 108 */ "alter_db_options ::= alter_db_option", /* 109 */ "alter_db_options ::= alter_db_options alter_db_option", /* 110 */ "alter_db_option ::= BUFFER NK_INTEGER", /* 111 */ "alter_db_option ::= CACHEMODEL NK_STRING", /* 112 */ "alter_db_option ::= CACHESIZE NK_INTEGER", /* 113 */ "alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER", /* 114 */ "alter_db_option ::= KEEP integer_list", /* 115 */ "alter_db_option ::= KEEP variable_list", /* 116 */ "alter_db_option ::= PAGES NK_INTEGER", /* 117 */ "alter_db_option ::= REPLICA NK_INTEGER", /* 118 */ "alter_db_option ::= WAL_LEVEL NK_INTEGER", /* 119 */ "alter_db_option ::= STT_TRIGGER NK_INTEGER", /* 120 */ "integer_list ::= NK_INTEGER", /* 121 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", /* 122 */ "variable_list ::= NK_VARIABLE", /* 123 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", /* 124 */ "retention_list ::= retention", /* 125 */ "retention_list ::= retention_list NK_COMMA retention", /* 126 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", /* 127 */ "speed_opt ::=", /* 128 */ "speed_opt ::= MAX_SPEED NK_INTEGER", /* 129 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", /* 130 */ "cmd ::= CREATE TABLE multi_create_clause", /* 131 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", /* 132 */ "cmd ::= DROP TABLE multi_drop_clause", /* 133 */ "cmd ::= DROP STABLE exists_opt full_table_name", /* 134 */ "cmd ::= ALTER TABLE alter_table_clause", /* 135 */ "cmd ::= ALTER STABLE alter_table_clause", /* 136 */ "alter_table_clause ::= full_table_name alter_table_options", /* 137 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", /* 138 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", /* 139 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", /* 140 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", /* 141 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", /* 142 */ "alter_table_clause ::= full_table_name DROP TAG column_name", /* 143 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", /* 144 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", /* 145 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal", /* 146 */ "multi_create_clause ::= create_subtable_clause", /* 147 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", /* 148 */ "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", /* 149 */ "multi_drop_clause ::= drop_table_clause", /* 150 */ "multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause", /* 151 */ "drop_table_clause ::= exists_opt full_table_name", /* 152 */ "specific_cols_opt ::=", /* 153 */ "specific_cols_opt ::= NK_LP col_name_list NK_RP", /* 154 */ "full_table_name ::= table_name", /* 155 */ "full_table_name ::= db_name NK_DOT table_name", /* 156 */ "column_def_list ::= column_def", /* 157 */ "column_def_list ::= column_def_list NK_COMMA column_def", /* 158 */ "column_def ::= column_name type_name", /* 159 */ "column_def ::= column_name type_name COMMENT NK_STRING", /* 160 */ "type_name ::= BOOL", /* 161 */ "type_name ::= TINYINT", /* 162 */ "type_name ::= SMALLINT", /* 163 */ "type_name ::= INT", /* 164 */ "type_name ::= INTEGER", /* 165 */ "type_name ::= BIGINT", /* 166 */ "type_name ::= FLOAT", /* 167 */ "type_name ::= DOUBLE", /* 168 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", /* 169 */ "type_name ::= TIMESTAMP", /* 170 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", /* 171 */ "type_name ::= TINYINT UNSIGNED", /* 172 */ "type_name ::= SMALLINT UNSIGNED", /* 173 */ "type_name ::= INT UNSIGNED", /* 174 */ "type_name ::= BIGINT UNSIGNED", /* 175 */ "type_name ::= JSON", /* 176 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", /* 177 */ "type_name ::= MEDIUMBLOB", /* 178 */ "type_name ::= BLOB", /* 179 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", /* 180 */ "type_name ::= DECIMAL", /* 181 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", /* 182 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", /* 183 */ "tags_def_opt ::=", /* 184 */ "tags_def_opt ::= tags_def", /* 185 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", /* 186 */ "table_options ::=", /* 187 */ "table_options ::= table_options COMMENT NK_STRING", /* 188 */ "table_options ::= table_options MAX_DELAY duration_list", /* 189 */ "table_options ::= table_options WATERMARK duration_list", /* 190 */ "table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP", /* 191 */ "table_options ::= table_options TTL NK_INTEGER", /* 192 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", /* 193 */ "table_options ::= table_options DELETE_MARK duration_list", /* 194 */ "alter_table_options ::= alter_table_option", /* 195 */ "alter_table_options ::= alter_table_options alter_table_option", /* 196 */ "alter_table_option ::= COMMENT NK_STRING", /* 197 */ "alter_table_option ::= TTL NK_INTEGER", /* 198 */ "duration_list ::= duration_literal", /* 199 */ "duration_list ::= duration_list NK_COMMA duration_literal", /* 200 */ "rollup_func_list ::= rollup_func_name", /* 201 */ "rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name", /* 202 */ "rollup_func_name ::= function_name", /* 203 */ "rollup_func_name ::= FIRST", /* 204 */ "rollup_func_name ::= LAST", /* 205 */ "col_name_list ::= col_name", /* 206 */ "col_name_list ::= col_name_list NK_COMMA col_name", /* 207 */ "col_name ::= column_name", /* 208 */ "cmd ::= SHOW DNODES", /* 209 */ "cmd ::= SHOW USERS", /* 210 */ "cmd ::= SHOW USER PRIVILEGES", /* 211 */ "cmd ::= SHOW DATABASES", /* 212 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", /* 213 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", /* 214 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", /* 215 */ "cmd ::= SHOW MNODES", /* 216 */ "cmd ::= SHOW QNODES", /* 217 */ "cmd ::= SHOW FUNCTIONS", /* 218 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", /* 219 */ "cmd ::= SHOW STREAMS", /* 220 */ "cmd ::= SHOW ACCOUNTS", /* 221 */ "cmd ::= SHOW APPS", /* 222 */ "cmd ::= SHOW CONNECTIONS", /* 223 */ "cmd ::= SHOW LICENCES", /* 224 */ "cmd ::= SHOW GRANTS", /* 225 */ "cmd ::= SHOW CREATE DATABASE db_name", /* 226 */ "cmd ::= SHOW CREATE TABLE full_table_name", /* 227 */ "cmd ::= SHOW CREATE STABLE full_table_name", /* 228 */ "cmd ::= SHOW QUERIES", /* 229 */ "cmd ::= SHOW SCORES", /* 230 */ "cmd ::= SHOW TOPICS", /* 231 */ "cmd ::= SHOW VARIABLES", /* 232 */ "cmd ::= SHOW CLUSTER VARIABLES", /* 233 */ "cmd ::= SHOW LOCAL VARIABLES", /* 234 */ "cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt", /* 235 */ "cmd ::= SHOW BNODES", /* 236 */ "cmd ::= SHOW SNODES", /* 237 */ "cmd ::= SHOW CLUSTER", /* 238 */ "cmd ::= SHOW TRANSACTIONS", /* 239 */ "cmd ::= SHOW TABLE DISTRIBUTED full_table_name", /* 240 */ "cmd ::= SHOW CONSUMERS", /* 241 */ "cmd ::= SHOW SUBSCRIPTIONS", /* 242 */ "cmd ::= SHOW TAGS FROM table_name_cond from_db_opt", /* 243 */ "cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt", /* 244 */ "cmd ::= SHOW VNODES NK_INTEGER", /* 245 */ "cmd ::= SHOW VNODES NK_STRING", /* 246 */ "cmd ::= SHOW db_name_cond_opt ALIVE", /* 247 */ "cmd ::= SHOW CLUSTER ALIVE", /* 248 */ "db_name_cond_opt ::=", /* 249 */ "db_name_cond_opt ::= db_name NK_DOT", /* 250 */ "like_pattern_opt ::=", /* 251 */ "like_pattern_opt ::= LIKE NK_STRING", /* 252 */ "table_name_cond ::= table_name", /* 253 */ "from_db_opt ::=", /* 254 */ "from_db_opt ::= FROM db_name", /* 255 */ "tag_list_opt ::=", /* 256 */ "tag_list_opt ::= tag_item", /* 257 */ "tag_list_opt ::= tag_list_opt NK_COMMA tag_item", /* 258 */ "tag_item ::= TBNAME", /* 259 */ "tag_item ::= QTAGS", /* 260 */ "tag_item ::= column_name", /* 261 */ "tag_item ::= column_name column_alias", /* 262 */ "tag_item ::= column_name AS column_alias", /* 263 */ "cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options", /* 264 */ "cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP", /* 265 */ "cmd ::= DROP INDEX exists_opt full_index_name", /* 266 */ "full_index_name ::= index_name", /* 267 */ "full_index_name ::= db_name NK_DOT index_name", /* 268 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt", /* 269 */ "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", /* 270 */ "func_list ::= func", /* 271 */ "func_list ::= func_list NK_COMMA func", /* 272 */ "func ::= sma_func_name NK_LP expression_list NK_RP", /* 273 */ "sma_func_name ::= function_name", /* 274 */ "sma_func_name ::= COUNT", /* 275 */ "sma_func_name ::= FIRST", /* 276 */ "sma_func_name ::= LAST", /* 277 */ "sma_func_name ::= LAST_ROW", /* 278 */ "sma_stream_opt ::=", /* 279 */ "sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal", /* 280 */ "sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal", /* 281 */ "sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal", /* 282 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery", /* 283 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name", /* 284 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name", /* 285 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name", /* 286 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name", /* 287 */ "cmd ::= DROP TOPIC exists_opt topic_name", /* 288 */ "cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name", /* 289 */ "cmd ::= DESC full_table_name", /* 290 */ "cmd ::= DESCRIBE full_table_name", /* 291 */ "cmd ::= RESET QUERY CACHE", /* 292 */ "cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery", /* 293 */ "cmd ::= EXPLAIN analyze_opt explain_options insert_query", /* 294 */ "analyze_opt ::=", /* 295 */ "analyze_opt ::= ANALYZE", /* 296 */ "explain_options ::=", /* 297 */ "explain_options ::= explain_options VERBOSE NK_BOOL", /* 298 */ "explain_options ::= explain_options RATIO NK_FLOAT", /* 299 */ "cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", /* 300 */ "cmd ::= DROP FUNCTION exists_opt function_name", /* 301 */ "agg_func_opt ::=", /* 302 */ "agg_func_opt ::= AGGREGATE", /* 303 */ "bufsize_opt ::=", /* 304 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", /* 305 */ "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", /* 306 */ "cmd ::= DROP STREAM exists_opt stream_name", /* 307 */ "col_list_opt ::=", /* 308 */ "col_list_opt ::= NK_LP col_name_list NK_RP", /* 309 */ "tag_def_or_ref_opt ::=", /* 310 */ "tag_def_or_ref_opt ::= tags_def", /* 311 */ "tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP", /* 312 */ "stream_options ::=", /* 313 */ "stream_options ::= stream_options TRIGGER AT_ONCE", /* 314 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", /* 315 */ "stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal", /* 316 */ "stream_options ::= stream_options WATERMARK duration_literal", /* 317 */ "stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER", /* 318 */ "stream_options ::= stream_options FILL_HISTORY NK_INTEGER", /* 319 */ "stream_options ::= stream_options DELETE_MARK duration_literal", /* 320 */ "stream_options ::= stream_options IGNORE UPDATE NK_INTEGER", /* 321 */ "subtable_opt ::=", /* 322 */ "subtable_opt ::= SUBTABLE NK_LP expression NK_RP", /* 323 */ "cmd ::= KILL CONNECTION NK_INTEGER", /* 324 */ "cmd ::= KILL QUERY NK_STRING", /* 325 */ "cmd ::= KILL TRANSACTION NK_INTEGER", /* 326 */ "cmd ::= BALANCE VGROUP", /* 327 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", /* 328 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", /* 329 */ "cmd ::= SPLIT VGROUP NK_INTEGER", /* 330 */ "dnode_list ::= DNODE NK_INTEGER", /* 331 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", /* 332 */ "cmd ::= DELETE FROM full_table_name where_clause_opt", /* 333 */ "cmd ::= query_or_subquery", /* 334 */ "cmd ::= insert_query", /* 335 */ "insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery", /* 336 */ "insert_query ::= INSERT INTO full_table_name query_or_subquery", /* 337 */ "literal ::= NK_INTEGER", /* 338 */ "literal ::= NK_FLOAT", /* 339 */ "literal ::= NK_STRING", /* 340 */ "literal ::= NK_BOOL", /* 341 */ "literal ::= TIMESTAMP NK_STRING", /* 342 */ "literal ::= duration_literal", /* 343 */ "literal ::= NULL", /* 344 */ "literal ::= NK_QUESTION", /* 345 */ "duration_literal ::= NK_VARIABLE", /* 346 */ "signed ::= NK_INTEGER", /* 347 */ "signed ::= NK_PLUS NK_INTEGER", /* 348 */ "signed ::= NK_MINUS NK_INTEGER", /* 349 */ "signed ::= NK_FLOAT", /* 350 */ "signed ::= NK_PLUS NK_FLOAT", /* 351 */ "signed ::= NK_MINUS NK_FLOAT", /* 352 */ "signed_literal ::= signed", /* 353 */ "signed_literal ::= NK_STRING", /* 354 */ "signed_literal ::= NK_BOOL", /* 355 */ "signed_literal ::= TIMESTAMP NK_STRING", /* 356 */ "signed_literal ::= duration_literal", /* 357 */ "signed_literal ::= NULL", /* 358 */ "signed_literal ::= literal_func", /* 359 */ "signed_literal ::= NK_QUESTION", /* 360 */ "literal_list ::= signed_literal", /* 361 */ "literal_list ::= literal_list NK_COMMA signed_literal", /* 362 */ "db_name ::= NK_ID", /* 363 */ "table_name ::= NK_ID", /* 364 */ "column_name ::= NK_ID", /* 365 */ "function_name ::= NK_ID", /* 366 */ "table_alias ::= NK_ID", /* 367 */ "column_alias ::= NK_ID", /* 368 */ "user_name ::= NK_ID", /* 369 */ "topic_name ::= NK_ID", /* 370 */ "stream_name ::= NK_ID", /* 371 */ "cgroup_name ::= NK_ID", /* 372 */ "index_name ::= NK_ID", /* 373 */ "expr_or_subquery ::= expression", /* 374 */ "expression ::= literal", /* 375 */ "expression ::= pseudo_column", /* 376 */ "expression ::= column_reference", /* 377 */ "expression ::= function_expression", /* 378 */ "expression ::= case_when_expression", /* 379 */ "expression ::= NK_LP expression NK_RP", /* 380 */ "expression ::= NK_PLUS expr_or_subquery", /* 381 */ "expression ::= NK_MINUS expr_or_subquery", /* 382 */ "expression ::= expr_or_subquery NK_PLUS expr_or_subquery", /* 383 */ "expression ::= expr_or_subquery NK_MINUS expr_or_subquery", /* 384 */ "expression ::= expr_or_subquery NK_STAR expr_or_subquery", /* 385 */ "expression ::= expr_or_subquery NK_SLASH expr_or_subquery", /* 386 */ "expression ::= expr_or_subquery NK_REM expr_or_subquery", /* 387 */ "expression ::= column_reference NK_ARROW NK_STRING", /* 388 */ "expression ::= expr_or_subquery NK_BITAND expr_or_subquery", /* 389 */ "expression ::= expr_or_subquery NK_BITOR expr_or_subquery", /* 390 */ "expression_list ::= expr_or_subquery", /* 391 */ "expression_list ::= expression_list NK_COMMA expr_or_subquery", /* 392 */ "column_reference ::= column_name", /* 393 */ "column_reference ::= table_name NK_DOT column_name", /* 394 */ "pseudo_column ::= ROWTS", /* 395 */ "pseudo_column ::= TBNAME", /* 396 */ "pseudo_column ::= table_name NK_DOT TBNAME", /* 397 */ "pseudo_column ::= QSTART", /* 398 */ "pseudo_column ::= QEND", /* 399 */ "pseudo_column ::= QDURATION", /* 400 */ "pseudo_column ::= WSTART", /* 401 */ "pseudo_column ::= WEND", /* 402 */ "pseudo_column ::= WDURATION", /* 403 */ "pseudo_column ::= IROWTS", /* 404 */ "pseudo_column ::= ISFILLED", /* 405 */ "pseudo_column ::= QTAGS", /* 406 */ "function_expression ::= function_name NK_LP expression_list NK_RP", /* 407 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", /* 408 */ "function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP", /* 409 */ "function_expression ::= literal_func", /* 410 */ "literal_func ::= noarg_func NK_LP NK_RP", /* 411 */ "literal_func ::= NOW", /* 412 */ "noarg_func ::= NOW", /* 413 */ "noarg_func ::= TODAY", /* 414 */ "noarg_func ::= TIMEZONE", /* 415 */ "noarg_func ::= DATABASE", /* 416 */ "noarg_func ::= CLIENT_VERSION", /* 417 */ "noarg_func ::= SERVER_VERSION", /* 418 */ "noarg_func ::= SERVER_STATUS", /* 419 */ "noarg_func ::= CURRENT_USER", /* 420 */ "noarg_func ::= USER", /* 421 */ "star_func ::= COUNT", /* 422 */ "star_func ::= FIRST", /* 423 */ "star_func ::= LAST", /* 424 */ "star_func ::= LAST_ROW", /* 425 */ "star_func_para_list ::= NK_STAR", /* 426 */ "star_func_para_list ::= other_para_list", /* 427 */ "other_para_list ::= star_func_para", /* 428 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", /* 429 */ "star_func_para ::= expr_or_subquery", /* 430 */ "star_func_para ::= table_name NK_DOT NK_STAR", /* 431 */ "case_when_expression ::= CASE when_then_list case_when_else_opt END", /* 432 */ "case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END", /* 433 */ "when_then_list ::= when_then_expr", /* 434 */ "when_then_list ::= when_then_list when_then_expr", /* 435 */ "when_then_expr ::= WHEN common_expression THEN common_expression", /* 436 */ "case_when_else_opt ::=", /* 437 */ "case_when_else_opt ::= ELSE common_expression", /* 438 */ "predicate ::= expr_or_subquery compare_op expr_or_subquery", /* 439 */ "predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery", /* 440 */ "predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery", /* 441 */ "predicate ::= expr_or_subquery IS NULL", /* 442 */ "predicate ::= expr_or_subquery IS NOT NULL", /* 443 */ "predicate ::= expr_or_subquery in_op in_predicate_value", /* 444 */ "compare_op ::= NK_LT", /* 445 */ "compare_op ::= NK_GT", /* 446 */ "compare_op ::= NK_LE", /* 447 */ "compare_op ::= NK_GE", /* 448 */ "compare_op ::= NK_NE", /* 449 */ "compare_op ::= NK_EQ", /* 450 */ "compare_op ::= LIKE", /* 451 */ "compare_op ::= NOT LIKE", /* 452 */ "compare_op ::= MATCH", /* 453 */ "compare_op ::= NMATCH", /* 454 */ "compare_op ::= CONTAINS", /* 455 */ "in_op ::= IN", /* 456 */ "in_op ::= NOT IN", /* 457 */ "in_predicate_value ::= NK_LP literal_list NK_RP", /* 458 */ "boolean_value_expression ::= boolean_primary", /* 459 */ "boolean_value_expression ::= NOT boolean_primary", /* 460 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", /* 461 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", /* 462 */ "boolean_primary ::= predicate", /* 463 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", /* 464 */ "common_expression ::= expr_or_subquery", /* 465 */ "common_expression ::= boolean_value_expression", /* 466 */ "from_clause_opt ::=", /* 467 */ "from_clause_opt ::= FROM table_reference_list", /* 468 */ "table_reference_list ::= table_reference", /* 469 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", /* 470 */ "table_reference ::= table_primary", /* 471 */ "table_reference ::= joined_table", /* 472 */ "table_primary ::= table_name alias_opt", /* 473 */ "table_primary ::= db_name NK_DOT table_name alias_opt", /* 474 */ "table_primary ::= subquery alias_opt", /* 475 */ "table_primary ::= parenthesized_joined_table", /* 476 */ "alias_opt ::=", /* 477 */ "alias_opt ::= table_alias", /* 478 */ "alias_opt ::= AS table_alias", /* 479 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", /* 480 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", /* 481 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", /* 482 */ "join_type ::=", /* 483 */ "join_type ::= INNER", /* 484 */ "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", /* 485 */ "set_quantifier_opt ::=", /* 486 */ "set_quantifier_opt ::= DISTINCT", /* 487 */ "set_quantifier_opt ::= ALL", /* 488 */ "select_list ::= select_item", /* 489 */ "select_list ::= select_list NK_COMMA select_item", /* 490 */ "select_item ::= NK_STAR", /* 491 */ "select_item ::= common_expression", /* 492 */ "select_item ::= common_expression column_alias", /* 493 */ "select_item ::= common_expression AS column_alias", /* 494 */ "select_item ::= table_name NK_DOT NK_STAR", /* 495 */ "where_clause_opt ::=", /* 496 */ "where_clause_opt ::= WHERE search_condition", /* 497 */ "partition_by_clause_opt ::=", /* 498 */ "partition_by_clause_opt ::= PARTITION BY partition_list", /* 499 */ "partition_list ::= partition_item", /* 500 */ "partition_list ::= partition_list NK_COMMA partition_item", /* 501 */ "partition_item ::= expr_or_subquery", /* 502 */ "partition_item ::= expr_or_subquery column_alias", /* 503 */ "partition_item ::= expr_or_subquery AS column_alias", /* 504 */ "twindow_clause_opt ::=", /* 505 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", /* 506 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP", /* 507 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", /* 508 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", /* 509 */ "twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition", /* 510 */ "sliding_opt ::=", /* 511 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", /* 512 */ "fill_opt ::=", /* 513 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", /* 514 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", /* 515 */ "fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP", /* 516 */ "fill_mode ::= NONE", /* 517 */ "fill_mode ::= PREV", /* 518 */ "fill_mode ::= NULL", /* 519 */ "fill_mode ::= NULL_F", /* 520 */ "fill_mode ::= LINEAR", /* 521 */ "fill_mode ::= NEXT", /* 522 */ "group_by_clause_opt ::=", /* 523 */ "group_by_clause_opt ::= GROUP BY group_by_list", /* 524 */ "group_by_list ::= expr_or_subquery", /* 525 */ "group_by_list ::= group_by_list NK_COMMA expr_or_subquery", /* 526 */ "having_clause_opt ::=", /* 527 */ "having_clause_opt ::= HAVING search_condition", /* 528 */ "range_opt ::=", /* 529 */ "range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP", /* 530 */ "every_opt ::=", /* 531 */ "every_opt ::= EVERY NK_LP duration_literal NK_RP", /* 532 */ "query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt", /* 533 */ "query_simple ::= query_specification", /* 534 */ "query_simple ::= union_query_expression", /* 535 */ "union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery", /* 536 */ "union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery", /* 537 */ "query_simple_or_subquery ::= query_simple", /* 538 */ "query_simple_or_subquery ::= subquery", /* 539 */ "query_or_subquery ::= query_expression", /* 540 */ "query_or_subquery ::= subquery", /* 541 */ "order_by_clause_opt ::=", /* 542 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", /* 543 */ "slimit_clause_opt ::=", /* 544 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", /* 545 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", /* 546 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 547 */ "limit_clause_opt ::=", /* 548 */ "limit_clause_opt ::= LIMIT NK_INTEGER", /* 549 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", /* 550 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 551 */ "subquery ::= NK_LP query_expression NK_RP", /* 552 */ "subquery ::= NK_LP subquery NK_RP", /* 553 */ "search_condition ::= common_expression", /* 554 */ "sort_specification_list ::= sort_specification", /* 555 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", /* 556 */ "sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt", /* 557 */ "ordering_specification_opt ::=", /* 558 */ "ordering_specification_opt ::= ASC", /* 559 */ "ordering_specification_opt ::= DESC", /* 560 */ "null_ordering_opt ::=", /* 561 */ "null_ordering_opt ::= NULLS FIRST", /* 562 */ "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 328: /* cmd */ case 331: /* literal */ case 344: /* db_options */ case 346: /* alter_db_options */ case 352: /* retention */ case 353: /* full_table_name */ case 356: /* table_options */ case 360: /* alter_table_clause */ case 361: /* alter_table_options */ case 364: /* signed_literal */ case 365: /* create_subtable_clause */ case 368: /* drop_table_clause */ case 371: /* column_def */ case 375: /* duration_literal */ case 376: /* rollup_func_name */ case 378: /* col_name */ case 379: /* db_name_cond_opt */ case 380: /* like_pattern_opt */ case 381: /* table_name_cond */ case 382: /* from_db_opt */ case 384: /* tag_item */ case 386: /* full_index_name */ case 387: /* index_options */ case 390: /* sliding_opt */ case 391: /* sma_stream_opt */ case 392: /* func */ case 394: /* query_or_subquery */ case 397: /* explain_options */ case 398: /* insert_query */ case 402: /* stream_options */ case 405: /* subtable_opt */ case 406: /* expression */ case 408: /* where_clause_opt */ case 409: /* signed */ case 410: /* literal_func */ case 413: /* expr_or_subquery */ case 414: /* pseudo_column */ case 415: /* column_reference */ case 416: /* function_expression */ case 417: /* case_when_expression */ case 422: /* star_func_para */ case 424: /* case_when_else_opt */ case 425: /* common_expression */ case 426: /* when_then_expr */ case 427: /* predicate */ case 430: /* in_predicate_value */ case 431: /* boolean_value_expression */ case 432: /* boolean_primary */ case 433: /* from_clause_opt */ case 434: /* table_reference_list */ case 435: /* table_reference */ case 436: /* table_primary */ case 437: /* joined_table */ case 439: /* subquery */ case 440: /* parenthesized_joined_table */ case 442: /* search_condition */ case 443: /* query_specification */ case 447: /* range_opt */ case 448: /* every_opt */ case 449: /* fill_opt */ case 450: /* twindow_clause_opt */ case 452: /* having_clause_opt */ case 453: /* select_item */ case 455: /* partition_item */ case 458: /* query_expression */ case 459: /* query_simple */ case 461: /* slimit_clause_opt */ case 462: /* limit_clause_opt */ case 463: /* union_query_expression */ case 464: /* query_simple_or_subquery */ case 466: /* sort_specification */ { nodesDestroyNode((yypminor->yy42)); } break; case 329: /* account_options */ case 330: /* alter_account_options */ case 332: /* alter_account_option */ case 347: /* speed_opt */ case 400: /* bufsize_opt */ { } break; case 333: /* user_name */ case 336: /* priv_level */ case 339: /* db_name */ case 340: /* topic_name */ case 341: /* dnode_endpoint */ case 362: /* column_name */ case 370: /* table_name */ case 377: /* function_name */ case 385: /* column_alias */ case 388: /* index_name */ case 393: /* sma_func_name */ case 395: /* cgroup_name */ case 401: /* stream_name */ case 412: /* table_alias */ case 418: /* star_func */ case 420: /* noarg_func */ case 438: /* alias_opt */ { } break; case 334: /* sysinfo_opt */ { } break; case 335: /* privileges */ case 337: /* priv_type_list */ case 338: /* priv_type */ { } break; case 342: /* force_opt */ case 343: /* not_exists_opt */ case 345: /* exists_opt */ case 396: /* analyze_opt */ case 399: /* agg_func_opt */ case 444: /* set_quantifier_opt */ { } break; case 348: /* integer_list */ case 349: /* variable_list */ case 350: /* retention_list */ case 354: /* column_def_list */ case 355: /* tags_def_opt */ case 357: /* multi_create_clause */ case 358: /* tags_def */ case 359: /* multi_drop_clause */ case 366: /* specific_cols_opt */ case 367: /* expression_list */ case 369: /* col_name_list */ case 372: /* duration_list */ case 373: /* rollup_func_list */ case 383: /* tag_list_opt */ case 389: /* func_list */ case 403: /* col_list_opt */ case 404: /* tag_def_or_ref_opt */ case 407: /* dnode_list */ case 411: /* literal_list */ case 419: /* star_func_para_list */ case 421: /* other_para_list */ case 423: /* when_then_list */ case 445: /* select_list */ case 446: /* partition_by_clause_opt */ case 451: /* group_by_clause_opt */ case 454: /* partition_list */ case 457: /* group_by_list */ case 460: /* order_by_clause_opt */ case 465: /* sort_specification_list */ { nodesDestroyList((yypminor->yy110)); } break; case 351: /* alter_db_option */ case 374: /* alter_table_option */ { } break; case 363: /* type_name */ { } break; case 428: /* compare_op */ case 429: /* in_op */ { } break; case 441: /* join_type */ { } break; case 456: /* fill_mode */ { } break; case 467: /* ordering_specification_opt */ { } break; case 468: /* 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[] = { { 328, -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ { 328, -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { 329, 0 }, /* (2) account_options ::= */ { 329, -3 }, /* (3) account_options ::= account_options PPS literal */ { 329, -3 }, /* (4) account_options ::= account_options TSERIES literal */ { 329, -3 }, /* (5) account_options ::= account_options STORAGE literal */ { 329, -3 }, /* (6) account_options ::= account_options STREAMS literal */ { 329, -3 }, /* (7) account_options ::= account_options QTIME literal */ { 329, -3 }, /* (8) account_options ::= account_options DBS literal */ { 329, -3 }, /* (9) account_options ::= account_options USERS literal */ { 329, -3 }, /* (10) account_options ::= account_options CONNS literal */ { 329, -3 }, /* (11) account_options ::= account_options STATE literal */ { 330, -1 }, /* (12) alter_account_options ::= alter_account_option */ { 330, -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */ { 332, -2 }, /* (14) alter_account_option ::= PASS literal */ { 332, -2 }, /* (15) alter_account_option ::= PPS literal */ { 332, -2 }, /* (16) alter_account_option ::= TSERIES literal */ { 332, -2 }, /* (17) alter_account_option ::= STORAGE literal */ { 332, -2 }, /* (18) alter_account_option ::= STREAMS literal */ { 332, -2 }, /* (19) alter_account_option ::= QTIME literal */ { 332, -2 }, /* (20) alter_account_option ::= DBS literal */ { 332, -2 }, /* (21) alter_account_option ::= USERS literal */ { 332, -2 }, /* (22) alter_account_option ::= CONNS literal */ { 332, -2 }, /* (23) alter_account_option ::= STATE literal */ { 328, -6 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING sysinfo_opt */ { 328, -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */ { 328, -5 }, /* (26) cmd ::= ALTER USER user_name ENABLE NK_INTEGER */ { 328, -5 }, /* (27) cmd ::= ALTER USER user_name SYSINFO NK_INTEGER */ { 328, -3 }, /* (28) cmd ::= DROP USER user_name */ { 334, 0 }, /* (29) sysinfo_opt ::= */ { 334, -2 }, /* (30) sysinfo_opt ::= SYSINFO NK_INTEGER */ { 328, -6 }, /* (31) cmd ::= GRANT privileges ON priv_level TO user_name */ { 328, -6 }, /* (32) cmd ::= REVOKE privileges ON priv_level FROM user_name */ { 335, -1 }, /* (33) privileges ::= ALL */ { 335, -1 }, /* (34) privileges ::= priv_type_list */ { 335, -1 }, /* (35) privileges ::= SUBSCRIBE */ { 337, -1 }, /* (36) priv_type_list ::= priv_type */ { 337, -3 }, /* (37) priv_type_list ::= priv_type_list NK_COMMA priv_type */ { 338, -1 }, /* (38) priv_type ::= READ */ { 338, -1 }, /* (39) priv_type ::= WRITE */ { 336, -3 }, /* (40) priv_level ::= NK_STAR NK_DOT NK_STAR */ { 336, -3 }, /* (41) priv_level ::= db_name NK_DOT NK_STAR */ { 336, -1 }, /* (42) priv_level ::= topic_name */ { 328, -3 }, /* (43) cmd ::= CREATE DNODE dnode_endpoint */ { 328, -5 }, /* (44) cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER */ { 328, -4 }, /* (45) cmd ::= DROP DNODE NK_INTEGER force_opt */ { 328, -4 }, /* (46) cmd ::= DROP DNODE dnode_endpoint force_opt */ { 328, -4 }, /* (47) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { 328, -5 }, /* (48) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ { 328, -4 }, /* (49) cmd ::= ALTER ALL DNODES NK_STRING */ { 328, -5 }, /* (50) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { 341, -1 }, /* (51) dnode_endpoint ::= NK_STRING */ { 341, -1 }, /* (52) dnode_endpoint ::= NK_ID */ { 341, -1 }, /* (53) dnode_endpoint ::= NK_IPTOKEN */ { 342, 0 }, /* (54) force_opt ::= */ { 342, -1 }, /* (55) force_opt ::= FORCE */ { 328, -3 }, /* (56) cmd ::= ALTER LOCAL NK_STRING */ { 328, -4 }, /* (57) cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { 328, -5 }, /* (58) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (59) cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (60) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (61) cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (62) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (63) cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (64) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (65) cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { 328, -5 }, /* (66) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { 328, -4 }, /* (67) cmd ::= DROP DATABASE exists_opt db_name */ { 328, -2 }, /* (68) cmd ::= USE db_name */ { 328, -4 }, /* (69) cmd ::= ALTER DATABASE db_name alter_db_options */ { 328, -3 }, /* (70) cmd ::= FLUSH DATABASE db_name */ { 328, -4 }, /* (71) cmd ::= TRIM DATABASE db_name speed_opt */ { 328, -3 }, /* (72) cmd ::= COMPACT DATABASE db_name */ { 343, -3 }, /* (73) not_exists_opt ::= IF NOT EXISTS */ { 343, 0 }, /* (74) not_exists_opt ::= */ { 345, -2 }, /* (75) exists_opt ::= IF EXISTS */ { 345, 0 }, /* (76) exists_opt ::= */ { 344, 0 }, /* (77) db_options ::= */ { 344, -3 }, /* (78) db_options ::= db_options BUFFER NK_INTEGER */ { 344, -3 }, /* (79) db_options ::= db_options CACHEMODEL NK_STRING */ { 344, -3 }, /* (80) db_options ::= db_options CACHESIZE NK_INTEGER */ { 344, -3 }, /* (81) db_options ::= db_options COMP NK_INTEGER */ { 344, -3 }, /* (82) db_options ::= db_options DURATION NK_INTEGER */ { 344, -3 }, /* (83) db_options ::= db_options DURATION NK_VARIABLE */ { 344, -3 }, /* (84) db_options ::= db_options MAXROWS NK_INTEGER */ { 344, -3 }, /* (85) db_options ::= db_options MINROWS NK_INTEGER */ { 344, -3 }, /* (86) db_options ::= db_options KEEP integer_list */ { 344, -3 }, /* (87) db_options ::= db_options KEEP variable_list */ { 344, -3 }, /* (88) db_options ::= db_options PAGES NK_INTEGER */ { 344, -3 }, /* (89) db_options ::= db_options PAGESIZE NK_INTEGER */ { 344, -3 }, /* (90) db_options ::= db_options TSDB_PAGESIZE NK_INTEGER */ { 344, -3 }, /* (91) db_options ::= db_options PRECISION NK_STRING */ { 344, -3 }, /* (92) db_options ::= db_options REPLICA NK_INTEGER */ { 344, -3 }, /* (93) db_options ::= db_options VGROUPS NK_INTEGER */ { 344, -3 }, /* (94) db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { 344, -3 }, /* (95) db_options ::= db_options RETENTIONS retention_list */ { 344, -3 }, /* (96) db_options ::= db_options SCHEMALESS NK_INTEGER */ { 344, -3 }, /* (97) db_options ::= db_options WAL_LEVEL NK_INTEGER */ { 344, -3 }, /* (98) db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER */ { 344, -3 }, /* (99) db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER */ { 344, -4 }, /* (100) db_options ::= db_options WAL_RETENTION_PERIOD NK_MINUS NK_INTEGER */ { 344, -3 }, /* (101) db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER */ { 344, -4 }, /* (102) db_options ::= db_options WAL_RETENTION_SIZE NK_MINUS NK_INTEGER */ { 344, -3 }, /* (103) db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER */ { 344, -3 }, /* (104) db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER */ { 344, -3 }, /* (105) db_options ::= db_options STT_TRIGGER NK_INTEGER */ { 344, -3 }, /* (106) db_options ::= db_options TABLE_PREFIX NK_INTEGER */ { 344, -3 }, /* (107) db_options ::= db_options TABLE_SUFFIX NK_INTEGER */ { 346, -1 }, /* (108) alter_db_options ::= alter_db_option */ { 346, -2 }, /* (109) alter_db_options ::= alter_db_options alter_db_option */ { 351, -2 }, /* (110) alter_db_option ::= BUFFER NK_INTEGER */ { 351, -2 }, /* (111) alter_db_option ::= CACHEMODEL NK_STRING */ { 351, -2 }, /* (112) alter_db_option ::= CACHESIZE NK_INTEGER */ { 351, -2 }, /* (113) alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER */ { 351, -2 }, /* (114) alter_db_option ::= KEEP integer_list */ { 351, -2 }, /* (115) alter_db_option ::= KEEP variable_list */ { 351, -2 }, /* (116) alter_db_option ::= PAGES NK_INTEGER */ { 351, -2 }, /* (117) alter_db_option ::= REPLICA NK_INTEGER */ { 351, -2 }, /* (118) alter_db_option ::= WAL_LEVEL NK_INTEGER */ { 351, -2 }, /* (119) alter_db_option ::= STT_TRIGGER NK_INTEGER */ { 348, -1 }, /* (120) integer_list ::= NK_INTEGER */ { 348, -3 }, /* (121) integer_list ::= integer_list NK_COMMA NK_INTEGER */ { 349, -1 }, /* (122) variable_list ::= NK_VARIABLE */ { 349, -3 }, /* (123) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { 350, -1 }, /* (124) retention_list ::= retention */ { 350, -3 }, /* (125) retention_list ::= retention_list NK_COMMA retention */ { 352, -3 }, /* (126) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { 347, 0 }, /* (127) speed_opt ::= */ { 347, -2 }, /* (128) speed_opt ::= MAX_SPEED NK_INTEGER */ { 328, -9 }, /* (129) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ { 328, -3 }, /* (130) cmd ::= CREATE TABLE multi_create_clause */ { 328, -9 }, /* (131) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ { 328, -3 }, /* (132) cmd ::= DROP TABLE multi_drop_clause */ { 328, -4 }, /* (133) cmd ::= DROP STABLE exists_opt full_table_name */ { 328, -3 }, /* (134) cmd ::= ALTER TABLE alter_table_clause */ { 328, -3 }, /* (135) cmd ::= ALTER STABLE alter_table_clause */ { 360, -2 }, /* (136) alter_table_clause ::= full_table_name alter_table_options */ { 360, -5 }, /* (137) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { 360, -4 }, /* (138) alter_table_clause ::= full_table_name DROP COLUMN column_name */ { 360, -5 }, /* (139) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { 360, -5 }, /* (140) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { 360, -5 }, /* (141) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { 360, -4 }, /* (142) alter_table_clause ::= full_table_name DROP TAG column_name */ { 360, -5 }, /* (143) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { 360, -5 }, /* (144) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { 360, -6 }, /* (145) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ { 357, -1 }, /* (146) multi_create_clause ::= create_subtable_clause */ { 357, -2 }, /* (147) multi_create_clause ::= multi_create_clause create_subtable_clause */ { 365, -10 }, /* (148) 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 */ { 359, -1 }, /* (149) multi_drop_clause ::= drop_table_clause */ { 359, -3 }, /* (150) multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ { 368, -2 }, /* (151) drop_table_clause ::= exists_opt full_table_name */ { 366, 0 }, /* (152) specific_cols_opt ::= */ { 366, -3 }, /* (153) specific_cols_opt ::= NK_LP col_name_list NK_RP */ { 353, -1 }, /* (154) full_table_name ::= table_name */ { 353, -3 }, /* (155) full_table_name ::= db_name NK_DOT table_name */ { 354, -1 }, /* (156) column_def_list ::= column_def */ { 354, -3 }, /* (157) column_def_list ::= column_def_list NK_COMMA column_def */ { 371, -2 }, /* (158) column_def ::= column_name type_name */ { 371, -4 }, /* (159) column_def ::= column_name type_name COMMENT NK_STRING */ { 363, -1 }, /* (160) type_name ::= BOOL */ { 363, -1 }, /* (161) type_name ::= TINYINT */ { 363, -1 }, /* (162) type_name ::= SMALLINT */ { 363, -1 }, /* (163) type_name ::= INT */ { 363, -1 }, /* (164) type_name ::= INTEGER */ { 363, -1 }, /* (165) type_name ::= BIGINT */ { 363, -1 }, /* (166) type_name ::= FLOAT */ { 363, -1 }, /* (167) type_name ::= DOUBLE */ { 363, -4 }, /* (168) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { 363, -1 }, /* (169) type_name ::= TIMESTAMP */ { 363, -4 }, /* (170) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { 363, -2 }, /* (171) type_name ::= TINYINT UNSIGNED */ { 363, -2 }, /* (172) type_name ::= SMALLINT UNSIGNED */ { 363, -2 }, /* (173) type_name ::= INT UNSIGNED */ { 363, -2 }, /* (174) type_name ::= BIGINT UNSIGNED */ { 363, -1 }, /* (175) type_name ::= JSON */ { 363, -4 }, /* (176) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { 363, -1 }, /* (177) type_name ::= MEDIUMBLOB */ { 363, -1 }, /* (178) type_name ::= BLOB */ { 363, -4 }, /* (179) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { 363, -1 }, /* (180) type_name ::= DECIMAL */ { 363, -4 }, /* (181) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { 363, -6 }, /* (182) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { 355, 0 }, /* (183) tags_def_opt ::= */ { 355, -1 }, /* (184) tags_def_opt ::= tags_def */ { 358, -4 }, /* (185) tags_def ::= TAGS NK_LP column_def_list NK_RP */ { 356, 0 }, /* (186) table_options ::= */ { 356, -3 }, /* (187) table_options ::= table_options COMMENT NK_STRING */ { 356, -3 }, /* (188) table_options ::= table_options MAX_DELAY duration_list */ { 356, -3 }, /* (189) table_options ::= table_options WATERMARK duration_list */ { 356, -5 }, /* (190) table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ { 356, -3 }, /* (191) table_options ::= table_options TTL NK_INTEGER */ { 356, -5 }, /* (192) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { 356, -3 }, /* (193) table_options ::= table_options DELETE_MARK duration_list */ { 361, -1 }, /* (194) alter_table_options ::= alter_table_option */ { 361, -2 }, /* (195) alter_table_options ::= alter_table_options alter_table_option */ { 374, -2 }, /* (196) alter_table_option ::= COMMENT NK_STRING */ { 374, -2 }, /* (197) alter_table_option ::= TTL NK_INTEGER */ { 372, -1 }, /* (198) duration_list ::= duration_literal */ { 372, -3 }, /* (199) duration_list ::= duration_list NK_COMMA duration_literal */ { 373, -1 }, /* (200) rollup_func_list ::= rollup_func_name */ { 373, -3 }, /* (201) rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ { 376, -1 }, /* (202) rollup_func_name ::= function_name */ { 376, -1 }, /* (203) rollup_func_name ::= FIRST */ { 376, -1 }, /* (204) rollup_func_name ::= LAST */ { 369, -1 }, /* (205) col_name_list ::= col_name */ { 369, -3 }, /* (206) col_name_list ::= col_name_list NK_COMMA col_name */ { 378, -1 }, /* (207) col_name ::= column_name */ { 328, -2 }, /* (208) cmd ::= SHOW DNODES */ { 328, -2 }, /* (209) cmd ::= SHOW USERS */ { 328, -3 }, /* (210) cmd ::= SHOW USER PRIVILEGES */ { 328, -2 }, /* (211) cmd ::= SHOW DATABASES */ { 328, -4 }, /* (212) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { 328, -4 }, /* (213) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { 328, -3 }, /* (214) cmd ::= SHOW db_name_cond_opt VGROUPS */ { 328, -2 }, /* (215) cmd ::= SHOW MNODES */ { 328, -2 }, /* (216) cmd ::= SHOW QNODES */ { 328, -2 }, /* (217) cmd ::= SHOW FUNCTIONS */ { 328, -5 }, /* (218) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { 328, -2 }, /* (219) cmd ::= SHOW STREAMS */ { 328, -2 }, /* (220) cmd ::= SHOW ACCOUNTS */ { 328, -2 }, /* (221) cmd ::= SHOW APPS */ { 328, -2 }, /* (222) cmd ::= SHOW CONNECTIONS */ { 328, -2 }, /* (223) cmd ::= SHOW LICENCES */ { 328, -2 }, /* (224) cmd ::= SHOW GRANTS */ { 328, -4 }, /* (225) cmd ::= SHOW CREATE DATABASE db_name */ { 328, -4 }, /* (226) cmd ::= SHOW CREATE TABLE full_table_name */ { 328, -4 }, /* (227) cmd ::= SHOW CREATE STABLE full_table_name */ { 328, -2 }, /* (228) cmd ::= SHOW QUERIES */ { 328, -2 }, /* (229) cmd ::= SHOW SCORES */ { 328, -2 }, /* (230) cmd ::= SHOW TOPICS */ { 328, -2 }, /* (231) cmd ::= SHOW VARIABLES */ { 328, -3 }, /* (232) cmd ::= SHOW CLUSTER VARIABLES */ { 328, -3 }, /* (233) cmd ::= SHOW LOCAL VARIABLES */ { 328, -5 }, /* (234) cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ { 328, -2 }, /* (235) cmd ::= SHOW BNODES */ { 328, -2 }, /* (236) cmd ::= SHOW SNODES */ { 328, -2 }, /* (237) cmd ::= SHOW CLUSTER */ { 328, -2 }, /* (238) cmd ::= SHOW TRANSACTIONS */ { 328, -4 }, /* (239) cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ { 328, -2 }, /* (240) cmd ::= SHOW CONSUMERS */ { 328, -2 }, /* (241) cmd ::= SHOW SUBSCRIPTIONS */ { 328, -5 }, /* (242) cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ { 328, -7 }, /* (243) cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ { 328, -3 }, /* (244) cmd ::= SHOW VNODES NK_INTEGER */ { 328, -3 }, /* (245) cmd ::= SHOW VNODES NK_STRING */ { 328, -3 }, /* (246) cmd ::= SHOW db_name_cond_opt ALIVE */ { 328, -3 }, /* (247) cmd ::= SHOW CLUSTER ALIVE */ { 379, 0 }, /* (248) db_name_cond_opt ::= */ { 379, -2 }, /* (249) db_name_cond_opt ::= db_name NK_DOT */ { 380, 0 }, /* (250) like_pattern_opt ::= */ { 380, -2 }, /* (251) like_pattern_opt ::= LIKE NK_STRING */ { 381, -1 }, /* (252) table_name_cond ::= table_name */ { 382, 0 }, /* (253) from_db_opt ::= */ { 382, -2 }, /* (254) from_db_opt ::= FROM db_name */ { 383, 0 }, /* (255) tag_list_opt ::= */ { 383, -1 }, /* (256) tag_list_opt ::= tag_item */ { 383, -3 }, /* (257) tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ { 384, -1 }, /* (258) tag_item ::= TBNAME */ { 384, -1 }, /* (259) tag_item ::= QTAGS */ { 384, -1 }, /* (260) tag_item ::= column_name */ { 384, -2 }, /* (261) tag_item ::= column_name column_alias */ { 384, -3 }, /* (262) tag_item ::= column_name AS column_alias */ { 328, -8 }, /* (263) cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ { 328, -9 }, /* (264) cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ { 328, -4 }, /* (265) cmd ::= DROP INDEX exists_opt full_index_name */ { 386, -1 }, /* (266) full_index_name ::= index_name */ { 386, -3 }, /* (267) full_index_name ::= db_name NK_DOT index_name */ { 387, -10 }, /* (268) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ { 387, -12 }, /* (269) 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 */ { 389, -1 }, /* (270) func_list ::= func */ { 389, -3 }, /* (271) func_list ::= func_list NK_COMMA func */ { 392, -4 }, /* (272) func ::= sma_func_name NK_LP expression_list NK_RP */ { 393, -1 }, /* (273) sma_func_name ::= function_name */ { 393, -1 }, /* (274) sma_func_name ::= COUNT */ { 393, -1 }, /* (275) sma_func_name ::= FIRST */ { 393, -1 }, /* (276) sma_func_name ::= LAST */ { 393, -1 }, /* (277) sma_func_name ::= LAST_ROW */ { 391, 0 }, /* (278) sma_stream_opt ::= */ { 391, -3 }, /* (279) sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ { 391, -3 }, /* (280) sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ { 391, -3 }, /* (281) sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ { 328, -6 }, /* (282) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ { 328, -7 }, /* (283) cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ { 328, -9 }, /* (284) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ { 328, -7 }, /* (285) cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ { 328, -9 }, /* (286) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ { 328, -4 }, /* (287) cmd ::= DROP TOPIC exists_opt topic_name */ { 328, -7 }, /* (288) cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ { 328, -2 }, /* (289) cmd ::= DESC full_table_name */ { 328, -2 }, /* (290) cmd ::= DESCRIBE full_table_name */ { 328, -3 }, /* (291) cmd ::= RESET QUERY CACHE */ { 328, -4 }, /* (292) cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ { 328, -4 }, /* (293) cmd ::= EXPLAIN analyze_opt explain_options insert_query */ { 396, 0 }, /* (294) analyze_opt ::= */ { 396, -1 }, /* (295) analyze_opt ::= ANALYZE */ { 397, 0 }, /* (296) explain_options ::= */ { 397, -3 }, /* (297) explain_options ::= explain_options VERBOSE NK_BOOL */ { 397, -3 }, /* (298) explain_options ::= explain_options RATIO NK_FLOAT */ { 328, -10 }, /* (299) cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ { 328, -4 }, /* (300) cmd ::= DROP FUNCTION exists_opt function_name */ { 399, 0 }, /* (301) agg_func_opt ::= */ { 399, -1 }, /* (302) agg_func_opt ::= AGGREGATE */ { 400, 0 }, /* (303) bufsize_opt ::= */ { 400, -2 }, /* (304) bufsize_opt ::= BUFSIZE NK_INTEGER */ { 328, -12 }, /* (305) 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 */ { 328, -4 }, /* (306) cmd ::= DROP STREAM exists_opt stream_name */ { 403, 0 }, /* (307) col_list_opt ::= */ { 403, -3 }, /* (308) col_list_opt ::= NK_LP col_name_list NK_RP */ { 404, 0 }, /* (309) tag_def_or_ref_opt ::= */ { 404, -1 }, /* (310) tag_def_or_ref_opt ::= tags_def */ { 404, -4 }, /* (311) tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ { 402, 0 }, /* (312) stream_options ::= */ { 402, -3 }, /* (313) stream_options ::= stream_options TRIGGER AT_ONCE */ { 402, -3 }, /* (314) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ { 402, -4 }, /* (315) stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ { 402, -3 }, /* (316) stream_options ::= stream_options WATERMARK duration_literal */ { 402, -4 }, /* (317) stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ { 402, -3 }, /* (318) stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ { 402, -3 }, /* (319) stream_options ::= stream_options DELETE_MARK duration_literal */ { 402, -4 }, /* (320) stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ { 405, 0 }, /* (321) subtable_opt ::= */ { 405, -4 }, /* (322) subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ { 328, -3 }, /* (323) cmd ::= KILL CONNECTION NK_INTEGER */ { 328, -3 }, /* (324) cmd ::= KILL QUERY NK_STRING */ { 328, -3 }, /* (325) cmd ::= KILL TRANSACTION NK_INTEGER */ { 328, -2 }, /* (326) cmd ::= BALANCE VGROUP */ { 328, -4 }, /* (327) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { 328, -4 }, /* (328) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { 328, -3 }, /* (329) cmd ::= SPLIT VGROUP NK_INTEGER */ { 407, -2 }, /* (330) dnode_list ::= DNODE NK_INTEGER */ { 407, -3 }, /* (331) dnode_list ::= dnode_list DNODE NK_INTEGER */ { 328, -4 }, /* (332) cmd ::= DELETE FROM full_table_name where_clause_opt */ { 328, -1 }, /* (333) cmd ::= query_or_subquery */ { 328, -1 }, /* (334) cmd ::= insert_query */ { 398, -7 }, /* (335) insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ { 398, -4 }, /* (336) insert_query ::= INSERT INTO full_table_name query_or_subquery */ { 331, -1 }, /* (337) literal ::= NK_INTEGER */ { 331, -1 }, /* (338) literal ::= NK_FLOAT */ { 331, -1 }, /* (339) literal ::= NK_STRING */ { 331, -1 }, /* (340) literal ::= NK_BOOL */ { 331, -2 }, /* (341) literal ::= TIMESTAMP NK_STRING */ { 331, -1 }, /* (342) literal ::= duration_literal */ { 331, -1 }, /* (343) literal ::= NULL */ { 331, -1 }, /* (344) literal ::= NK_QUESTION */ { 375, -1 }, /* (345) duration_literal ::= NK_VARIABLE */ { 409, -1 }, /* (346) signed ::= NK_INTEGER */ { 409, -2 }, /* (347) signed ::= NK_PLUS NK_INTEGER */ { 409, -2 }, /* (348) signed ::= NK_MINUS NK_INTEGER */ { 409, -1 }, /* (349) signed ::= NK_FLOAT */ { 409, -2 }, /* (350) signed ::= NK_PLUS NK_FLOAT */ { 409, -2 }, /* (351) signed ::= NK_MINUS NK_FLOAT */ { 364, -1 }, /* (352) signed_literal ::= signed */ { 364, -1 }, /* (353) signed_literal ::= NK_STRING */ { 364, -1 }, /* (354) signed_literal ::= NK_BOOL */ { 364, -2 }, /* (355) signed_literal ::= TIMESTAMP NK_STRING */ { 364, -1 }, /* (356) signed_literal ::= duration_literal */ { 364, -1 }, /* (357) signed_literal ::= NULL */ { 364, -1 }, /* (358) signed_literal ::= literal_func */ { 364, -1 }, /* (359) signed_literal ::= NK_QUESTION */ { 411, -1 }, /* (360) literal_list ::= signed_literal */ { 411, -3 }, /* (361) literal_list ::= literal_list NK_COMMA signed_literal */ { 339, -1 }, /* (362) db_name ::= NK_ID */ { 370, -1 }, /* (363) table_name ::= NK_ID */ { 362, -1 }, /* (364) column_name ::= NK_ID */ { 377, -1 }, /* (365) function_name ::= NK_ID */ { 412, -1 }, /* (366) table_alias ::= NK_ID */ { 385, -1 }, /* (367) column_alias ::= NK_ID */ { 333, -1 }, /* (368) user_name ::= NK_ID */ { 340, -1 }, /* (369) topic_name ::= NK_ID */ { 401, -1 }, /* (370) stream_name ::= NK_ID */ { 395, -1 }, /* (371) cgroup_name ::= NK_ID */ { 388, -1 }, /* (372) index_name ::= NK_ID */ { 413, -1 }, /* (373) expr_or_subquery ::= expression */ { 406, -1 }, /* (374) expression ::= literal */ { 406, -1 }, /* (375) expression ::= pseudo_column */ { 406, -1 }, /* (376) expression ::= column_reference */ { 406, -1 }, /* (377) expression ::= function_expression */ { 406, -1 }, /* (378) expression ::= case_when_expression */ { 406, -3 }, /* (379) expression ::= NK_LP expression NK_RP */ { 406, -2 }, /* (380) expression ::= NK_PLUS expr_or_subquery */ { 406, -2 }, /* (381) expression ::= NK_MINUS expr_or_subquery */ { 406, -3 }, /* (382) expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ { 406, -3 }, /* (383) expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ { 406, -3 }, /* (384) expression ::= expr_or_subquery NK_STAR expr_or_subquery */ { 406, -3 }, /* (385) expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ { 406, -3 }, /* (386) expression ::= expr_or_subquery NK_REM expr_or_subquery */ { 406, -3 }, /* (387) expression ::= column_reference NK_ARROW NK_STRING */ { 406, -3 }, /* (388) expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ { 406, -3 }, /* (389) expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ { 367, -1 }, /* (390) expression_list ::= expr_or_subquery */ { 367, -3 }, /* (391) expression_list ::= expression_list NK_COMMA expr_or_subquery */ { 415, -1 }, /* (392) column_reference ::= column_name */ { 415, -3 }, /* (393) column_reference ::= table_name NK_DOT column_name */ { 414, -1 }, /* (394) pseudo_column ::= ROWTS */ { 414, -1 }, /* (395) pseudo_column ::= TBNAME */ { 414, -3 }, /* (396) pseudo_column ::= table_name NK_DOT TBNAME */ { 414, -1 }, /* (397) pseudo_column ::= QSTART */ { 414, -1 }, /* (398) pseudo_column ::= QEND */ { 414, -1 }, /* (399) pseudo_column ::= QDURATION */ { 414, -1 }, /* (400) pseudo_column ::= WSTART */ { 414, -1 }, /* (401) pseudo_column ::= WEND */ { 414, -1 }, /* (402) pseudo_column ::= WDURATION */ { 414, -1 }, /* (403) pseudo_column ::= IROWTS */ { 414, -1 }, /* (404) pseudo_column ::= ISFILLED */ { 414, -1 }, /* (405) pseudo_column ::= QTAGS */ { 416, -4 }, /* (406) function_expression ::= function_name NK_LP expression_list NK_RP */ { 416, -4 }, /* (407) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ { 416, -6 }, /* (408) function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ { 416, -1 }, /* (409) function_expression ::= literal_func */ { 410, -3 }, /* (410) literal_func ::= noarg_func NK_LP NK_RP */ { 410, -1 }, /* (411) literal_func ::= NOW */ { 420, -1 }, /* (412) noarg_func ::= NOW */ { 420, -1 }, /* (413) noarg_func ::= TODAY */ { 420, -1 }, /* (414) noarg_func ::= TIMEZONE */ { 420, -1 }, /* (415) noarg_func ::= DATABASE */ { 420, -1 }, /* (416) noarg_func ::= CLIENT_VERSION */ { 420, -1 }, /* (417) noarg_func ::= SERVER_VERSION */ { 420, -1 }, /* (418) noarg_func ::= SERVER_STATUS */ { 420, -1 }, /* (419) noarg_func ::= CURRENT_USER */ { 420, -1 }, /* (420) noarg_func ::= USER */ { 418, -1 }, /* (421) star_func ::= COUNT */ { 418, -1 }, /* (422) star_func ::= FIRST */ { 418, -1 }, /* (423) star_func ::= LAST */ { 418, -1 }, /* (424) star_func ::= LAST_ROW */ { 419, -1 }, /* (425) star_func_para_list ::= NK_STAR */ { 419, -1 }, /* (426) star_func_para_list ::= other_para_list */ { 421, -1 }, /* (427) other_para_list ::= star_func_para */ { 421, -3 }, /* (428) other_para_list ::= other_para_list NK_COMMA star_func_para */ { 422, -1 }, /* (429) star_func_para ::= expr_or_subquery */ { 422, -3 }, /* (430) star_func_para ::= table_name NK_DOT NK_STAR */ { 417, -4 }, /* (431) case_when_expression ::= CASE when_then_list case_when_else_opt END */ { 417, -5 }, /* (432) case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ { 423, -1 }, /* (433) when_then_list ::= when_then_expr */ { 423, -2 }, /* (434) when_then_list ::= when_then_list when_then_expr */ { 426, -4 }, /* (435) when_then_expr ::= WHEN common_expression THEN common_expression */ { 424, 0 }, /* (436) case_when_else_opt ::= */ { 424, -2 }, /* (437) case_when_else_opt ::= ELSE common_expression */ { 427, -3 }, /* (438) predicate ::= expr_or_subquery compare_op expr_or_subquery */ { 427, -5 }, /* (439) predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ { 427, -6 }, /* (440) predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ { 427, -3 }, /* (441) predicate ::= expr_or_subquery IS NULL */ { 427, -4 }, /* (442) predicate ::= expr_or_subquery IS NOT NULL */ { 427, -3 }, /* (443) predicate ::= expr_or_subquery in_op in_predicate_value */ { 428, -1 }, /* (444) compare_op ::= NK_LT */ { 428, -1 }, /* (445) compare_op ::= NK_GT */ { 428, -1 }, /* (446) compare_op ::= NK_LE */ { 428, -1 }, /* (447) compare_op ::= NK_GE */ { 428, -1 }, /* (448) compare_op ::= NK_NE */ { 428, -1 }, /* (449) compare_op ::= NK_EQ */ { 428, -1 }, /* (450) compare_op ::= LIKE */ { 428, -2 }, /* (451) compare_op ::= NOT LIKE */ { 428, -1 }, /* (452) compare_op ::= MATCH */ { 428, -1 }, /* (453) compare_op ::= NMATCH */ { 428, -1 }, /* (454) compare_op ::= CONTAINS */ { 429, -1 }, /* (455) in_op ::= IN */ { 429, -2 }, /* (456) in_op ::= NOT IN */ { 430, -3 }, /* (457) in_predicate_value ::= NK_LP literal_list NK_RP */ { 431, -1 }, /* (458) boolean_value_expression ::= boolean_primary */ { 431, -2 }, /* (459) boolean_value_expression ::= NOT boolean_primary */ { 431, -3 }, /* (460) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { 431, -3 }, /* (461) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { 432, -1 }, /* (462) boolean_primary ::= predicate */ { 432, -3 }, /* (463) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ { 425, -1 }, /* (464) common_expression ::= expr_or_subquery */ { 425, -1 }, /* (465) common_expression ::= boolean_value_expression */ { 433, 0 }, /* (466) from_clause_opt ::= */ { 433, -2 }, /* (467) from_clause_opt ::= FROM table_reference_list */ { 434, -1 }, /* (468) table_reference_list ::= table_reference */ { 434, -3 }, /* (469) table_reference_list ::= table_reference_list NK_COMMA table_reference */ { 435, -1 }, /* (470) table_reference ::= table_primary */ { 435, -1 }, /* (471) table_reference ::= joined_table */ { 436, -2 }, /* (472) table_primary ::= table_name alias_opt */ { 436, -4 }, /* (473) table_primary ::= db_name NK_DOT table_name alias_opt */ { 436, -2 }, /* (474) table_primary ::= subquery alias_opt */ { 436, -1 }, /* (475) table_primary ::= parenthesized_joined_table */ { 438, 0 }, /* (476) alias_opt ::= */ { 438, -1 }, /* (477) alias_opt ::= table_alias */ { 438, -2 }, /* (478) alias_opt ::= AS table_alias */ { 440, -3 }, /* (479) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ { 440, -3 }, /* (480) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ { 437, -6 }, /* (481) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { 441, 0 }, /* (482) join_type ::= */ { 441, -1 }, /* (483) join_type ::= INNER */ { 443, -12 }, /* (484) 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 */ { 444, 0 }, /* (485) set_quantifier_opt ::= */ { 444, -1 }, /* (486) set_quantifier_opt ::= DISTINCT */ { 444, -1 }, /* (487) set_quantifier_opt ::= ALL */ { 445, -1 }, /* (488) select_list ::= select_item */ { 445, -3 }, /* (489) select_list ::= select_list NK_COMMA select_item */ { 453, -1 }, /* (490) select_item ::= NK_STAR */ { 453, -1 }, /* (491) select_item ::= common_expression */ { 453, -2 }, /* (492) select_item ::= common_expression column_alias */ { 453, -3 }, /* (493) select_item ::= common_expression AS column_alias */ { 453, -3 }, /* (494) select_item ::= table_name NK_DOT NK_STAR */ { 408, 0 }, /* (495) where_clause_opt ::= */ { 408, -2 }, /* (496) where_clause_opt ::= WHERE search_condition */ { 446, 0 }, /* (497) partition_by_clause_opt ::= */ { 446, -3 }, /* (498) partition_by_clause_opt ::= PARTITION BY partition_list */ { 454, -1 }, /* (499) partition_list ::= partition_item */ { 454, -3 }, /* (500) partition_list ::= partition_list NK_COMMA partition_item */ { 455, -1 }, /* (501) partition_item ::= expr_or_subquery */ { 455, -2 }, /* (502) partition_item ::= expr_or_subquery column_alias */ { 455, -3 }, /* (503) partition_item ::= expr_or_subquery AS column_alias */ { 450, 0 }, /* (504) twindow_clause_opt ::= */ { 450, -6 }, /* (505) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { 450, -4 }, /* (506) twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ { 450, -6 }, /* (507) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { 450, -8 }, /* (508) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { 450, -7 }, /* (509) twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ { 390, 0 }, /* (510) sliding_opt ::= */ { 390, -4 }, /* (511) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ { 449, 0 }, /* (512) fill_opt ::= */ { 449, -4 }, /* (513) fill_opt ::= FILL NK_LP fill_mode NK_RP */ { 449, -6 }, /* (514) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ { 449, -6 }, /* (515) fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ { 456, -1 }, /* (516) fill_mode ::= NONE */ { 456, -1 }, /* (517) fill_mode ::= PREV */ { 456, -1 }, /* (518) fill_mode ::= NULL */ { 456, -1 }, /* (519) fill_mode ::= NULL_F */ { 456, -1 }, /* (520) fill_mode ::= LINEAR */ { 456, -1 }, /* (521) fill_mode ::= NEXT */ { 451, 0 }, /* (522) group_by_clause_opt ::= */ { 451, -3 }, /* (523) group_by_clause_opt ::= GROUP BY group_by_list */ { 457, -1 }, /* (524) group_by_list ::= expr_or_subquery */ { 457, -3 }, /* (525) group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ { 452, 0 }, /* (526) having_clause_opt ::= */ { 452, -2 }, /* (527) having_clause_opt ::= HAVING search_condition */ { 447, 0 }, /* (528) range_opt ::= */ { 447, -6 }, /* (529) range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ { 448, 0 }, /* (530) every_opt ::= */ { 448, -4 }, /* (531) every_opt ::= EVERY NK_LP duration_literal NK_RP */ { 458, -4 }, /* (532) query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ { 459, -1 }, /* (533) query_simple ::= query_specification */ { 459, -1 }, /* (534) query_simple ::= union_query_expression */ { 463, -4 }, /* (535) union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ { 463, -3 }, /* (536) union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ { 464, -1 }, /* (537) query_simple_or_subquery ::= query_simple */ { 464, -1 }, /* (538) query_simple_or_subquery ::= subquery */ { 394, -1 }, /* (539) query_or_subquery ::= query_expression */ { 394, -1 }, /* (540) query_or_subquery ::= subquery */ { 460, 0 }, /* (541) order_by_clause_opt ::= */ { 460, -3 }, /* (542) order_by_clause_opt ::= ORDER BY sort_specification_list */ { 461, 0 }, /* (543) slimit_clause_opt ::= */ { 461, -2 }, /* (544) slimit_clause_opt ::= SLIMIT NK_INTEGER */ { 461, -4 }, /* (545) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ { 461, -4 }, /* (546) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 462, 0 }, /* (547) limit_clause_opt ::= */ { 462, -2 }, /* (548) limit_clause_opt ::= LIMIT NK_INTEGER */ { 462, -4 }, /* (549) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ { 462, -4 }, /* (550) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 439, -3 }, /* (551) subquery ::= NK_LP query_expression NK_RP */ { 439, -3 }, /* (552) subquery ::= NK_LP subquery NK_RP */ { 442, -1 }, /* (553) search_condition ::= common_expression */ { 465, -1 }, /* (554) sort_specification_list ::= sort_specification */ { 465, -3 }, /* (555) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ { 466, -3 }, /* (556) sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ { 467, 0 }, /* (557) ordering_specification_opt ::= */ { 467, -1 }, /* (558) ordering_specification_opt ::= ASC */ { 467, -1 }, /* (559) ordering_specification_opt ::= DESC */ { 468, 0 }, /* (560) null_ordering_opt ::= */ { 468, -2 }, /* (561) null_ordering_opt ::= NULLS FIRST */ { 468, -2 }, /* (562) 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,329,&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,330,&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,329,&yymsp[-2].minor); { } yy_destructor(yypParser,331,&yymsp[0].minor); } break; case 12: /* alter_account_options ::= alter_account_option */ { yy_destructor(yypParser,332,&yymsp[0].minor); { } } break; case 13: /* alter_account_options ::= alter_account_options alter_account_option */ { yy_destructor(yypParser,330,&yymsp[-1].minor); { } yy_destructor(yypParser,332,&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,331,&yymsp[0].minor); break; case 24: /* cmd ::= CREATE USER user_name PASS NK_STRING sysinfo_opt */ { pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-3].minor.yy225, &yymsp[-1].minor.yy0, yymsp[0].minor.yy705); } break; case 25: /* cmd ::= ALTER USER user_name PASS NK_STRING */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy225, 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.yy225, 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.yy225, TSDB_ALTER_USER_SYSINFO, &yymsp[0].minor.yy0); } break; case 28: /* cmd ::= DROP USER user_name */ { pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy225); } break; case 29: /* sysinfo_opt ::= */ { yymsp[1].minor.yy705 = 1; } break; case 30: /* sysinfo_opt ::= SYSINFO NK_INTEGER */ { yymsp[-1].minor.yy705 = taosStr2Int8(yymsp[0].minor.yy0.z, NULL, 10); } break; case 31: /* cmd ::= GRANT privileges ON priv_level TO user_name */ { pCxt->pRootNode = createGrantStmt(pCxt, yymsp[-4].minor.yy641, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225); } break; case 32: /* cmd ::= REVOKE privileges ON priv_level FROM user_name */ { pCxt->pRootNode = createRevokeStmt(pCxt, yymsp[-4].minor.yy641, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225); } break; case 33: /* privileges ::= ALL */ { yymsp[0].minor.yy641 = PRIVILEGE_TYPE_ALL; } break; case 34: /* privileges ::= priv_type_list */ case 36: /* priv_type_list ::= priv_type */ yytestcase(yyruleno==36); { yylhsminor.yy641 = yymsp[0].minor.yy641; } yymsp[0].minor.yy641 = yylhsminor.yy641; break; case 35: /* privileges ::= SUBSCRIBE */ { yymsp[0].minor.yy641 = PRIVILEGE_TYPE_SUBSCRIBE; } break; case 37: /* priv_type_list ::= priv_type_list NK_COMMA priv_type */ { yylhsminor.yy641 = yymsp[-2].minor.yy641 | yymsp[0].minor.yy641; } yymsp[-2].minor.yy641 = yylhsminor.yy641; break; case 38: /* priv_type ::= READ */ { yymsp[0].minor.yy641 = PRIVILEGE_TYPE_READ; } break; case 39: /* priv_type ::= WRITE */ { yymsp[0].minor.yy641 = PRIVILEGE_TYPE_WRITE; } break; case 40: /* priv_level ::= NK_STAR NK_DOT NK_STAR */ { yylhsminor.yy225 = yymsp[-2].minor.yy0; } yymsp[-2].minor.yy225 = yylhsminor.yy225; break; case 41: /* priv_level ::= db_name NK_DOT NK_STAR */ { yylhsminor.yy225 = yymsp[-2].minor.yy225; } yymsp[-2].minor.yy225 = yylhsminor.yy225; break; case 42: /* priv_level ::= topic_name */ case 273: /* sma_func_name ::= function_name */ yytestcase(yyruleno==273); case 477: /* alias_opt ::= table_alias */ yytestcase(yyruleno==477); { yylhsminor.yy225 = yymsp[0].minor.yy225; } yymsp[0].minor.yy225 = yylhsminor.yy225; break; case 43: /* cmd ::= CREATE DNODE dnode_endpoint */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy225, NULL); } break; case 44: /* cmd ::= CREATE DNODE dnode_endpoint PORT NK_INTEGER */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy0); } break; case 45: /* cmd ::= DROP DNODE NK_INTEGER force_opt */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy103); } break; case 46: /* cmd ::= DROP DNODE dnode_endpoint force_opt */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[-1].minor.yy225, yymsp[0].minor.yy103); } break; case 47: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, NULL); } break; case 48: /* 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 49: /* cmd ::= ALTER ALL DNODES NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[0].minor.yy0, NULL); } break; case 50: /* cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 51: /* dnode_endpoint ::= NK_STRING */ case 52: /* dnode_endpoint ::= NK_ID */ yytestcase(yyruleno==52); case 53: /* dnode_endpoint ::= NK_IPTOKEN */ yytestcase(yyruleno==53); case 274: /* sma_func_name ::= COUNT */ yytestcase(yyruleno==274); case 275: /* sma_func_name ::= FIRST */ yytestcase(yyruleno==275); case 276: /* sma_func_name ::= LAST */ yytestcase(yyruleno==276); case 277: /* sma_func_name ::= LAST_ROW */ yytestcase(yyruleno==277); case 362: /* db_name ::= NK_ID */ yytestcase(yyruleno==362); case 363: /* table_name ::= NK_ID */ yytestcase(yyruleno==363); case 364: /* column_name ::= NK_ID */ yytestcase(yyruleno==364); case 365: /* function_name ::= NK_ID */ yytestcase(yyruleno==365); case 366: /* table_alias ::= NK_ID */ yytestcase(yyruleno==366); case 367: /* column_alias ::= NK_ID */ yytestcase(yyruleno==367); case 368: /* user_name ::= NK_ID */ yytestcase(yyruleno==368); case 369: /* topic_name ::= NK_ID */ yytestcase(yyruleno==369); case 370: /* stream_name ::= NK_ID */ yytestcase(yyruleno==370); case 371: /* cgroup_name ::= NK_ID */ yytestcase(yyruleno==371); case 372: /* index_name ::= NK_ID */ yytestcase(yyruleno==372); case 412: /* noarg_func ::= NOW */ yytestcase(yyruleno==412); case 413: /* noarg_func ::= TODAY */ yytestcase(yyruleno==413); case 414: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==414); case 415: /* noarg_func ::= DATABASE */ yytestcase(yyruleno==415); case 416: /* noarg_func ::= CLIENT_VERSION */ yytestcase(yyruleno==416); case 417: /* noarg_func ::= SERVER_VERSION */ yytestcase(yyruleno==417); case 418: /* noarg_func ::= SERVER_STATUS */ yytestcase(yyruleno==418); case 419: /* noarg_func ::= CURRENT_USER */ yytestcase(yyruleno==419); case 420: /* noarg_func ::= USER */ yytestcase(yyruleno==420); case 421: /* star_func ::= COUNT */ yytestcase(yyruleno==421); case 422: /* star_func ::= FIRST */ yytestcase(yyruleno==422); case 423: /* star_func ::= LAST */ yytestcase(yyruleno==423); case 424: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==424); { yylhsminor.yy225 = yymsp[0].minor.yy0; } yymsp[0].minor.yy225 = yylhsminor.yy225; break; case 54: /* force_opt ::= */ case 74: /* not_exists_opt ::= */ yytestcase(yyruleno==74); case 76: /* exists_opt ::= */ yytestcase(yyruleno==76); case 294: /* analyze_opt ::= */ yytestcase(yyruleno==294); case 301: /* agg_func_opt ::= */ yytestcase(yyruleno==301); case 485: /* set_quantifier_opt ::= */ yytestcase(yyruleno==485); { yymsp[1].minor.yy103 = false; } break; case 55: /* force_opt ::= FORCE */ case 295: /* analyze_opt ::= ANALYZE */ yytestcase(yyruleno==295); case 302: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==302); case 486: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==486); { yymsp[0].minor.yy103 = true; } break; case 56: /* cmd ::= ALTER LOCAL NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 57: /* cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 58: /* cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 59: /* cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 60: /* cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 61: /* cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 62: /* cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 63: /* cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 64: /* cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 65: /* cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 66: /* cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy103, &yymsp[-1].minor.yy225, yymsp[0].minor.yy42); } break; case 67: /* cmd ::= DROP DATABASE exists_opt db_name */ { pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy103, &yymsp[0].minor.yy225); } break; case 68: /* cmd ::= USE db_name */ { pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy225); } break; case 69: /* cmd ::= ALTER DATABASE db_name alter_db_options */ { pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy225, yymsp[0].minor.yy42); } break; case 70: /* cmd ::= FLUSH DATABASE db_name */ { pCxt->pRootNode = createFlushDatabaseStmt(pCxt, &yymsp[0].minor.yy225); } break; case 71: /* cmd ::= TRIM DATABASE db_name speed_opt */ { pCxt->pRootNode = createTrimDatabaseStmt(pCxt, &yymsp[-1].minor.yy225, yymsp[0].minor.yy508); } break; case 72: /* cmd ::= COMPACT DATABASE db_name */ { pCxt->pRootNode = createCompactStmt(pCxt, &yymsp[0].minor.yy225); } break; case 73: /* not_exists_opt ::= IF NOT EXISTS */ { yymsp[-2].minor.yy103 = true; } break; case 75: /* exists_opt ::= IF EXISTS */ { yymsp[-1].minor.yy103 = true; } break; case 77: /* db_options ::= */ { yymsp[1].minor.yy42 = createDefaultDatabaseOptions(pCxt); } break; case 78: /* db_options ::= db_options BUFFER NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_BUFFER, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 79: /* db_options ::= db_options CACHEMODEL NK_STRING */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_CACHEMODEL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 80: /* db_options ::= db_options CACHESIZE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_CACHESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 81: /* db_options ::= db_options COMP NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_COMP, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 82: /* db_options ::= db_options DURATION NK_INTEGER */ case 83: /* db_options ::= db_options DURATION NK_VARIABLE */ yytestcase(yyruleno==83); { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_DAYS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 84: /* db_options ::= db_options MAXROWS NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_MAXROWS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 85: /* db_options ::= db_options MINROWS NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_MINROWS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 86: /* db_options ::= db_options KEEP integer_list */ case 87: /* db_options ::= db_options KEEP variable_list */ yytestcase(yyruleno==87); { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_KEEP, yymsp[0].minor.yy110); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 88: /* db_options ::= db_options PAGES NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_PAGES, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 89: /* db_options ::= db_options PAGESIZE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_PAGESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 90: /* db_options ::= db_options TSDB_PAGESIZE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_TSDB_PAGESIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 91: /* db_options ::= db_options PRECISION NK_STRING */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_PRECISION, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 92: /* db_options ::= db_options REPLICA NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_REPLICA, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 93: /* db_options ::= db_options VGROUPS NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_VGROUPS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 94: /* db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_SINGLE_STABLE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 95: /* db_options ::= db_options RETENTIONS retention_list */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_RETENTIONS, yymsp[0].minor.yy110); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 96: /* db_options ::= db_options SCHEMALESS NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_SCHEMALESS, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 97: /* db_options ::= db_options WAL_LEVEL NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_WAL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 98: /* db_options ::= db_options WAL_FSYNC_PERIOD NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_FSYNC, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 99: /* db_options ::= db_options WAL_RETENTION_PERIOD NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_WAL_RETENTION_PERIOD, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 100: /* 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.yy42 = setDatabaseOption(pCxt, yymsp[-3].minor.yy42, DB_OPTION_WAL_RETENTION_PERIOD, &t); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 101: /* db_options ::= db_options WAL_RETENTION_SIZE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_WAL_RETENTION_SIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 102: /* 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.yy42 = setDatabaseOption(pCxt, yymsp[-3].minor.yy42, DB_OPTION_WAL_RETENTION_SIZE, &t); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 103: /* db_options ::= db_options WAL_ROLL_PERIOD NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_WAL_ROLL_PERIOD, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 104: /* db_options ::= db_options WAL_SEGMENT_SIZE NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_WAL_SEGMENT_SIZE, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 105: /* db_options ::= db_options STT_TRIGGER NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_STT_TRIGGER, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 106: /* db_options ::= db_options TABLE_PREFIX NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_TABLE_PREFIX, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 107: /* db_options ::= db_options TABLE_SUFFIX NK_INTEGER */ { yylhsminor.yy42 = setDatabaseOption(pCxt, yymsp[-2].minor.yy42, DB_OPTION_TABLE_SUFFIX, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 108: /* alter_db_options ::= alter_db_option */ { yylhsminor.yy42 = createAlterDatabaseOptions(pCxt); yylhsminor.yy42 = setAlterDatabaseOption(pCxt, yylhsminor.yy42, &yymsp[0].minor.yy459); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 109: /* alter_db_options ::= alter_db_options alter_db_option */ { yylhsminor.yy42 = setAlterDatabaseOption(pCxt, yymsp[-1].minor.yy42, &yymsp[0].minor.yy459); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 110: /* alter_db_option ::= BUFFER NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_BUFFER; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 111: /* alter_db_option ::= CACHEMODEL NK_STRING */ { yymsp[-1].minor.yy459.type = DB_OPTION_CACHEMODEL; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 112: /* alter_db_option ::= CACHESIZE NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_CACHESIZE; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 113: /* alter_db_option ::= WAL_FSYNC_PERIOD NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 114: /* alter_db_option ::= KEEP integer_list */ case 115: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==115); { yymsp[-1].minor.yy459.type = DB_OPTION_KEEP; yymsp[-1].minor.yy459.pList = yymsp[0].minor.yy110; } break; case 116: /* alter_db_option ::= PAGES NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_PAGES; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 117: /* alter_db_option ::= REPLICA NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 118: /* alter_db_option ::= WAL_LEVEL NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_WAL; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 119: /* alter_db_option ::= STT_TRIGGER NK_INTEGER */ { yymsp[-1].minor.yy459.type = DB_OPTION_STT_TRIGGER; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 120: /* integer_list ::= NK_INTEGER */ { yylhsminor.yy110 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 121: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ case 331: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==331); { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-2].minor.yy110, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy110 = yylhsminor.yy110; break; case 122: /* variable_list ::= NK_VARIABLE */ { yylhsminor.yy110 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 123: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-2].minor.yy110, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy110 = yylhsminor.yy110; break; case 124: /* retention_list ::= retention */ case 146: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==146); case 149: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==149); case 156: /* column_def_list ::= column_def */ yytestcase(yyruleno==156); case 200: /* rollup_func_list ::= rollup_func_name */ yytestcase(yyruleno==200); case 205: /* col_name_list ::= col_name */ yytestcase(yyruleno==205); case 256: /* tag_list_opt ::= tag_item */ yytestcase(yyruleno==256); case 270: /* func_list ::= func */ yytestcase(yyruleno==270); case 360: /* literal_list ::= signed_literal */ yytestcase(yyruleno==360); case 427: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==427); case 433: /* when_then_list ::= when_then_expr */ yytestcase(yyruleno==433); case 488: /* select_list ::= select_item */ yytestcase(yyruleno==488); case 499: /* partition_list ::= partition_item */ yytestcase(yyruleno==499); case 554: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==554); { yylhsminor.yy110 = createNodeList(pCxt, yymsp[0].minor.yy42); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 125: /* retention_list ::= retention_list NK_COMMA retention */ case 150: /* multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ yytestcase(yyruleno==150); case 157: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==157); case 201: /* rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ yytestcase(yyruleno==201); case 206: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==206); case 257: /* tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ yytestcase(yyruleno==257); case 271: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==271); case 361: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==361); case 428: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==428); case 489: /* select_list ::= select_list NK_COMMA select_item */ yytestcase(yyruleno==489); case 500: /* partition_list ::= partition_list NK_COMMA partition_item */ yytestcase(yyruleno==500); case 555: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==555); { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-2].minor.yy110, yymsp[0].minor.yy42); } yymsp[-2].minor.yy110 = yylhsminor.yy110; break; case 126: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { yylhsminor.yy42 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 127: /* speed_opt ::= */ case 303: /* bufsize_opt ::= */ yytestcase(yyruleno==303); { yymsp[1].minor.yy508 = 0; } break; case 128: /* speed_opt ::= MAX_SPEED NK_INTEGER */ case 304: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ yytestcase(yyruleno==304); { yymsp[-1].minor.yy508 = taosStr2Int32(yymsp[0].minor.yy0.z, NULL, 10); } break; case 129: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ case 131: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==131); { pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy103, yymsp[-5].minor.yy42, yymsp[-3].minor.yy110, yymsp[-1].minor.yy110, yymsp[0].minor.yy42); } break; case 130: /* cmd ::= CREATE TABLE multi_create_clause */ { pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy110); } break; case 132: /* cmd ::= DROP TABLE multi_drop_clause */ { pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy110); } break; case 133: /* cmd ::= DROP STABLE exists_opt full_table_name */ { pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy103, yymsp[0].minor.yy42); } break; case 134: /* cmd ::= ALTER TABLE alter_table_clause */ case 333: /* cmd ::= query_or_subquery */ yytestcase(yyruleno==333); case 334: /* cmd ::= insert_query */ yytestcase(yyruleno==334); { pCxt->pRootNode = yymsp[0].minor.yy42; } break; case 135: /* cmd ::= ALTER STABLE alter_table_clause */ { pCxt->pRootNode = setAlterSuperTableType(yymsp[0].minor.yy42); } break; case 136: /* alter_table_clause ::= full_table_name alter_table_options */ { yylhsminor.yy42 = createAlterTableModifyOptions(pCxt, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 137: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy225, yymsp[0].minor.yy448); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 138: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ { yylhsminor.yy42 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy42, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy225); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 139: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy225, yymsp[0].minor.yy448); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 140: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { yylhsminor.yy42 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy225, &yymsp[0].minor.yy225); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 141: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy225, yymsp[0].minor.yy448); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 142: /* alter_table_clause ::= full_table_name DROP TAG column_name */ { yylhsminor.yy42 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy42, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy225); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 143: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy225, yymsp[0].minor.yy448); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 144: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { yylhsminor.yy42 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy225, &yymsp[0].minor.yy225); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 145: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ { yylhsminor.yy42 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy42, &yymsp[-2].minor.yy225, yymsp[0].minor.yy42); } yymsp[-5].minor.yy42 = yylhsminor.yy42; break; case 147: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ case 434: /* when_then_list ::= when_then_list when_then_expr */ yytestcase(yyruleno==434); { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-1].minor.yy110, yymsp[0].minor.yy42); } yymsp[-1].minor.yy110 = yylhsminor.yy110; break; case 148: /* 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.yy42 = createCreateSubTableClause(pCxt, yymsp[-9].minor.yy103, yymsp[-8].minor.yy42, yymsp[-6].minor.yy42, yymsp[-5].minor.yy110, yymsp[-2].minor.yy110, yymsp[0].minor.yy42); } yymsp[-9].minor.yy42 = yylhsminor.yy42; break; case 151: /* drop_table_clause ::= exists_opt full_table_name */ { yylhsminor.yy42 = createDropTableClause(pCxt, yymsp[-1].minor.yy103, yymsp[0].minor.yy42); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 152: /* specific_cols_opt ::= */ case 183: /* tags_def_opt ::= */ yytestcase(yyruleno==183); case 255: /* tag_list_opt ::= */ yytestcase(yyruleno==255); case 307: /* col_list_opt ::= */ yytestcase(yyruleno==307); case 309: /* tag_def_or_ref_opt ::= */ yytestcase(yyruleno==309); case 497: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==497); case 522: /* group_by_clause_opt ::= */ yytestcase(yyruleno==522); case 541: /* order_by_clause_opt ::= */ yytestcase(yyruleno==541); { yymsp[1].minor.yy110 = NULL; } break; case 153: /* specific_cols_opt ::= NK_LP col_name_list NK_RP */ case 308: /* col_list_opt ::= NK_LP col_name_list NK_RP */ yytestcase(yyruleno==308); { yymsp[-2].minor.yy110 = yymsp[-1].minor.yy110; } break; case 154: /* full_table_name ::= table_name */ { yylhsminor.yy42 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy225, NULL); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 155: /* full_table_name ::= db_name NK_DOT table_name */ { yylhsminor.yy42 = createRealTableNode(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225, NULL); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 158: /* column_def ::= column_name type_name */ { yylhsminor.yy42 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy225, yymsp[0].minor.yy448, NULL); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 159: /* column_def ::= column_name type_name COMMENT NK_STRING */ { yylhsminor.yy42 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy225, yymsp[-2].minor.yy448, &yymsp[0].minor.yy0); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 160: /* type_name ::= BOOL */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_BOOL); } break; case 161: /* type_name ::= TINYINT */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_TINYINT); } break; case 162: /* type_name ::= SMALLINT */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_SMALLINT); } break; case 163: /* type_name ::= INT */ case 164: /* type_name ::= INTEGER */ yytestcase(yyruleno==164); { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_INT); } break; case 165: /* type_name ::= BIGINT */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_BIGINT); } break; case 166: /* type_name ::= FLOAT */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_FLOAT); } break; case 167: /* type_name ::= DOUBLE */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_DOUBLE); } break; case 168: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy448 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } break; case 169: /* type_name ::= TIMESTAMP */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } break; case 170: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy448 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } break; case 171: /* type_name ::= TINYINT UNSIGNED */ { yymsp[-1].minor.yy448 = createDataType(TSDB_DATA_TYPE_UTINYINT); } break; case 172: /* type_name ::= SMALLINT UNSIGNED */ { yymsp[-1].minor.yy448 = createDataType(TSDB_DATA_TYPE_USMALLINT); } break; case 173: /* type_name ::= INT UNSIGNED */ { yymsp[-1].minor.yy448 = createDataType(TSDB_DATA_TYPE_UINT); } break; case 174: /* type_name ::= BIGINT UNSIGNED */ { yymsp[-1].minor.yy448 = createDataType(TSDB_DATA_TYPE_UBIGINT); } break; case 175: /* type_name ::= JSON */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_JSON); } break; case 176: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy448 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } break; case 177: /* type_name ::= MEDIUMBLOB */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } break; case 178: /* type_name ::= BLOB */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_BLOB); } break; case 179: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy448 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } break; case 180: /* type_name ::= DECIMAL */ { yymsp[0].minor.yy448 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 181: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy448 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 182: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { yymsp[-5].minor.yy448 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 184: /* tags_def_opt ::= tags_def */ case 310: /* tag_def_or_ref_opt ::= tags_def */ yytestcase(yyruleno==310); case 426: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==426); { yylhsminor.yy110 = yymsp[0].minor.yy110; } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 185: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ case 311: /* tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ yytestcase(yyruleno==311); { yymsp[-3].minor.yy110 = yymsp[-1].minor.yy110; } break; case 186: /* table_options ::= */ { yymsp[1].minor.yy42 = createDefaultTableOptions(pCxt); } break; case 187: /* table_options ::= table_options COMMENT NK_STRING */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-2].minor.yy42, TABLE_OPTION_COMMENT, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 188: /* table_options ::= table_options MAX_DELAY duration_list */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-2].minor.yy42, TABLE_OPTION_MAXDELAY, yymsp[0].minor.yy110); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 189: /* table_options ::= table_options WATERMARK duration_list */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-2].minor.yy42, TABLE_OPTION_WATERMARK, yymsp[0].minor.yy110); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 190: /* table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-4].minor.yy42, TABLE_OPTION_ROLLUP, yymsp[-1].minor.yy110); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 191: /* table_options ::= table_options TTL NK_INTEGER */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-2].minor.yy42, TABLE_OPTION_TTL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 192: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-4].minor.yy42, TABLE_OPTION_SMA, yymsp[-1].minor.yy110); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 193: /* table_options ::= table_options DELETE_MARK duration_list */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-2].minor.yy42, TABLE_OPTION_DELETE_MARK, yymsp[0].minor.yy110); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 194: /* alter_table_options ::= alter_table_option */ { yylhsminor.yy42 = createAlterTableOptions(pCxt); yylhsminor.yy42 = setTableOption(pCxt, yylhsminor.yy42, yymsp[0].minor.yy459.type, &yymsp[0].minor.yy459.val); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 195: /* alter_table_options ::= alter_table_options alter_table_option */ { yylhsminor.yy42 = setTableOption(pCxt, yymsp[-1].minor.yy42, yymsp[0].minor.yy459.type, &yymsp[0].minor.yy459.val); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 196: /* alter_table_option ::= COMMENT NK_STRING */ { yymsp[-1].minor.yy459.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 197: /* alter_table_option ::= TTL NK_INTEGER */ { yymsp[-1].minor.yy459.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy459.val = yymsp[0].minor.yy0; } break; case 198: /* duration_list ::= duration_literal */ case 390: /* expression_list ::= expr_or_subquery */ yytestcase(yyruleno==390); { yylhsminor.yy110 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 199: /* duration_list ::= duration_list NK_COMMA duration_literal */ case 391: /* expression_list ::= expression_list NK_COMMA expr_or_subquery */ yytestcase(yyruleno==391); { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-2].minor.yy110, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } yymsp[-2].minor.yy110 = yylhsminor.yy110; break; case 202: /* rollup_func_name ::= function_name */ { yylhsminor.yy42 = createFunctionNode(pCxt, &yymsp[0].minor.yy225, NULL); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 203: /* rollup_func_name ::= FIRST */ case 204: /* rollup_func_name ::= LAST */ yytestcase(yyruleno==204); case 259: /* tag_item ::= QTAGS */ yytestcase(yyruleno==259); { yylhsminor.yy42 = createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 207: /* col_name ::= column_name */ case 260: /* tag_item ::= column_name */ yytestcase(yyruleno==260); { yylhsminor.yy42 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy225); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 208: /* cmd ::= SHOW DNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT); } break; case 209: /* cmd ::= SHOW USERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT); } break; case 210: /* cmd ::= SHOW USER PRIVILEGES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USER_PRIVILEGES_STMT); } break; case 211: /* cmd ::= SHOW DATABASES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT); } break; case 212: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy42, yymsp[0].minor.yy42, OP_TYPE_LIKE); } break; case 213: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy42, yymsp[0].minor.yy42, OP_TYPE_LIKE); } break; case 214: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy42, NULL, OP_TYPE_LIKE); } break; case 215: /* cmd ::= SHOW MNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT); } break; case 216: /* cmd ::= SHOW QNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT); } break; case 217: /* cmd ::= SHOW FUNCTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT); } break; case 218: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[0].minor.yy42, yymsp[-1].minor.yy42, OP_TYPE_EQUAL); } break; case 219: /* cmd ::= SHOW STREAMS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT); } break; case 220: /* cmd ::= SHOW ACCOUNTS */ { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } break; case 221: /* cmd ::= SHOW APPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT); } break; case 222: /* cmd ::= SHOW CONNECTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT); } break; case 223: /* cmd ::= SHOW LICENCES */ case 224: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==224); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCES_STMT); } break; case 225: /* cmd ::= SHOW CREATE DATABASE db_name */ { pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy225); } break; case 226: /* cmd ::= SHOW CREATE TABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy42); } break; case 227: /* cmd ::= SHOW CREATE STABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy42); } break; case 228: /* cmd ::= SHOW QUERIES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT); } break; case 229: /* cmd ::= SHOW SCORES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT); } break; case 230: /* cmd ::= SHOW TOPICS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT); } break; case 231: /* cmd ::= SHOW VARIABLES */ case 232: /* cmd ::= SHOW CLUSTER VARIABLES */ yytestcase(yyruleno==232); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLES_STMT); } break; case 233: /* cmd ::= SHOW LOCAL VARIABLES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LOCAL_VARIABLES_STMT); } break; case 234: /* 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.yy42); } break; case 235: /* cmd ::= SHOW BNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT); } break; case 236: /* cmd ::= SHOW SNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT); } break; case 237: /* cmd ::= SHOW CLUSTER */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CLUSTER_STMT); } break; case 238: /* cmd ::= SHOW TRANSACTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TRANSACTIONS_STMT); } break; case 239: /* cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ { pCxt->pRootNode = createShowTableDistributedStmt(pCxt, yymsp[0].minor.yy42); } break; case 240: /* cmd ::= SHOW CONSUMERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONSUMERS_STMT); } break; case 241: /* cmd ::= SHOW SUBSCRIPTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SUBSCRIPTIONS_STMT); } break; case 242: /* cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TAGS_STMT, yymsp[0].minor.yy42, yymsp[-1].minor.yy42, OP_TYPE_EQUAL); } break; case 243: /* cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowTableTagsStmt(pCxt, yymsp[-1].minor.yy42, yymsp[0].minor.yy42, yymsp[-3].minor.yy110); } break; case 244: /* cmd ::= SHOW VNODES NK_INTEGER */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0), NULL); } break; case 245: /* cmd ::= SHOW VNODES NK_STRING */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, NULL, createValueNode(pCxt, TSDB_DATA_TYPE_VARCHAR, &yymsp[0].minor.yy0)); } break; case 246: /* cmd ::= SHOW db_name_cond_opt ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, yymsp[-1].minor.yy42, QUERY_NODE_SHOW_DB_ALIVE_STMT); } break; case 247: /* cmd ::= SHOW CLUSTER ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, NULL, QUERY_NODE_SHOW_CLUSTER_ALIVE_STMT); } break; case 248: /* db_name_cond_opt ::= */ case 253: /* from_db_opt ::= */ yytestcase(yyruleno==253); { yymsp[1].minor.yy42 = createDefaultDatabaseCondValue(pCxt); } break; case 249: /* db_name_cond_opt ::= db_name NK_DOT */ { yylhsminor.yy42 = createIdentifierValueNode(pCxt, &yymsp[-1].minor.yy225); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 250: /* like_pattern_opt ::= */ case 321: /* subtable_opt ::= */ yytestcase(yyruleno==321); case 436: /* case_when_else_opt ::= */ yytestcase(yyruleno==436); case 466: /* from_clause_opt ::= */ yytestcase(yyruleno==466); case 495: /* where_clause_opt ::= */ yytestcase(yyruleno==495); case 504: /* twindow_clause_opt ::= */ yytestcase(yyruleno==504); case 510: /* sliding_opt ::= */ yytestcase(yyruleno==510); case 512: /* fill_opt ::= */ yytestcase(yyruleno==512); case 526: /* having_clause_opt ::= */ yytestcase(yyruleno==526); case 528: /* range_opt ::= */ yytestcase(yyruleno==528); case 530: /* every_opt ::= */ yytestcase(yyruleno==530); case 543: /* slimit_clause_opt ::= */ yytestcase(yyruleno==543); case 547: /* limit_clause_opt ::= */ yytestcase(yyruleno==547); { yymsp[1].minor.yy42 = NULL; } break; case 251: /* like_pattern_opt ::= LIKE NK_STRING */ { yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; case 252: /* table_name_cond ::= table_name */ { yylhsminor.yy42 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy225); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 254: /* from_db_opt ::= FROM db_name */ { yymsp[-1].minor.yy42 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy225); } break; case 258: /* tag_item ::= TBNAME */ { yylhsminor.yy42 = setProjectionAlias(pCxt, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL), &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 261: /* tag_item ::= column_name column_alias */ { yylhsminor.yy42 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-1].minor.yy225), &yymsp[0].minor.yy225); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 262: /* tag_item ::= column_name AS column_alias */ { yylhsminor.yy42 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-2].minor.yy225), &yymsp[0].minor.yy225); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 263: /* 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.yy103, yymsp[-3].minor.yy42, yymsp[-1].minor.yy42, NULL, yymsp[0].minor.yy42); } break; case 264: /* 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.yy103, yymsp[-5].minor.yy42, yymsp[-3].minor.yy42, yymsp[-1].minor.yy110, NULL); } break; case 265: /* cmd ::= DROP INDEX exists_opt full_index_name */ { pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-1].minor.yy103, yymsp[0].minor.yy42); } break; case 266: /* full_index_name ::= index_name */ { yylhsminor.yy42 = createRealTableNodeForIndexName(pCxt, NULL, &yymsp[0].minor.yy225); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 267: /* full_index_name ::= db_name NK_DOT index_name */ { yylhsminor.yy42 = createRealTableNodeForIndexName(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 268: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ { yymsp[-9].minor.yy42 = createIndexOption(pCxt, yymsp[-7].minor.yy110, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), NULL, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 269: /* 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.yy42 = createIndexOption(pCxt, yymsp[-9].minor.yy110, releaseRawExprNode(pCxt, yymsp[-5].minor.yy42), releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 272: /* func ::= sma_func_name NK_LP expression_list NK_RP */ { yylhsminor.yy42 = createFunctionNode(pCxt, &yymsp[-3].minor.yy225, yymsp[-1].minor.yy110); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 278: /* sma_stream_opt ::= */ case 312: /* stream_options ::= */ yytestcase(yyruleno==312); { yymsp[1].minor.yy42 = createStreamOptions(pCxt); } break; case 279: /* sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ case 316: /* stream_options ::= stream_options WATERMARK duration_literal */ yytestcase(yyruleno==316); { ((SStreamOptions*)yymsp[-2].minor.yy42)->pWatermark = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 280: /* sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy42)->pDelay = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 281: /* sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ case 319: /* stream_options ::= stream_options DELETE_MARK duration_literal */ yytestcase(yyruleno==319); { ((SStreamOptions*)yymsp[-2].minor.yy42)->pDeleteMark = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 282: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ { pCxt->pRootNode = createCreateTopicStmtUseQuery(pCxt, yymsp[-3].minor.yy103, &yymsp[-2].minor.yy225, yymsp[0].minor.yy42); } break; case 283: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-4].minor.yy103, &yymsp[-3].minor.yy225, &yymsp[0].minor.yy225, false); } break; case 284: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-6].minor.yy103, &yymsp[-5].minor.yy225, &yymsp[0].minor.yy225, true); } break; case 285: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-4].minor.yy103, &yymsp[-3].minor.yy225, yymsp[0].minor.yy42, false); } break; case 286: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-6].minor.yy103, &yymsp[-5].minor.yy225, yymsp[0].minor.yy42, true); } break; case 287: /* cmd ::= DROP TOPIC exists_opt topic_name */ { pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy103, &yymsp[0].minor.yy225); } break; case 288: /* cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ { pCxt->pRootNode = createDropCGroupStmt(pCxt, yymsp[-3].minor.yy103, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225); } break; case 289: /* cmd ::= DESC full_table_name */ case 290: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==290); { pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy42); } break; case 291: /* cmd ::= RESET QUERY CACHE */ { pCxt->pRootNode = createResetQueryCacheStmt(pCxt); } break; case 292: /* cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ case 293: /* cmd ::= EXPLAIN analyze_opt explain_options insert_query */ yytestcase(yyruleno==293); { pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy103, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 296: /* explain_options ::= */ { yymsp[1].minor.yy42 = createDefaultExplainOptions(pCxt); } break; case 297: /* explain_options ::= explain_options VERBOSE NK_BOOL */ { yylhsminor.yy42 = setExplainVerbose(pCxt, yymsp[-2].minor.yy42, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 298: /* explain_options ::= explain_options RATIO NK_FLOAT */ { yylhsminor.yy42 = setExplainRatio(pCxt, yymsp[-2].minor.yy42, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 299: /* cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ { pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-6].minor.yy103, yymsp[-8].minor.yy103, &yymsp[-5].minor.yy225, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy448, yymsp[0].minor.yy508); } break; case 300: /* cmd ::= DROP FUNCTION exists_opt function_name */ { pCxt->pRootNode = createDropFunctionStmt(pCxt, yymsp[-1].minor.yy103, &yymsp[0].minor.yy225); } break; case 305: /* 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.yy103, &yymsp[-8].minor.yy225, yymsp[-5].minor.yy42, yymsp[-7].minor.yy42, yymsp[-3].minor.yy110, yymsp[-2].minor.yy42, yymsp[0].minor.yy42, yymsp[-4].minor.yy110); } break; case 306: /* cmd ::= DROP STREAM exists_opt stream_name */ { pCxt->pRootNode = createDropStreamStmt(pCxt, yymsp[-1].minor.yy103, &yymsp[0].minor.yy225); } break; case 313: /* stream_options ::= stream_options TRIGGER AT_ONCE */ { ((SStreamOptions*)yymsp[-2].minor.yy42)->triggerType = STREAM_TRIGGER_AT_ONCE; yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 314: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ { ((SStreamOptions*)yymsp[-2].minor.yy42)->triggerType = STREAM_TRIGGER_WINDOW_CLOSE; yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 315: /* stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ { ((SStreamOptions*)yymsp[-3].minor.yy42)->triggerType = STREAM_TRIGGER_MAX_DELAY; ((SStreamOptions*)yymsp[-3].minor.yy42)->pDelay = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = yymsp[-3].minor.yy42; } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 317: /* stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ { ((SStreamOptions*)yymsp[-3].minor.yy42)->ignoreExpired = taosStr2Int8(yymsp[0].minor.yy0.z, NULL, 10); yylhsminor.yy42 = yymsp[-3].minor.yy42; } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 318: /* stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ { ((SStreamOptions*)yymsp[-2].minor.yy42)->fillHistory = taosStr2Int8(yymsp[0].minor.yy0.z, NULL, 10); yylhsminor.yy42 = yymsp[-2].minor.yy42; } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 320: /* stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ { ((SStreamOptions*)yymsp[-3].minor.yy42)->ignoreUpdate = taosStr2Int8(yymsp[0].minor.yy0.z, NULL, 10); yylhsminor.yy42 = yymsp[-3].minor.yy42; } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 322: /* subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ case 511: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ yytestcase(yyruleno==511); case 531: /* every_opt ::= EVERY NK_LP duration_literal NK_RP */ yytestcase(yyruleno==531); { yymsp[-3].minor.yy42 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy42); } break; case 323: /* cmd ::= KILL CONNECTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); } break; case 324: /* cmd ::= KILL QUERY NK_STRING */ { pCxt->pRootNode = createKillQueryStmt(pCxt, &yymsp[0].minor.yy0); } break; case 325: /* cmd ::= KILL TRANSACTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_TRANSACTION_STMT, &yymsp[0].minor.yy0); } break; case 326: /* cmd ::= BALANCE VGROUP */ { pCxt->pRootNode = createBalanceVgroupStmt(pCxt); } break; case 327: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 328: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy110); } break; case 329: /* cmd ::= SPLIT VGROUP NK_INTEGER */ { pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); } break; case 330: /* dnode_list ::= DNODE NK_INTEGER */ { yymsp[-1].minor.yy110 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } break; case 332: /* cmd ::= DELETE FROM full_table_name where_clause_opt */ { pCxt->pRootNode = createDeleteStmt(pCxt, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 335: /* insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ { yymsp[-6].minor.yy42 = createInsertStmt(pCxt, yymsp[-4].minor.yy42, yymsp[-2].minor.yy110, yymsp[0].minor.yy42); } break; case 336: /* insert_query ::= INSERT INTO full_table_name query_or_subquery */ { yymsp[-3].minor.yy42 = createInsertStmt(pCxt, yymsp[-1].minor.yy42, NULL, yymsp[0].minor.yy42); } break; case 337: /* literal ::= NK_INTEGER */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 338: /* literal ::= NK_FLOAT */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 339: /* literal ::= NK_STRING */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 340: /* literal ::= NK_BOOL */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 341: /* literal ::= TIMESTAMP NK_STRING */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 342: /* literal ::= duration_literal */ case 352: /* signed_literal ::= signed */ yytestcase(yyruleno==352); case 373: /* expr_or_subquery ::= expression */ yytestcase(yyruleno==373); case 374: /* expression ::= literal */ yytestcase(yyruleno==374); case 375: /* expression ::= pseudo_column */ yytestcase(yyruleno==375); case 376: /* expression ::= column_reference */ yytestcase(yyruleno==376); case 377: /* expression ::= function_expression */ yytestcase(yyruleno==377); case 378: /* expression ::= case_when_expression */ yytestcase(yyruleno==378); case 409: /* function_expression ::= literal_func */ yytestcase(yyruleno==409); case 458: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==458); case 462: /* boolean_primary ::= predicate */ yytestcase(yyruleno==462); case 464: /* common_expression ::= expr_or_subquery */ yytestcase(yyruleno==464); case 465: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==465); case 468: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==468); case 470: /* table_reference ::= table_primary */ yytestcase(yyruleno==470); case 471: /* table_reference ::= joined_table */ yytestcase(yyruleno==471); case 475: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==475); case 533: /* query_simple ::= query_specification */ yytestcase(yyruleno==533); case 534: /* query_simple ::= union_query_expression */ yytestcase(yyruleno==534); case 537: /* query_simple_or_subquery ::= query_simple */ yytestcase(yyruleno==537); case 539: /* query_or_subquery ::= query_expression */ yytestcase(yyruleno==539); { yylhsminor.yy42 = yymsp[0].minor.yy42; } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 343: /* literal ::= NULL */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 344: /* literal ::= NK_QUESTION */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 345: /* duration_literal ::= NK_VARIABLE */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 346: /* signed ::= NK_INTEGER */ { yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 347: /* signed ::= NK_PLUS NK_INTEGER */ { yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } break; case 348: /* 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.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 349: /* signed ::= NK_FLOAT */ { yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 350: /* signed ::= NK_PLUS NK_FLOAT */ { yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } break; case 351: /* 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.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 353: /* signed_literal ::= NK_STRING */ { yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 354: /* signed_literal ::= NK_BOOL */ { yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 355: /* signed_literal ::= TIMESTAMP NK_STRING */ { yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; case 356: /* signed_literal ::= duration_literal */ case 358: /* signed_literal ::= literal_func */ yytestcase(yyruleno==358); case 429: /* star_func_para ::= expr_or_subquery */ yytestcase(yyruleno==429); case 491: /* select_item ::= common_expression */ yytestcase(yyruleno==491); case 501: /* partition_item ::= expr_or_subquery */ yytestcase(yyruleno==501); case 538: /* query_simple_or_subquery ::= subquery */ yytestcase(yyruleno==538); case 540: /* query_or_subquery ::= subquery */ yytestcase(yyruleno==540); case 553: /* search_condition ::= common_expression */ yytestcase(yyruleno==553); { yylhsminor.yy42 = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 357: /* signed_literal ::= NULL */ { yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 359: /* signed_literal ::= NK_QUESTION */ { yylhsminor.yy42 = createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 379: /* expression ::= NK_LP expression NK_RP */ case 463: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==463); case 552: /* subquery ::= NK_LP subquery NK_RP */ yytestcase(yyruleno==552); { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 380: /* expression ::= NK_PLUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 381: /* expression ::= NK_MINUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy42), NULL)); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 382: /* expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 383: /* expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 384: /* expression ::= expr_or_subquery NK_STAR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 385: /* expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 386: /* expression ::= expr_or_subquery NK_REM expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_REM, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 387: /* expression ::= column_reference NK_ARROW NK_STRING */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_JSON_GET_VALUE, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 388: /* expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_BIT_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 389: /* expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_BIT_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 392: /* column_reference ::= column_name */ { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy225, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy225)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 393: /* column_reference ::= table_name NK_DOT column_name */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225, createColumnNode(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy225)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 394: /* pseudo_column ::= ROWTS */ case 395: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==395); case 397: /* pseudo_column ::= QSTART */ yytestcase(yyruleno==397); case 398: /* pseudo_column ::= QEND */ yytestcase(yyruleno==398); case 399: /* pseudo_column ::= QDURATION */ yytestcase(yyruleno==399); case 400: /* pseudo_column ::= WSTART */ yytestcase(yyruleno==400); case 401: /* pseudo_column ::= WEND */ yytestcase(yyruleno==401); case 402: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==402); case 403: /* pseudo_column ::= IROWTS */ yytestcase(yyruleno==403); case 404: /* pseudo_column ::= ISFILLED */ yytestcase(yyruleno==404); case 405: /* pseudo_column ::= QTAGS */ yytestcase(yyruleno==405); case 411: /* literal_func ::= NOW */ yytestcase(yyruleno==411); { yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 396: /* pseudo_column ::= table_name NK_DOT TBNAME */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-2].minor.yy225)))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 406: /* function_expression ::= function_name NK_LP expression_list NK_RP */ case 407: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==407); { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy225, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy225, yymsp[-1].minor.yy110)); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 408: /* function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0, createCastFunctionNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-1].minor.yy448)); } yymsp[-5].minor.yy42 = yylhsminor.yy42; break; case 410: /* literal_func ::= noarg_func NK_LP NK_RP */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-2].minor.yy225, NULL)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 425: /* star_func_para_list ::= NK_STAR */ { yylhsminor.yy110 = createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 430: /* star_func_para ::= table_name NK_DOT NK_STAR */ case 494: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==494); { yylhsminor.yy42 = createColumnNode(pCxt, &yymsp[-2].minor.yy225, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 431: /* case_when_expression ::= CASE when_then_list case_when_else_opt END */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, NULL, yymsp[-2].minor.yy110, yymsp[-1].minor.yy42)); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 432: /* case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-4].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-2].minor.yy110, yymsp[-1].minor.yy42)); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 435: /* when_then_expr ::= WHEN common_expression THEN common_expression */ { yymsp[-3].minor.yy42 = createWhenThenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } break; case 437: /* case_when_else_opt ::= ELSE common_expression */ { yymsp[-1].minor.yy42 = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); } break; case 438: /* predicate ::= expr_or_subquery compare_op expr_or_subquery */ case 443: /* predicate ::= expr_or_subquery in_op in_predicate_value */ yytestcase(yyruleno==443); { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy2, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 439: /* predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy42), releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-4].minor.yy42 = yylhsminor.yy42; break; case 440: /* predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy42), releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-5].minor.yy42 = yylhsminor.yy42; break; case 441: /* predicate ::= expr_or_subquery IS NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), NULL)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 442: /* predicate ::= expr_or_subquery IS NOT NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), NULL)); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 444: /* compare_op ::= NK_LT */ { yymsp[0].minor.yy2 = OP_TYPE_LOWER_THAN; } break; case 445: /* compare_op ::= NK_GT */ { yymsp[0].minor.yy2 = OP_TYPE_GREATER_THAN; } break; case 446: /* compare_op ::= NK_LE */ { yymsp[0].minor.yy2 = OP_TYPE_LOWER_EQUAL; } break; case 447: /* compare_op ::= NK_GE */ { yymsp[0].minor.yy2 = OP_TYPE_GREATER_EQUAL; } break; case 448: /* compare_op ::= NK_NE */ { yymsp[0].minor.yy2 = OP_TYPE_NOT_EQUAL; } break; case 449: /* compare_op ::= NK_EQ */ { yymsp[0].minor.yy2 = OP_TYPE_EQUAL; } break; case 450: /* compare_op ::= LIKE */ { yymsp[0].minor.yy2 = OP_TYPE_LIKE; } break; case 451: /* compare_op ::= NOT LIKE */ { yymsp[-1].minor.yy2 = OP_TYPE_NOT_LIKE; } break; case 452: /* compare_op ::= MATCH */ { yymsp[0].minor.yy2 = OP_TYPE_MATCH; } break; case 453: /* compare_op ::= NMATCH */ { yymsp[0].minor.yy2 = OP_TYPE_NMATCH; } break; case 454: /* compare_op ::= CONTAINS */ { yymsp[0].minor.yy2 = OP_TYPE_JSON_CONTAINS; } break; case 455: /* in_op ::= IN */ { yymsp[0].minor.yy2 = OP_TYPE_IN; } break; case 456: /* in_op ::= NOT IN */ { yymsp[-1].minor.yy2 = OP_TYPE_NOT_IN; } break; case 457: /* in_predicate_value ::= NK_LP literal_list NK_RP */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy110)); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 459: /* boolean_value_expression ::= NOT boolean_primary */ { SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy42), NULL)); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 460: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 461: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 467: /* from_clause_opt ::= FROM table_reference_list */ case 496: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==496); case 527: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==527); { yymsp[-1].minor.yy42 = yymsp[0].minor.yy42; } break; case 469: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ { yylhsminor.yy42 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy42, yymsp[0].minor.yy42, NULL); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 472: /* table_primary ::= table_name alias_opt */ { yylhsminor.yy42 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy225, &yymsp[0].minor.yy225); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 473: /* table_primary ::= db_name NK_DOT table_name alias_opt */ { yylhsminor.yy42 = createRealTableNode(pCxt, &yymsp[-3].minor.yy225, &yymsp[-1].minor.yy225, &yymsp[0].minor.yy225); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 474: /* table_primary ::= subquery alias_opt */ { yylhsminor.yy42 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42), &yymsp[0].minor.yy225); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 476: /* alias_opt ::= */ { yymsp[1].minor.yy225 = nil_token; } break; case 478: /* alias_opt ::= AS table_alias */ { yymsp[-1].minor.yy225 = yymsp[0].minor.yy225; } break; case 479: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ case 480: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==480); { yymsp[-2].minor.yy42 = yymsp[-1].minor.yy42; } break; case 481: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { yylhsminor.yy42 = createJoinTableNode(pCxt, yymsp[-4].minor.yy638, yymsp[-5].minor.yy42, yymsp[-2].minor.yy42, yymsp[0].minor.yy42); } yymsp[-5].minor.yy42 = yylhsminor.yy42; break; case 482: /* join_type ::= */ { yymsp[1].minor.yy638 = JOIN_TYPE_INNER; } break; case 483: /* join_type ::= INNER */ { yymsp[0].minor.yy638 = JOIN_TYPE_INNER; } break; case 484: /* 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.yy42 = createSelectStmt(pCxt, yymsp[-10].minor.yy103, yymsp[-9].minor.yy110, yymsp[-8].minor.yy42); yymsp[-11].minor.yy42 = addWhereClause(pCxt, yymsp[-11].minor.yy42, yymsp[-7].minor.yy42); yymsp[-11].minor.yy42 = addPartitionByClause(pCxt, yymsp[-11].minor.yy42, yymsp[-6].minor.yy110); yymsp[-11].minor.yy42 = addWindowClauseClause(pCxt, yymsp[-11].minor.yy42, yymsp[-2].minor.yy42); yymsp[-11].minor.yy42 = addGroupByClause(pCxt, yymsp[-11].minor.yy42, yymsp[-1].minor.yy110); yymsp[-11].minor.yy42 = addHavingClause(pCxt, yymsp[-11].minor.yy42, yymsp[0].minor.yy42); yymsp[-11].minor.yy42 = addRangeClause(pCxt, yymsp[-11].minor.yy42, yymsp[-5].minor.yy42); yymsp[-11].minor.yy42 = addEveryClause(pCxt, yymsp[-11].minor.yy42, yymsp[-4].minor.yy42); yymsp[-11].minor.yy42 = addFillClause(pCxt, yymsp[-11].minor.yy42, yymsp[-3].minor.yy42); } break; case 487: /* set_quantifier_opt ::= ALL */ { yymsp[0].minor.yy103 = false; } break; case 490: /* select_item ::= NK_STAR */ { yylhsminor.yy42 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy42 = yylhsminor.yy42; break; case 492: /* select_item ::= common_expression column_alias */ case 502: /* partition_item ::= expr_or_subquery column_alias */ yytestcase(yyruleno==502); { yylhsminor.yy42 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42), &yymsp[0].minor.yy225); } yymsp[-1].minor.yy42 = yylhsminor.yy42; break; case 493: /* select_item ::= common_expression AS column_alias */ case 503: /* partition_item ::= expr_or_subquery AS column_alias */ yytestcase(yyruleno==503); { yylhsminor.yy42 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), &yymsp[0].minor.yy225); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 498: /* partition_by_clause_opt ::= PARTITION BY partition_list */ case 523: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==523); case 542: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==542); { yymsp[-2].minor.yy110 = yymsp[0].minor.yy110; } break; case 505: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { yymsp[-5].minor.yy42 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } break; case 506: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ { yymsp[-3].minor.yy42 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } break; case 507: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-5].minor.yy42 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), NULL, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 508: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-7].minor.yy42 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy42), releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; case 509: /* twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ { yymsp[-6].minor.yy42 = createEventWindowNode(pCxt, yymsp[-3].minor.yy42, yymsp[0].minor.yy42); } break; case 513: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ { yymsp[-3].minor.yy42 = createFillNode(pCxt, yymsp[-1].minor.yy410, NULL); } break; case 514: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ { yymsp[-5].minor.yy42 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy110)); } break; case 515: /* fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ { yymsp[-5].minor.yy42 = createFillNode(pCxt, FILL_MODE_VALUE_F, createNodeListNode(pCxt, yymsp[-1].minor.yy110)); } break; case 516: /* fill_mode ::= NONE */ { yymsp[0].minor.yy410 = FILL_MODE_NONE; } break; case 517: /* fill_mode ::= PREV */ { yymsp[0].minor.yy410 = FILL_MODE_PREV; } break; case 518: /* fill_mode ::= NULL */ { yymsp[0].minor.yy410 = FILL_MODE_NULL; } break; case 519: /* fill_mode ::= NULL_F */ { yymsp[0].minor.yy410 = FILL_MODE_NULL_F; } break; case 520: /* fill_mode ::= LINEAR */ { yymsp[0].minor.yy410 = FILL_MODE_LINEAR; } break; case 521: /* fill_mode ::= NEXT */ { yymsp[0].minor.yy410 = FILL_MODE_NEXT; } break; case 524: /* group_by_list ::= expr_or_subquery */ { yylhsminor.yy110 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[0].minor.yy110 = yylhsminor.yy110; break; case 525: /* group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ { yylhsminor.yy110 = addNodeToList(pCxt, yymsp[-2].minor.yy110, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } yymsp[-2].minor.yy110 = yylhsminor.yy110; break; case 529: /* range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ { yymsp[-5].minor.yy42 = createInterpTimeRange(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } break; case 532: /* query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ { yylhsminor.yy42 = addOrderByClause(pCxt, yymsp[-3].minor.yy42, yymsp[-2].minor.yy110); yylhsminor.yy42 = addSlimitClause(pCxt, yylhsminor.yy42, yymsp[-1].minor.yy42); yylhsminor.yy42 = addLimitClause(pCxt, yylhsminor.yy42, yymsp[0].minor.yy42); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 535: /* union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ { yylhsminor.yy42 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy42, yymsp[0].minor.yy42); } yymsp[-3].minor.yy42 = yylhsminor.yy42; break; case 536: /* union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ { yylhsminor.yy42 = createSetOperator(pCxt, SET_OP_TYPE_UNION, yymsp[-2].minor.yy42, yymsp[0].minor.yy42); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 544: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ case 548: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==548); { yymsp[-1].minor.yy42 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 545: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ case 549: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==549); { yymsp[-3].minor.yy42 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; case 546: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ case 550: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==550); { yymsp[-3].minor.yy42 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } break; case 551: /* subquery ::= NK_LP query_expression NK_RP */ { yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy42); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 556: /* sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ { yylhsminor.yy42 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), yymsp[-1].minor.yy106, yymsp[0].minor.yy599); } yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 557: /* ordering_specification_opt ::= */ { yymsp[1].minor.yy106 = ORDER_ASC; } break; case 558: /* ordering_specification_opt ::= ASC */ { yymsp[0].minor.yy106 = ORDER_ASC; } break; case 559: /* ordering_specification_opt ::= DESC */ { yymsp[0].minor.yy106 = ORDER_DESC; } break; case 560: /* null_ordering_opt ::= */ { yymsp[1].minor.yy599 = NULL_ORDER_DEFAULT; } break; case 561: /* null_ordering_opt ::= NULLS FIRST */ { yymsp[-1].minor.yy599 = NULL_ORDER_FIRST; } break; case 562: /* null_ordering_opt ::= NULLS LAST */ { yymsp[-1].minor.yy599 = 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; }