/* ** 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 #include "functionMgt.h" #include "nodes.h" #include "parToken.h" #include "ttokendef.h" #include "parAst.h" /**************** 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 313 #define YYACTIONTYPE unsigned short int #define ParseTOKENTYPE SToken typedef union { int yyinit; ParseTOKENTYPE yy0; SToken yy21; bool yy173; EOrder yy256; EFillMode yy268; SDataType yy288; SAlterOption yy289; EJoinType yy440; EOperatorType yy468; SNodeList* yy476; ENullOrder yy525; SNode* yy564; int32_t yy620; } 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 YYNSTATE 544 #define YYNRULE 408 #define YYNTOKEN 207 #define YY_MAX_SHIFT 543 #define YY_MIN_SHIFTREDUCE 802 #define YY_MAX_SHIFTREDUCE 1209 #define YY_ERROR_ACTION 1210 #define YY_ACCEPT_ACTION 1211 #define YY_NO_ACTION 1212 #define YY_MIN_REDUCE 1213 #define YY_MAX_REDUCE 1620 /************* 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 (1523) static const YYACTIONTYPE yy_action[] = { /* 0 */ 25, 193, 1473, 1322, 255, 446, 1489, 459, 267, 310, /* 10 */ 275, 1422, 31, 29, 1469, 1476, 308, 1413, 1415, 1449, /* 20 */ 264, 1473, 1046, 272, 427, 32, 30, 28, 27, 26, /* 30 */ 1505, 21, 1333, 1469, 1475, 304, 458, 443, 1044, 236, /* 40 */ 1473, 32, 30, 28, 27, 26, 1068, 445, 23, 100, /* 50 */ 11, 1460, 1469, 1475, 1489, 287, 431, 1051, 32, 30, /* 60 */ 28, 27, 26, 31, 29, 1152, 1599, 227, 1490, 1491, /* 70 */ 1494, 264, 215, 1046, 1, 1363, 31, 29, 1505, 130, /* 80 */ 1552, 136, 98, 1597, 264, 443, 1046, 1599, 1166, 1044, /* 90 */ 52, 429, 126, 1545, 1546, 445, 1550, 540, 1549, 1460, /* 100 */ 130, 11, 1044, 96, 1597, 1069, 1211, 50, 1051, 1045, /* 110 */ 49, 1328, 378, 377, 11, 70, 1490, 1491, 1494, 1538, /* 120 */ 458, 1051, 345, 1537, 1534, 1, 1214, 928, 482, 481, /* 130 */ 480, 932, 479, 934, 935, 478, 937, 475, 1, 943, /* 140 */ 472, 945, 946, 469, 466, 1047, 485, 84, 540, 1324, /* 150 */ 83, 82, 81, 80, 79, 78, 77, 76, 75, 280, /* 160 */ 1045, 540, 1050, 1070, 1071, 1096, 1097, 1098, 1099, 1100, /* 170 */ 1101, 1102, 1103, 1045, 12, 1046, 459, 1066, 163, 31, /* 180 */ 29, 116, 369, 1225, 131, 309, 380, 264, 374, 1046, /* 190 */ 1599, 1044, 379, 403, 1460, 97, 1047, 375, 373, 156, /* 200 */ 376, 1333, 154, 130, 371, 1044, 303, 1597, 302, 1047, /* 210 */ 1051, 394, 458, 1050, 1070, 1071, 1096, 1097, 1098, 1099, /* 220 */ 1100, 1101, 1102, 1103, 1051, 417, 1050, 1070, 1071, 1096, /* 230 */ 1097, 1098, 1099, 1100, 1101, 1102, 1103, 404, 459, 1176, /* 240 */ 131, 7, 1599, 31, 29, 444, 131, 72, 1070, 1071, /* 250 */ 540, 264, 459, 1046, 366, 130, 890, 31, 29, 1597, /* 260 */ 1072, 317, 1045, 1333, 540, 264, 12, 1046, 1599, 1044, /* 270 */ 414, 1174, 1175, 1177, 1178, 892, 1045, 1333, 52, 422, /* 280 */ 418, 130, 1489, 1044, 131, 1597, 84, 1599, 1051, 83, /* 290 */ 82, 81, 80, 79, 78, 77, 76, 75, 1047, 1329, /* 300 */ 1598, 331, 1051, 65, 1597, 7, 1505, 32, 30, 28, /* 310 */ 27, 26, 1047, 443, 1505, 1050, 117, 101, 1236, 7, /* 320 */ 1291, 443, 421, 445, 1325, 1489, 1311, 1460, 540, 1050, /* 330 */ 1070, 1071, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, /* 340 */ 1045, 131, 540, 118, 1490, 1491, 1494, 140, 139, 1505, /* 350 */ 235, 131, 1066, 420, 1045, 459, 443, 121, 494, 324, /* 360 */ 459, 1552, 336, 1460, 318, 1067, 445, 427, 1373, 344, /* 370 */ 1460, 337, 1380, 263, 1235, 345, 1047, 188, 254, 1548, /* 380 */ 1333, 432, 1612, 1378, 1309, 1333, 231, 1490, 1491, 1494, /* 390 */ 1047, 496, 100, 1050, 1070, 1071, 1096, 1097, 1098, 1099, /* 400 */ 1100, 1101, 1102, 1103, 28, 27, 26, 1050, 1070, 1071, /* 410 */ 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 459, 1460, /* 420 */ 31, 29, 434, 1380, 268, 98, 1234, 1330, 264, 269, /* 430 */ 1046, 1262, 114, 494, 1378, 127, 1545, 1546, 1410, 1550, /* 440 */ 1335, 536, 535, 1333, 335, 138, 1044, 330, 329, 328, /* 450 */ 327, 326, 59, 323, 322, 321, 320, 316, 315, 314, /* 460 */ 313, 312, 311, 459, 1151, 1051, 32, 30, 28, 27, /* 470 */ 26, 1460, 456, 1326, 1318, 32, 30, 28, 27, 26, /* 480 */ 248, 1320, 1, 516, 515, 514, 513, 279, 1333, 512, /* 490 */ 511, 510, 102, 505, 504, 503, 502, 501, 500, 499, /* 500 */ 498, 108, 1489, 459, 238, 540, 163, 508, 114, 459, /* 510 */ 369, 298, 72, 238, 446, 274, 1336, 1045, 457, 372, /* 520 */ 1423, 1316, 249, 114, 247, 246, 1505, 368, 1333, 1084, /* 530 */ 1213, 1335, 371, 443, 1333, 1073, 277, 1115, 32, 30, /* 540 */ 28, 27, 26, 445, 114, 1292, 1115, 1460, 839, 1117, /* 550 */ 838, 1552, 1335, 1047, 93, 92, 91, 90, 89, 88, /* 560 */ 87, 86, 85, 224, 1490, 1491, 1494, 1121, 840, 1547, /* 570 */ 1050, 1070, 1071, 1096, 1097, 1098, 1099, 1100, 1101, 1102, /* 580 */ 1103, 385, 9, 8, 459, 1116, 1380, 509, 507, 459, /* 590 */ 115, 22, 276, 207, 1116, 221, 393, 1378, 278, 1480, /* 600 */ 497, 1084, 1305, 1120, 1233, 838, 1232, 219, 1265, 1333, /* 610 */ 165, 1478, 1120, 388, 1333, 1380, 1231, 6, 382, 433, /* 620 */ 141, 364, 1230, 1489, 164, 1229, 1414, 24, 262, 1110, /* 630 */ 1111, 1112, 1113, 1114, 1118, 1119, 24, 262, 1110, 1111, /* 640 */ 1112, 1113, 1114, 1118, 1119, 1150, 168, 1505, 1380, 1460, /* 650 */ 42, 1460, 174, 41, 443, 435, 1128, 1228, 1227, 1379, /* 660 */ 380, 1460, 374, 484, 445, 1054, 379, 1460, 1460, 97, /* 670 */ 1460, 375, 373, 431, 376, 1557, 1147, 1489, 1224, 1223, /* 680 */ 1222, 1221, 295, 67, 68, 1490, 1491, 1494, 1538, 1220, /* 690 */ 271, 270, 237, 1534, 392, 9, 8, 297, 1219, 1218, /* 700 */ 1059, 1505, 1460, 1460, 1599, 1217, 438, 390, 430, 1216, /* 710 */ 48, 47, 307, 402, 135, 1252, 1052, 130, 445, 301, /* 720 */ 1226, 1597, 1460, 1460, 1460, 1460, 1460, 244, 1489, 293, /* 730 */ 1053, 289, 285, 132, 1460, 1051, 1057, 381, 69, 1490, /* 740 */ 1491, 1494, 1538, 1460, 1460, 864, 257, 1534, 125, 1159, /* 750 */ 1460, 543, 1505, 190, 1460, 1068, 131, 1147, 158, 430, /* 760 */ 189, 157, 1208, 1209, 865, 212, 410, 1565, 95, 445, /* 770 */ 442, 1489, 1247, 1460, 532, 460, 528, 524, 520, 211, /* 780 */ 415, 160, 162, 1489, 159, 161, 436, 1055, 1245, 69, /* 790 */ 1490, 1491, 1494, 1538, 383, 1505, 1489, 257, 1534, 125, /* 800 */ 340, 1056, 443, 1374, 401, 66, 183, 1505, 205, 106, /* 810 */ 386, 363, 445, 406, 443, 44, 1460, 1568, 1566, 1173, /* 820 */ 1505, 177, 33, 1060, 445, 179, 1122, 443, 1460, 428, /* 830 */ 1506, 1489, 229, 1490, 1491, 1494, 192, 445, 455, 439, /* 840 */ 1063, 1460, 2, 1489, 69, 1490, 1491, 1494, 1538, 1066, /* 850 */ 282, 243, 257, 1534, 1611, 1505, 286, 70, 1490, 1491, /* 860 */ 1494, 1538, 443, 1572, 890, 409, 1535, 1505, 170, 33, /* 870 */ 64, 33, 445, 1081, 443, 1013, 1460, 196, 245, 1022, /* 880 */ 61, 198, 1107, 1030, 445, 167, 94, 104, 1460, 213, /* 890 */ 451, 204, 69, 1490, 1491, 1494, 1538, 319, 1412, 137, /* 900 */ 257, 1534, 1611, 1489, 69, 1490, 1491, 1494, 1538, 325, /* 910 */ 332, 1595, 257, 1534, 1611, 106, 333, 151, 427, 921, /* 920 */ 124, 334, 338, 1556, 339, 1077, 362, 1505, 358, 354, /* 930 */ 350, 150, 44, 464, 443, 1076, 916, 949, 104, 1489, /* 940 */ 143, 105, 953, 100, 445, 959, 341, 106, 1460, 342, /* 950 */ 1489, 958, 32, 30, 28, 27, 26, 53, 1075, 146, /* 960 */ 148, 343, 431, 1505, 70, 1490, 1491, 1494, 1538, 365, /* 970 */ 443, 51, 441, 1534, 1505, 104, 98, 346, 149, 107, /* 980 */ 445, 443, 1074, 427, 1460, 74, 186, 1545, 426, 367, /* 990 */ 425, 445, 1323, 1599, 370, 1460, 153, 1319, 411, 155, /* 1000 */ 230, 1490, 1491, 1494, 1489, 109, 130, 110, 100, 1489, /* 1010 */ 1597, 231, 1490, 1491, 1494, 1321, 147, 1317, 120, 253, /* 1020 */ 144, 111, 408, 112, 396, 395, 397, 405, 1505, 169, /* 1030 */ 398, 407, 423, 1505, 172, 443, 1073, 142, 1489, 416, /* 1040 */ 443, 98, 449, 1579, 1051, 445, 1569, 175, 413, 1460, /* 1050 */ 445, 128, 1545, 1546, 1460, 1550, 256, 261, 178, 419, /* 1060 */ 412, 424, 1505, 5, 1489, 118, 1490, 1491, 1494, 443, /* 1070 */ 231, 1490, 1491, 1494, 4, 1559, 1578, 182, 1206, 445, /* 1080 */ 1147, 123, 99, 1460, 1072, 34, 265, 1553, 1505, 184, /* 1090 */ 185, 258, 440, 437, 1614, 443, 17, 447, 191, 231, /* 1100 */ 1490, 1491, 1494, 1520, 1613, 445, 1489, 452, 1421, 1460, /* 1110 */ 1596, 1489, 448, 200, 1420, 266, 214, 1489, 453, 1334, /* 1120 */ 454, 202, 60, 58, 462, 232, 1490, 1491, 1494, 491, /* 1130 */ 1505, 539, 216, 210, 1306, 1505, 220, 443, 218, 40, /* 1140 */ 222, 1505, 443, 1454, 1453, 1205, 281, 445, 443, 1310, /* 1150 */ 223, 1460, 445, 1450, 283, 284, 1460, 1040, 445, 1489, /* 1160 */ 1041, 133, 1460, 288, 1448, 290, 291, 225, 1490, 1491, /* 1170 */ 1494, 1489, 233, 1490, 1491, 1494, 292, 1447, 226, 1490, /* 1180 */ 1491, 1494, 1446, 1505, 1489, 294, 296, 1437, 134, 299, /* 1190 */ 443, 300, 1025, 1431, 1024, 1505, 1430, 306, 305, 1429, /* 1200 */ 445, 1308, 443, 1428, 1460, 1405, 996, 1404, 1505, 1403, /* 1210 */ 208, 1402, 445, 1489, 490, 443, 1460, 1401, 1400, 1399, /* 1220 */ 234, 1490, 1491, 1494, 1398, 445, 1397, 1396, 1395, 1460, /* 1230 */ 1394, 1393, 1502, 1490, 1491, 1494, 492, 1505, 1392, 1489, /* 1240 */ 1391, 103, 1390, 1389, 443, 1501, 1490, 1491, 1494, 1388, /* 1250 */ 1387, 1386, 1385, 1384, 445, 489, 488, 487, 1460, 486, /* 1260 */ 1383, 998, 208, 1505, 1382, 1489, 490, 1381, 1264, 1445, /* 1270 */ 443, 1439, 1427, 1489, 1500, 1490, 1491, 1494, 1418, 145, /* 1280 */ 445, 1312, 1263, 857, 1460, 1261, 347, 349, 492, 1505, /* 1290 */ 348, 1259, 352, 351, 1257, 355, 443, 1505, 1255, 1489, /* 1300 */ 241, 1490, 1491, 1494, 443, 353, 445, 489, 488, 487, /* 1310 */ 1460, 486, 356, 357, 445, 359, 360, 361, 1460, 1244, /* 1320 */ 1243, 1240, 1314, 1505, 73, 966, 240, 1490, 1491, 1494, /* 1330 */ 443, 964, 508, 1313, 242, 1490, 1491, 1494, 889, 152, /* 1340 */ 445, 1489, 888, 887, 1460, 886, 506, 1253, 883, 882, /* 1350 */ 250, 1248, 251, 384, 1246, 387, 252, 1239, 389, 1238, /* 1360 */ 239, 1490, 1491, 1494, 391, 1505, 71, 1444, 166, 1032, /* 1370 */ 43, 1438, 443, 113, 399, 1426, 1425, 1417, 171, 122, /* 1380 */ 54, 1478, 445, 400, 37, 14, 1460, 3, 176, 33, /* 1390 */ 1172, 173, 15, 56, 38, 35, 10, 8, 119, 180, /* 1400 */ 19, 55, 228, 1490, 1491, 1494, 1194, 1165, 181, 20, /* 1410 */ 1193, 259, 1198, 1416, 1144, 1143, 36, 1197, 260, 1199, /* 1420 */ 16, 450, 203, 1061, 13, 1108, 201, 187, 1082, 129, /* 1430 */ 18, 463, 273, 195, 194, 1170, 197, 199, 45, 57, /* 1440 */ 467, 1477, 470, 39, 473, 61, 476, 927, 961, 957, /* 1450 */ 955, 871, 206, 950, 1260, 461, 465, 878, 877, 947, /* 1460 */ 468, 876, 944, 938, 471, 474, 855, 936, 493, 896, /* 1470 */ 477, 875, 874, 873, 62, 872, 891, 868, 893, 46, /* 1480 */ 942, 63, 867, 866, 941, 209, 483, 863, 495, 862, /* 1490 */ 861, 860, 518, 517, 1258, 522, 940, 939, 521, 1256, /* 1500 */ 519, 523, 525, 526, 527, 1254, 529, 530, 531, 1242, /* 1510 */ 533, 534, 960, 1241, 1237, 537, 538, 1212, 1048, 217, /* 1520 */ 1212, 541, 542, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 276, 277, 255, 235, 238, 251, 210, 216, 254, 216, /* 10 */ 243, 257, 12, 13, 267, 268, 225, 250, 251, 0, /* 20 */ 20, 255, 22, 238, 216, 12, 13, 14, 15, 16, /* 30 */ 234, 2, 241, 267, 268, 260, 20, 241, 38, 246, /* 40 */ 255, 12, 13, 14, 15, 16, 20, 251, 2, 241, /* 50 */ 50, 255, 267, 268, 210, 36, 260, 57, 12, 13, /* 60 */ 14, 15, 16, 12, 13, 14, 291, 271, 272, 273, /* 70 */ 274, 20, 227, 22, 74, 230, 12, 13, 234, 304, /* 80 */ 269, 47, 274, 308, 20, 241, 22, 291, 75, 38, /* 90 */ 218, 283, 284, 285, 286, 251, 288, 97, 287, 255, /* 100 */ 304, 50, 38, 231, 308, 20, 207, 73, 57, 109, /* 110 */ 76, 239, 220, 221, 50, 271, 272, 273, 274, 275, /* 120 */ 20, 57, 49, 279, 280, 74, 0, 88, 89, 90, /* 130 */ 91, 92, 93, 94, 95, 96, 97, 98, 74, 100, /* 140 */ 101, 102, 103, 104, 105, 145, 85, 21, 97, 210, /* 150 */ 24, 25, 26, 27, 28, 29, 30, 31, 32, 260, /* 160 */ 109, 97, 162, 163, 164, 165, 166, 167, 168, 169, /* 170 */ 170, 171, 172, 109, 74, 22, 216, 20, 61, 12, /* 180 */ 13, 209, 65, 211, 184, 225, 52, 20, 54, 22, /* 190 */ 291, 38, 58, 216, 255, 61, 145, 63, 64, 78, /* 200 */ 66, 241, 81, 304, 87, 38, 144, 308, 146, 145, /* 210 */ 57, 260, 20, 162, 163, 164, 165, 166, 167, 168, /* 220 */ 169, 170, 171, 172, 57, 135, 162, 163, 164, 165, /* 230 */ 166, 167, 168, 169, 170, 171, 172, 260, 216, 162, /* 240 */ 184, 74, 291, 12, 13, 14, 184, 225, 163, 164, /* 250 */ 97, 20, 216, 22, 232, 304, 38, 12, 13, 308, /* 260 */ 20, 225, 109, 241, 97, 20, 74, 22, 291, 38, /* 270 */ 193, 194, 195, 196, 197, 57, 109, 241, 218, 189, /* 280 */ 190, 304, 210, 38, 184, 308, 21, 291, 57, 24, /* 290 */ 25, 26, 27, 28, 29, 30, 31, 32, 145, 239, /* 300 */ 304, 67, 57, 215, 308, 74, 234, 12, 13, 14, /* 310 */ 15, 16, 145, 241, 234, 162, 219, 229, 210, 74, /* 320 */ 223, 241, 20, 251, 236, 210, 0, 255, 97, 162, /* 330 */ 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, /* 340 */ 109, 184, 97, 271, 272, 273, 274, 113, 114, 234, /* 350 */ 18, 184, 20, 273, 109, 216, 241, 233, 49, 27, /* 360 */ 216, 269, 30, 255, 225, 20, 251, 216, 244, 225, /* 370 */ 255, 39, 234, 258, 210, 49, 145, 137, 240, 287, /* 380 */ 241, 309, 310, 245, 0, 241, 271, 272, 273, 274, /* 390 */ 145, 57, 241, 162, 163, 164, 165, 166, 167, 168, /* 400 */ 169, 170, 171, 172, 14, 15, 16, 162, 163, 164, /* 410 */ 165, 166, 167, 168, 169, 170, 171, 172, 216, 255, /* 420 */ 12, 13, 3, 234, 226, 274, 210, 225, 20, 240, /* 430 */ 22, 0, 234, 49, 245, 284, 285, 286, 241, 288, /* 440 */ 242, 213, 214, 241, 112, 248, 38, 115, 116, 117, /* 450 */ 118, 119, 215, 121, 122, 123, 124, 125, 126, 127, /* 460 */ 128, 129, 130, 216, 4, 57, 12, 13, 14, 15, /* 470 */ 16, 255, 225, 236, 235, 12, 13, 14, 15, 16, /* 480 */ 35, 235, 74, 52, 53, 54, 55, 56, 241, 58, /* 490 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, /* 500 */ 69, 70, 210, 216, 50, 97, 61, 71, 234, 216, /* 510 */ 65, 75, 225, 50, 251, 226, 242, 109, 225, 232, /* 520 */ 257, 235, 77, 234, 79, 80, 234, 82, 241, 75, /* 530 */ 0, 242, 87, 241, 241, 20, 226, 83, 12, 13, /* 540 */ 14, 15, 16, 251, 234, 223, 83, 255, 20, 131, /* 550 */ 22, 269, 242, 145, 24, 25, 26, 27, 28, 29, /* 560 */ 30, 31, 32, 271, 272, 273, 274, 149, 40, 287, /* 570 */ 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, /* 580 */ 172, 4, 1, 2, 216, 131, 234, 220, 221, 216, /* 590 */ 18, 173, 240, 225, 131, 23, 19, 245, 225, 74, /* 600 */ 222, 75, 224, 149, 210, 22, 210, 35, 0, 241, /* 610 */ 33, 86, 149, 36, 241, 234, 210, 43, 41, 200, /* 620 */ 48, 38, 210, 210, 47, 210, 245, 173, 174, 175, /* 630 */ 176, 177, 178, 179, 180, 181, 173, 174, 175, 176, /* 640 */ 177, 178, 179, 180, 181, 185, 235, 234, 234, 255, /* 650 */ 73, 255, 137, 76, 241, 71, 75, 210, 210, 245, /* 660 */ 52, 255, 54, 235, 251, 38, 58, 255, 255, 61, /* 670 */ 255, 63, 64, 260, 66, 182, 183, 210, 210, 210, /* 680 */ 210, 210, 141, 111, 271, 272, 273, 274, 275, 210, /* 690 */ 12, 13, 279, 280, 21, 1, 2, 156, 210, 210, /* 700 */ 22, 234, 255, 255, 291, 210, 71, 34, 241, 210, /* 710 */ 138, 139, 140, 263, 142, 0, 38, 304, 251, 147, /* 720 */ 211, 308, 255, 255, 255, 255, 255, 155, 210, 157, /* 730 */ 38, 159, 160, 161, 255, 57, 109, 22, 271, 272, /* 740 */ 273, 274, 275, 255, 255, 38, 279, 280, 281, 14, /* 750 */ 255, 19, 234, 311, 255, 20, 184, 183, 78, 241, /* 760 */ 293, 81, 163, 164, 57, 33, 299, 300, 36, 251, /* 770 */ 50, 210, 0, 255, 42, 97, 44, 45, 46, 47, /* 780 */ 302, 78, 78, 210, 81, 81, 202, 109, 0, 271, /* 790 */ 272, 273, 274, 275, 22, 234, 210, 279, 280, 281, /* 800 */ 251, 109, 241, 244, 251, 73, 296, 234, 76, 71, /* 810 */ 22, 213, 251, 75, 241, 71, 255, 270, 300, 75, /* 820 */ 234, 71, 71, 145, 251, 75, 75, 241, 255, 289, /* 830 */ 234, 210, 271, 272, 273, 274, 305, 251, 106, 204, /* 840 */ 162, 255, 292, 210, 271, 272, 273, 274, 275, 20, /* 850 */ 216, 266, 279, 280, 281, 234, 36, 271, 272, 273, /* 860 */ 274, 275, 241, 290, 38, 133, 280, 234, 136, 71, /* 870 */ 74, 71, 251, 75, 241, 75, 255, 71, 220, 143, /* 880 */ 84, 75, 162, 151, 251, 153, 71, 71, 255, 261, /* 890 */ 75, 75, 271, 272, 273, 274, 275, 216, 216, 120, /* 900 */ 279, 280, 281, 210, 271, 272, 273, 274, 275, 249, /* 910 */ 247, 290, 279, 280, 281, 71, 131, 33, 216, 75, /* 920 */ 36, 247, 216, 290, 265, 20, 42, 234, 44, 45, /* 930 */ 46, 47, 71, 71, 241, 20, 75, 75, 71, 210, /* 940 */ 218, 71, 75, 241, 251, 75, 259, 71, 255, 241, /* 950 */ 210, 75, 12, 13, 14, 15, 16, 73, 20, 218, /* 960 */ 76, 252, 260, 234, 271, 272, 273, 274, 275, 212, /* 970 */ 241, 218, 279, 280, 234, 71, 274, 216, 218, 75, /* 980 */ 251, 241, 20, 216, 255, 216, 284, 285, 286, 234, /* 990 */ 288, 251, 234, 291, 220, 255, 234, 234, 258, 234, /* 1000 */ 271, 272, 273, 274, 210, 234, 304, 234, 241, 210, /* 1010 */ 308, 271, 272, 273, 274, 234, 132, 234, 134, 212, /* 1020 */ 136, 234, 252, 234, 265, 241, 152, 259, 234, 215, /* 1030 */ 264, 241, 303, 234, 215, 241, 20, 153, 210, 192, /* 1040 */ 241, 274, 191, 301, 57, 251, 270, 256, 255, 255, /* 1050 */ 251, 284, 285, 286, 255, 288, 255, 258, 256, 255, /* 1060 */ 187, 198, 234, 199, 210, 271, 272, 273, 274, 241, /* 1070 */ 271, 272, 273, 274, 186, 298, 301, 297, 138, 251, /* 1080 */ 183, 295, 241, 255, 20, 120, 258, 269, 234, 294, /* 1090 */ 282, 206, 203, 201, 312, 241, 74, 255, 306, 271, /* 1100 */ 272, 273, 274, 278, 310, 251, 210, 134, 256, 255, /* 1110 */ 307, 210, 255, 241, 256, 255, 230, 210, 253, 241, /* 1120 */ 252, 215, 74, 215, 237, 271, 272, 273, 274, 220, /* 1130 */ 234, 212, 216, 215, 224, 234, 208, 241, 217, 262, /* 1140 */ 228, 234, 241, 0, 0, 205, 64, 251, 241, 0, /* 1150 */ 228, 255, 251, 0, 38, 158, 255, 38, 251, 210, /* 1160 */ 38, 38, 255, 158, 0, 38, 38, 271, 272, 273, /* 1170 */ 274, 210, 271, 272, 273, 274, 158, 0, 271, 272, /* 1180 */ 273, 274, 0, 234, 210, 38, 38, 0, 74, 149, /* 1190 */ 241, 148, 109, 0, 145, 234, 0, 141, 53, 0, /* 1200 */ 251, 0, 241, 0, 255, 0, 86, 0, 234, 0, /* 1210 */ 61, 0, 251, 210, 65, 241, 255, 0, 0, 0, /* 1220 */ 271, 272, 273, 274, 0, 251, 0, 0, 0, 255, /* 1230 */ 0, 0, 271, 272, 273, 274, 87, 234, 0, 210, /* 1240 */ 0, 120, 0, 0, 241, 271, 272, 273, 274, 0, /* 1250 */ 0, 0, 0, 0, 251, 106, 107, 108, 255, 110, /* 1260 */ 0, 22, 61, 234, 0, 210, 65, 0, 0, 0, /* 1270 */ 241, 0, 0, 210, 271, 272, 273, 274, 0, 43, /* 1280 */ 251, 0, 0, 51, 255, 0, 38, 43, 87, 234, /* 1290 */ 36, 0, 36, 38, 0, 38, 241, 234, 0, 210, /* 1300 */ 271, 272, 273, 274, 241, 43, 251, 106, 107, 108, /* 1310 */ 255, 110, 36, 43, 251, 38, 36, 43, 255, 0, /* 1320 */ 0, 0, 0, 234, 83, 38, 271, 272, 273, 274, /* 1330 */ 241, 22, 71, 0, 271, 272, 273, 274, 38, 81, /* 1340 */ 251, 210, 38, 38, 255, 38, 71, 0, 38, 38, /* 1350 */ 22, 0, 22, 39, 0, 38, 22, 0, 22, 0, /* 1360 */ 271, 272, 273, 274, 22, 234, 20, 0, 154, 38, /* 1370 */ 137, 0, 241, 150, 22, 0, 0, 0, 43, 134, /* 1380 */ 74, 86, 251, 137, 137, 188, 255, 71, 75, 71, /* 1390 */ 75, 132, 188, 4, 71, 182, 188, 2, 74, 74, /* 1400 */ 74, 74, 271, 272, 273, 274, 38, 75, 71, 71, /* 1410 */ 38, 38, 38, 0, 75, 75, 71, 38, 38, 75, /* 1420 */ 71, 135, 132, 22, 74, 162, 43, 86, 75, 86, /* 1430 */ 74, 38, 38, 75, 86, 75, 74, 74, 74, 74, /* 1440 */ 38, 86, 38, 74, 38, 84, 38, 22, 38, 38, /* 1450 */ 22, 22, 86, 75, 0, 85, 74, 38, 38, 75, /* 1460 */ 74, 38, 75, 75, 74, 74, 51, 75, 50, 57, /* 1470 */ 74, 38, 38, 38, 74, 38, 38, 38, 57, 74, /* 1480 */ 99, 74, 38, 38, 99, 71, 87, 38, 72, 38, /* 1490 */ 38, 38, 36, 38, 0, 36, 99, 99, 38, 0, /* 1500 */ 43, 43, 38, 36, 43, 0, 38, 36, 43, 0, /* 1510 */ 38, 37, 109, 0, 0, 22, 21, 313, 22, 22, /* 1520 */ 313, 21, 20, 313, 313, 313, 313, 313, 313, 313, /* 1530 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1540 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1550 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1560 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1570 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1580 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1590 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1600 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1610 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1620 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1630 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1640 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1650 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1660 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1670 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1680 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1690 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1700 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1710 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, /* 1720 */ 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, }; #define YY_SHIFT_COUNT (543) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (1514) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 572, 0, 51, 64, 64, 64, 64, 167, 64, 64, /* 10 */ 245, 408, 100, 231, 245, 245, 245, 245, 245, 245, /* 20 */ 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, /* 30 */ 245, 245, 245, 245, 192, 192, 192, 157, 678, 678, /* 40 */ 62, 16, 16, 56, 678, 85, 85, 16, 16, 16, /* 50 */ 16, 16, 16, 73, 26, 302, 56, 26, 16, 16, /* 60 */ 26, 16, 26, 26, 26, 16, 309, 332, 454, 463, /* 70 */ 463, 265, 445, 153, 134, 153, 153, 153, 153, 153, /* 80 */ 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, /* 90 */ 153, 153, 153, 153, 85, 528, 326, 218, 240, 240, /* 100 */ 240, 384, 218, 345, 26, 26, 26, 61, 334, 39, /* 110 */ 39, 39, 39, 39, 39, 732, 126, 608, 940, 77, /* 120 */ 85, 117, 85, 90, 583, 515, 493, 574, 493, 735, /* 130 */ 419, 460, 829, 820, 826, 736, 829, 829, 779, 785, /* 140 */ 785, 829, 905, 915, 73, 345, 938, 73, 73, 829, /* 150 */ 73, 962, 26, 26, 26, 26, 26, 26, 26, 26, /* 160 */ 26, 26, 26, 826, 829, 962, 345, 905, 874, 915, /* 170 */ 309, 345, 938, 309, 1016, 847, 851, 987, 847, 851, /* 180 */ 987, 987, 864, 863, 873, 888, 897, 345, 1064, 965, /* 190 */ 885, 889, 892, 1022, 26, 851, 987, 987, 851, 987, /* 200 */ 973, 345, 938, 309, 61, 309, 345, 1048, 826, 334, /* 210 */ 829, 309, 962, 1523, 1523, 1523, 1523, 1523, 431, 884, /* 220 */ 530, 577, 1149, 1201, 13, 29, 46, 526, 295, 295, /* 230 */ 295, 295, 295, 295, 295, 34, 234, 581, 418, 390, /* 240 */ 390, 390, 390, 19, 541, 436, 121, 680, 703, 704, /* 250 */ 715, 772, 788, 673, 738, 744, 750, 694, 599, 584, /* 260 */ 635, 751, 720, 798, 525, 800, 806, 815, 816, 844, /* 270 */ 627, 692, 861, 862, 867, 870, 876, 904, 796, 707, /* 280 */ 1143, 1144, 1082, 1153, 1116, 997, 1119, 1122, 1123, 1005, /* 290 */ 1164, 1127, 1128, 1018, 1177, 1147, 1182, 1148, 1187, 1114, /* 300 */ 1040, 1043, 1083, 1049, 1193, 1196, 1145, 1056, 1199, 1203, /* 310 */ 1120, 1205, 1207, 1209, 1211, 1217, 1218, 1219, 1224, 1226, /* 320 */ 1227, 1228, 1230, 1231, 1238, 1240, 1121, 1242, 1243, 1249, /* 330 */ 1250, 1251, 1252, 1239, 1253, 1260, 1264, 1267, 1268, 1269, /* 340 */ 1271, 1272, 1278, 1236, 1281, 1232, 1282, 1285, 1248, 1254, /* 350 */ 1244, 1291, 1255, 1256, 1262, 1294, 1257, 1276, 1270, 1298, /* 360 */ 1277, 1280, 1274, 1319, 1320, 1321, 1322, 1241, 1258, 1287, /* 370 */ 1261, 1309, 1333, 1300, 1304, 1305, 1307, 1275, 1261, 1310, /* 380 */ 1311, 1347, 1328, 1351, 1330, 1314, 1354, 1334, 1317, 1357, /* 390 */ 1336, 1359, 1342, 1346, 1367, 1233, 1214, 1331, 1371, 1223, /* 400 */ 1352, 1246, 1245, 1375, 1376, 1247, 1377, 1306, 1335, 1259, /* 410 */ 1316, 1318, 1197, 1313, 1323, 1315, 1324, 1325, 1326, 1332, /* 420 */ 1337, 1295, 1327, 1338, 1204, 1339, 1340, 1341, 1213, 1345, /* 430 */ 1343, 1344, 1349, 1208, 1389, 1368, 1372, 1373, 1374, 1379, /* 440 */ 1380, 1395, 1263, 1348, 1353, 1350, 1356, 1358, 1360, 1362, /* 450 */ 1363, 1286, 1364, 1413, 1383, 1290, 1365, 1361, 1355, 1366, /* 460 */ 1401, 1369, 1370, 1378, 1393, 1394, 1382, 1384, 1402, 1386, /* 470 */ 1387, 1404, 1390, 1388, 1406, 1391, 1392, 1408, 1396, 1381, /* 480 */ 1385, 1397, 1398, 1425, 1399, 1400, 1410, 1403, 1405, 1407, /* 490 */ 1411, 1261, 1428, 1415, 1418, 1412, 1416, 1414, 1419, 1420, /* 500 */ 1423, 1433, 1434, 1435, 1437, 1429, 1421, 1275, 1438, 1261, /* 510 */ 1439, 1444, 1445, 1449, 1451, 1452, 1453, 1454, 1455, 1456, /* 520 */ 1457, 1494, 1460, 1459, 1458, 1499, 1464, 1467, 1461, 1505, /* 530 */ 1468, 1471, 1465, 1509, 1472, 1474, 1513, 1514, 1493, 1495, /* 540 */ 1496, 1497, 1500, 1502, }; #define YY_REDUCE_COUNT (217) #define YY_REDUCE_MIN (-276) #define YY_REDUCE_MAX (1131) static const short yy_reduce_ofst[] = { /* 0 */ -101, 413, 467, 518, 573, 621, 633, -204, -156, 693, /* 10 */ 72, 586, 702, 115, 740, 729, 794, 799, 828, 292, /* 20 */ 561, 854, 896, 901, 907, 949, 961, 974, 1003, 1029, /* 30 */ 1055, 1063, 1089, 1131, -192, 151, 767, -23, -234, -215, /* 40 */ -225, 22, 287, -49, -253, -246, -233, -209, -40, 36, /* 50 */ 139, 144, 202, -128, 138, 80, -4, 198, 247, 293, /* 60 */ 189, 368, 289, 352, 310, 373, 88, -207, -276, -276, /* 70 */ -276, -28, 124, -61, 97, 108, 164, 216, 394, 396, /* 80 */ 406, 412, 415, 447, 448, 468, 469, 470, 471, 479, /* 90 */ 488, 489, 495, 499, 263, 228, 60, -108, -189, 92, /* 100 */ 282, 237, 367, 197, 274, 381, 414, -155, 378, -232, /* 110 */ 239, 246, 286, 411, 428, 450, 509, 322, 442, 478, /* 120 */ 549, 559, 553, 510, 598, 547, 540, 540, 540, 596, /* 130 */ 531, 550, 634, 585, 658, 628, 681, 682, 660, 663, /* 140 */ 674, 706, 659, 687, 722, 708, 709, 741, 753, 761, /* 150 */ 760, 757, 755, 758, 762, 763, 765, 771, 773, 781, /* 160 */ 783, 787, 789, 774, 769, 807, 784, 759, 766, 768, /* 170 */ 814, 790, 770, 819, 776, 742, 791, 793, 775, 802, /* 180 */ 801, 804, 777, 780, 786, 795, 540, 841, 818, 808, /* 190 */ 782, 803, 792, 825, 596, 852, 842, 857, 858, 860, /* 200 */ 865, 872, 868, 906, 886, 908, 878, 887, 909, 910, /* 210 */ 916, 918, 919, 877, 912, 922, 921, 928, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 10 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 20 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 30 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 40 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 50 */ 1210, 1210, 1210, 1269, 1210, 1210, 1210, 1210, 1210, 1210, /* 60 */ 1210, 1210, 1210, 1210, 1210, 1210, 1267, 1406, 1210, 1540, /* 70 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 80 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 90 */ 1210, 1210, 1210, 1210, 1210, 1210, 1269, 1210, 1551, 1551, /* 100 */ 1551, 1267, 1210, 1210, 1210, 1210, 1210, 1362, 1210, 1210, /* 110 */ 1210, 1210, 1210, 1210, 1210, 1440, 1210, 1210, 1615, 1210, /* 120 */ 1210, 1315, 1210, 1575, 1210, 1567, 1543, 1557, 1544, 1210, /* 130 */ 1600, 1560, 1210, 1210, 1210, 1432, 1210, 1210, 1411, 1408, /* 140 */ 1408, 1210, 1210, 1210, 1269, 1210, 1210, 1269, 1269, 1210, /* 150 */ 1269, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 160 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1442, 1210, /* 170 */ 1267, 1210, 1210, 1267, 1210, 1582, 1580, 1210, 1582, 1580, /* 180 */ 1210, 1210, 1594, 1590, 1573, 1571, 1557, 1210, 1210, 1210, /* 190 */ 1618, 1606, 1602, 1210, 1210, 1580, 1210, 1210, 1580, 1210, /* 200 */ 1419, 1210, 1210, 1267, 1210, 1267, 1210, 1331, 1210, 1210, /* 210 */ 1210, 1267, 1210, 1434, 1365, 1365, 1270, 1215, 1210, 1210, /* 220 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1504, 1593, /* 230 */ 1592, 1503, 1517, 1516, 1515, 1210, 1210, 1210, 1210, 1498, /* 240 */ 1499, 1497, 1496, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 250 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1541, 1210, 1603, /* 260 */ 1607, 1210, 1210, 1210, 1479, 1210, 1210, 1210, 1210, 1210, /* 270 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 280 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 290 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 300 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 310 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 320 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 330 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 340 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 350 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 360 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 370 */ 1376, 1210, 1210, 1210, 1210, 1210, 1210, 1296, 1295, 1210, /* 380 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 390 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 400 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 410 */ 1564, 1574, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 420 */ 1210, 1479, 1210, 1591, 1210, 1550, 1546, 1210, 1210, 1542, /* 430 */ 1210, 1210, 1601, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 440 */ 1210, 1536, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 450 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1478, 1210, /* 460 */ 1210, 1210, 1210, 1210, 1210, 1210, 1359, 1210, 1210, 1210, /* 470 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1344, /* 480 */ 1342, 1341, 1340, 1210, 1337, 1210, 1210, 1210, 1210, 1210, /* 490 */ 1210, 1367, 1210, 1210, 1210, 1210, 1210, 1290, 1210, 1210, /* 500 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1281, 1210, 1280, /* 510 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 520 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 530 */ 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, /* 540 */ 1210, 1210, 1210, 1210, }; /********** End of lemon-generated parsing tables *****************************/ /* The next table maps tokens (terminal symbols) into fallback tokens. ** If a construct like the following: ** ** %fallback ID X Y Z. ** ** appears in the grammar, then ID becomes a fallback token for X, Y, ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. ** ** This feature can be used, for example, to cause some keywords in a language ** to revert to identifiers if they keyword does not apply in the context where ** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { }; #endif /* YYFALLBACK */ /* The following structure represents a single element of the ** parser's stack. Information stored includes: ** ** + The state number for the parser at this level of the stack. ** ** + The value of the token stored at this level of the stack. ** (In other words, the "major" token.) ** ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. ** ** After the "shift" half of a SHIFTREDUCE action, the stateno field ** actually contains the reduce action for the second half of the ** SHIFTREDUCE. */ struct yyStackEntry { YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This ** is the value of the token */ }; typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { yyStackEntry *yytos; /* Pointer to top element of the stack */ #ifdef YYTRACKMAXSTACKDEPTH int yyhwm; /* High-water mark of the stack */ #endif #ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ #endif 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 */ "PRIVILEGE", /* 35 */ "DROP", /* 36 */ "DNODE", /* 37 */ "PORT", /* 38 */ "NK_INTEGER", /* 39 */ "DNODES", /* 40 */ "NK_IPTOKEN", /* 41 */ "LOCAL", /* 42 */ "QNODE", /* 43 */ "ON", /* 44 */ "BNODE", /* 45 */ "SNODE", /* 46 */ "MNODE", /* 47 */ "DATABASE", /* 48 */ "USE", /* 49 */ "IF", /* 50 */ "NOT", /* 51 */ "EXISTS", /* 52 */ "BLOCKS", /* 53 */ "CACHE", /* 54 */ "CACHELAST", /* 55 */ "COMP", /* 56 */ "DAYS", /* 57 */ "NK_VARIABLE", /* 58 */ "FSYNC", /* 59 */ "MAXROWS", /* 60 */ "MINROWS", /* 61 */ "KEEP", /* 62 */ "PRECISION", /* 63 */ "QUORUM", /* 64 */ "REPLICA", /* 65 */ "TTL", /* 66 */ "WAL", /* 67 */ "VGROUPS", /* 68 */ "SINGLE_STABLE", /* 69 */ "STREAM_MODE", /* 70 */ "RETENTIONS", /* 71 */ "NK_COMMA", /* 72 */ "NK_COLON", /* 73 */ "TABLE", /* 74 */ "NK_LP", /* 75 */ "NK_RP", /* 76 */ "STABLE", /* 77 */ "ADD", /* 78 */ "COLUMN", /* 79 */ "MODIFY", /* 80 */ "RENAME", /* 81 */ "TAG", /* 82 */ "SET", /* 83 */ "NK_EQ", /* 84 */ "USING", /* 85 */ "TAGS", /* 86 */ "NK_DOT", /* 87 */ "COMMENT", /* 88 */ "BOOL", /* 89 */ "TINYINT", /* 90 */ "SMALLINT", /* 91 */ "INT", /* 92 */ "INTEGER", /* 93 */ "BIGINT", /* 94 */ "FLOAT", /* 95 */ "DOUBLE", /* 96 */ "BINARY", /* 97 */ "TIMESTAMP", /* 98 */ "NCHAR", /* 99 */ "UNSIGNED", /* 100 */ "JSON", /* 101 */ "VARCHAR", /* 102 */ "MEDIUMBLOB", /* 103 */ "BLOB", /* 104 */ "VARBINARY", /* 105 */ "DECIMAL", /* 106 */ "SMA", /* 107 */ "ROLLUP", /* 108 */ "FILE_FACTOR", /* 109 */ "NK_FLOAT", /* 110 */ "DELAY", /* 111 */ "SHOW", /* 112 */ "DATABASES", /* 113 */ "TABLES", /* 114 */ "STABLES", /* 115 */ "MNODES", /* 116 */ "MODULES", /* 117 */ "QNODES", /* 118 */ "FUNCTIONS", /* 119 */ "INDEXES", /* 120 */ "FROM", /* 121 */ "ACCOUNTS", /* 122 */ "APPS", /* 123 */ "CONNECTIONS", /* 124 */ "LICENCE", /* 125 */ "QUERIES", /* 126 */ "SCORES", /* 127 */ "TOPICS", /* 128 */ "VARIABLES", /* 129 */ "BNODES", /* 130 */ "SNODES", /* 131 */ "LIKE", /* 132 */ "INDEX", /* 133 */ "FULLTEXT", /* 134 */ "FUNCTION", /* 135 */ "INTERVAL", /* 136 */ "TOPIC", /* 137 */ "AS", /* 138 */ "DESC", /* 139 */ "DESCRIBE", /* 140 */ "RESET", /* 141 */ "QUERY", /* 142 */ "EXPLAIN", /* 143 */ "ANALYZE", /* 144 */ "VERBOSE", /* 145 */ "NK_BOOL", /* 146 */ "RATIO", /* 147 */ "COMPACT", /* 148 */ "VNODES", /* 149 */ "IN", /* 150 */ "OUTPUTTYPE", /* 151 */ "AGGREGATE", /* 152 */ "BUFSIZE", /* 153 */ "STREAM", /* 154 */ "INTO", /* 155 */ "KILL", /* 156 */ "CONNECTION", /* 157 */ "MERGE", /* 158 */ "VGROUP", /* 159 */ "REDISTRIBUTE", /* 160 */ "SPLIT", /* 161 */ "SYNCDB", /* 162 */ "NULL", /* 163 */ "FIRST", /* 164 */ "LAST", /* 165 */ "NOW", /* 166 */ "ROWTS", /* 167 */ "TBNAME", /* 168 */ "QSTARTTS", /* 169 */ "QENDTS", /* 170 */ "WSTARTTS", /* 171 */ "WENDTS", /* 172 */ "WDURATION", /* 173 */ "BETWEEN", /* 174 */ "IS", /* 175 */ "NK_LT", /* 176 */ "NK_GT", /* 177 */ "NK_LE", /* 178 */ "NK_GE", /* 179 */ "NK_NE", /* 180 */ "MATCH", /* 181 */ "NMATCH", /* 182 */ "JOIN", /* 183 */ "INNER", /* 184 */ "SELECT", /* 185 */ "DISTINCT", /* 186 */ "WHERE", /* 187 */ "PARTITION", /* 188 */ "BY", /* 189 */ "SESSION", /* 190 */ "STATE_WINDOW", /* 191 */ "SLIDING", /* 192 */ "FILL", /* 193 */ "VALUE", /* 194 */ "NONE", /* 195 */ "PREV", /* 196 */ "LINEAR", /* 197 */ "NEXT", /* 198 */ "GROUP", /* 199 */ "HAVING", /* 200 */ "ORDER", /* 201 */ "SLIMIT", /* 202 */ "SOFFSET", /* 203 */ "LIMIT", /* 204 */ "OFFSET", /* 205 */ "ASC", /* 206 */ "NULLS", /* 207 */ "cmd", /* 208 */ "account_options", /* 209 */ "alter_account_options", /* 210 */ "literal", /* 211 */ "alter_account_option", /* 212 */ "user_name", /* 213 */ "dnode_endpoint", /* 214 */ "dnode_host_name", /* 215 */ "not_exists_opt", /* 216 */ "db_name", /* 217 */ "db_options", /* 218 */ "exists_opt", /* 219 */ "alter_db_options", /* 220 */ "integer_list", /* 221 */ "variable_list", /* 222 */ "retention_list", /* 223 */ "alter_db_option", /* 224 */ "retention", /* 225 */ "full_table_name", /* 226 */ "column_def_list", /* 227 */ "tags_def_opt", /* 228 */ "table_options", /* 229 */ "multi_create_clause", /* 230 */ "tags_def", /* 231 */ "multi_drop_clause", /* 232 */ "alter_table_clause", /* 233 */ "alter_table_options", /* 234 */ "column_name", /* 235 */ "type_name", /* 236 */ "create_subtable_clause", /* 237 */ "specific_tags_opt", /* 238 */ "literal_list", /* 239 */ "drop_table_clause", /* 240 */ "col_name_list", /* 241 */ "table_name", /* 242 */ "column_def", /* 243 */ "func_name_list", /* 244 */ "alter_table_option", /* 245 */ "col_name", /* 246 */ "db_name_cond_opt", /* 247 */ "like_pattern_opt", /* 248 */ "table_name_cond", /* 249 */ "from_db_opt", /* 250 */ "func_name", /* 251 */ "function_name", /* 252 */ "index_name", /* 253 */ "index_options", /* 254 */ "func_list", /* 255 */ "duration_literal", /* 256 */ "sliding_opt", /* 257 */ "func", /* 258 */ "expression_list", /* 259 */ "topic_name", /* 260 */ "query_expression", /* 261 */ "analyze_opt", /* 262 */ "explain_options", /* 263 */ "agg_func_opt", /* 264 */ "bufsize_opt", /* 265 */ "stream_name", /* 266 */ "dnode_list", /* 267 */ "signed", /* 268 */ "signed_literal", /* 269 */ "table_alias", /* 270 */ "column_alias", /* 271 */ "expression", /* 272 */ "pseudo_column", /* 273 */ "column_reference", /* 274 */ "subquery", /* 275 */ "predicate", /* 276 */ "compare_op", /* 277 */ "in_op", /* 278 */ "in_predicate_value", /* 279 */ "boolean_value_expression", /* 280 */ "boolean_primary", /* 281 */ "common_expression", /* 282 */ "from_clause", /* 283 */ "table_reference_list", /* 284 */ "table_reference", /* 285 */ "table_primary", /* 286 */ "joined_table", /* 287 */ "alias_opt", /* 288 */ "parenthesized_joined_table", /* 289 */ "join_type", /* 290 */ "search_condition", /* 291 */ "query_specification", /* 292 */ "set_quantifier_opt", /* 293 */ "select_list", /* 294 */ "where_clause_opt", /* 295 */ "partition_by_clause_opt", /* 296 */ "twindow_clause_opt", /* 297 */ "group_by_clause_opt", /* 298 */ "having_clause_opt", /* 299 */ "select_sublist", /* 300 */ "select_item", /* 301 */ "fill_opt", /* 302 */ "fill_mode", /* 303 */ "group_by_list", /* 304 */ "query_expression_body", /* 305 */ "order_by_clause_opt", /* 306 */ "slimit_clause_opt", /* 307 */ "limit_clause_opt", /* 308 */ "query_primary", /* 309 */ "sort_specification_list", /* 310 */ "sort_specification", /* 311 */ "ordering_specification_opt", /* 312 */ "null_ordering_opt", }; #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", /* 25 */ "cmd ::= ALTER USER user_name PASS NK_STRING", /* 26 */ "cmd ::= ALTER USER user_name PRIVILEGE NK_STRING", /* 27 */ "cmd ::= DROP USER user_name", /* 28 */ "cmd ::= CREATE DNODE dnode_endpoint", /* 29 */ "cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER", /* 30 */ "cmd ::= DROP DNODE NK_INTEGER", /* 31 */ "cmd ::= DROP DNODE dnode_endpoint", /* 32 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING", /* 33 */ "cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING", /* 34 */ "cmd ::= ALTER ALL DNODES NK_STRING", /* 35 */ "cmd ::= ALTER ALL DNODES NK_STRING NK_STRING", /* 36 */ "dnode_endpoint ::= NK_STRING", /* 37 */ "dnode_host_name ::= NK_ID", /* 38 */ "dnode_host_name ::= NK_IPTOKEN", /* 39 */ "cmd ::= ALTER LOCAL NK_STRING", /* 40 */ "cmd ::= ALTER LOCAL NK_STRING NK_STRING", /* 41 */ "cmd ::= CREATE QNODE ON DNODE NK_INTEGER", /* 42 */ "cmd ::= DROP QNODE ON DNODE NK_INTEGER", /* 43 */ "cmd ::= CREATE BNODE ON DNODE NK_INTEGER", /* 44 */ "cmd ::= DROP BNODE ON DNODE NK_INTEGER", /* 45 */ "cmd ::= CREATE SNODE ON DNODE NK_INTEGER", /* 46 */ "cmd ::= DROP SNODE ON DNODE NK_INTEGER", /* 47 */ "cmd ::= CREATE MNODE ON DNODE NK_INTEGER", /* 48 */ "cmd ::= DROP MNODE ON DNODE NK_INTEGER", /* 49 */ "cmd ::= CREATE DATABASE not_exists_opt db_name db_options", /* 50 */ "cmd ::= DROP DATABASE exists_opt db_name", /* 51 */ "cmd ::= USE db_name", /* 52 */ "cmd ::= ALTER DATABASE db_name alter_db_options", /* 53 */ "not_exists_opt ::= IF NOT EXISTS", /* 54 */ "not_exists_opt ::=", /* 55 */ "exists_opt ::= IF EXISTS", /* 56 */ "exists_opt ::=", /* 57 */ "db_options ::=", /* 58 */ "db_options ::= db_options BLOCKS NK_INTEGER", /* 59 */ "db_options ::= db_options CACHE NK_INTEGER", /* 60 */ "db_options ::= db_options CACHELAST NK_INTEGER", /* 61 */ "db_options ::= db_options COMP NK_INTEGER", /* 62 */ "db_options ::= db_options DAYS NK_INTEGER", /* 63 */ "db_options ::= db_options DAYS NK_VARIABLE", /* 64 */ "db_options ::= db_options FSYNC NK_INTEGER", /* 65 */ "db_options ::= db_options MAXROWS NK_INTEGER", /* 66 */ "db_options ::= db_options MINROWS NK_INTEGER", /* 67 */ "db_options ::= db_options KEEP integer_list", /* 68 */ "db_options ::= db_options KEEP variable_list", /* 69 */ "db_options ::= db_options PRECISION NK_STRING", /* 70 */ "db_options ::= db_options QUORUM NK_INTEGER", /* 71 */ "db_options ::= db_options REPLICA NK_INTEGER", /* 72 */ "db_options ::= db_options TTL NK_INTEGER", /* 73 */ "db_options ::= db_options WAL NK_INTEGER", /* 74 */ "db_options ::= db_options VGROUPS NK_INTEGER", /* 75 */ "db_options ::= db_options SINGLE_STABLE NK_INTEGER", /* 76 */ "db_options ::= db_options STREAM_MODE NK_INTEGER", /* 77 */ "db_options ::= db_options RETENTIONS retention_list", /* 78 */ "alter_db_options ::= alter_db_option", /* 79 */ "alter_db_options ::= alter_db_options alter_db_option", /* 80 */ "alter_db_option ::= BLOCKS NK_INTEGER", /* 81 */ "alter_db_option ::= FSYNC NK_INTEGER", /* 82 */ "alter_db_option ::= KEEP integer_list", /* 83 */ "alter_db_option ::= KEEP variable_list", /* 84 */ "alter_db_option ::= WAL NK_INTEGER", /* 85 */ "alter_db_option ::= QUORUM NK_INTEGER", /* 86 */ "alter_db_option ::= CACHELAST NK_INTEGER", /* 87 */ "alter_db_option ::= REPLICA NK_INTEGER", /* 88 */ "integer_list ::= NK_INTEGER", /* 89 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", /* 90 */ "variable_list ::= NK_VARIABLE", /* 91 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", /* 92 */ "retention_list ::= retention", /* 93 */ "retention_list ::= retention_list NK_COMMA retention", /* 94 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", /* 95 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", /* 96 */ "cmd ::= CREATE TABLE multi_create_clause", /* 97 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", /* 98 */ "cmd ::= DROP TABLE multi_drop_clause", /* 99 */ "cmd ::= DROP STABLE exists_opt full_table_name", /* 100 */ "cmd ::= ALTER TABLE alter_table_clause", /* 101 */ "cmd ::= ALTER STABLE alter_table_clause", /* 102 */ "alter_table_clause ::= full_table_name alter_table_options", /* 103 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", /* 104 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", /* 105 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", /* 106 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", /* 107 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", /* 108 */ "alter_table_clause ::= full_table_name DROP TAG column_name", /* 109 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", /* 110 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", /* 111 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal", /* 112 */ "multi_create_clause ::= create_subtable_clause", /* 113 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", /* 114 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP", /* 115 */ "multi_drop_clause ::= drop_table_clause", /* 116 */ "multi_drop_clause ::= multi_drop_clause drop_table_clause", /* 117 */ "drop_table_clause ::= exists_opt full_table_name", /* 118 */ "specific_tags_opt ::=", /* 119 */ "specific_tags_opt ::= NK_LP col_name_list NK_RP", /* 120 */ "full_table_name ::= table_name", /* 121 */ "full_table_name ::= db_name NK_DOT table_name", /* 122 */ "column_def_list ::= column_def", /* 123 */ "column_def_list ::= column_def_list NK_COMMA column_def", /* 124 */ "column_def ::= column_name type_name", /* 125 */ "column_def ::= column_name type_name COMMENT NK_STRING", /* 126 */ "type_name ::= BOOL", /* 127 */ "type_name ::= TINYINT", /* 128 */ "type_name ::= SMALLINT", /* 129 */ "type_name ::= INT", /* 130 */ "type_name ::= INTEGER", /* 131 */ "type_name ::= BIGINT", /* 132 */ "type_name ::= FLOAT", /* 133 */ "type_name ::= DOUBLE", /* 134 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", /* 135 */ "type_name ::= TIMESTAMP", /* 136 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", /* 137 */ "type_name ::= TINYINT UNSIGNED", /* 138 */ "type_name ::= SMALLINT UNSIGNED", /* 139 */ "type_name ::= INT UNSIGNED", /* 140 */ "type_name ::= BIGINT UNSIGNED", /* 141 */ "type_name ::= JSON", /* 142 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", /* 143 */ "type_name ::= MEDIUMBLOB", /* 144 */ "type_name ::= BLOB", /* 145 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", /* 146 */ "type_name ::= DECIMAL", /* 147 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", /* 148 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", /* 149 */ "tags_def_opt ::=", /* 150 */ "tags_def_opt ::= tags_def", /* 151 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", /* 152 */ "table_options ::=", /* 153 */ "table_options ::= table_options COMMENT NK_STRING", /* 154 */ "table_options ::= table_options KEEP integer_list", /* 155 */ "table_options ::= table_options TTL NK_INTEGER", /* 156 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", /* 157 */ "table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP", /* 158 */ "table_options ::= table_options FILE_FACTOR NK_FLOAT", /* 159 */ "table_options ::= table_options DELAY NK_INTEGER", /* 160 */ "alter_table_options ::= alter_table_option", /* 161 */ "alter_table_options ::= alter_table_options alter_table_option", /* 162 */ "alter_table_option ::= COMMENT NK_STRING", /* 163 */ "alter_table_option ::= KEEP integer_list", /* 164 */ "alter_table_option ::= TTL NK_INTEGER", /* 165 */ "col_name_list ::= col_name", /* 166 */ "col_name_list ::= col_name_list NK_COMMA col_name", /* 167 */ "col_name ::= column_name", /* 168 */ "cmd ::= SHOW DNODES", /* 169 */ "cmd ::= SHOW USERS", /* 170 */ "cmd ::= SHOW DATABASES", /* 171 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", /* 172 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", /* 173 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", /* 174 */ "cmd ::= SHOW MNODES", /* 175 */ "cmd ::= SHOW MODULES", /* 176 */ "cmd ::= SHOW QNODES", /* 177 */ "cmd ::= SHOW FUNCTIONS", /* 178 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", /* 179 */ "cmd ::= SHOW STREAMS", /* 180 */ "cmd ::= SHOW ACCOUNTS", /* 181 */ "cmd ::= SHOW APPS", /* 182 */ "cmd ::= SHOW CONNECTIONS", /* 183 */ "cmd ::= SHOW LICENCE", /* 184 */ "cmd ::= SHOW CREATE DATABASE db_name", /* 185 */ "cmd ::= SHOW CREATE TABLE full_table_name", /* 186 */ "cmd ::= SHOW CREATE STABLE full_table_name", /* 187 */ "cmd ::= SHOW QUERIES", /* 188 */ "cmd ::= SHOW SCORES", /* 189 */ "cmd ::= SHOW TOPICS", /* 190 */ "cmd ::= SHOW VARIABLES", /* 191 */ "cmd ::= SHOW BNODES", /* 192 */ "cmd ::= SHOW SNODES", /* 193 */ "db_name_cond_opt ::=", /* 194 */ "db_name_cond_opt ::= db_name NK_DOT", /* 195 */ "like_pattern_opt ::=", /* 196 */ "like_pattern_opt ::= LIKE NK_STRING", /* 197 */ "table_name_cond ::= table_name", /* 198 */ "from_db_opt ::=", /* 199 */ "from_db_opt ::= FROM db_name", /* 200 */ "func_name_list ::= func_name", /* 201 */ "func_name_list ::= func_name_list NK_COMMA col_name", /* 202 */ "func_name ::= function_name", /* 203 */ "cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options", /* 204 */ "cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP", /* 205 */ "cmd ::= DROP INDEX exists_opt index_name ON table_name", /* 206 */ "index_options ::=", /* 207 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt", /* 208 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt", /* 209 */ "func_list ::= func", /* 210 */ "func_list ::= func_list NK_COMMA func", /* 211 */ "func ::= function_name NK_LP expression_list NK_RP", /* 212 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression", /* 213 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name", /* 214 */ "cmd ::= DROP TOPIC exists_opt topic_name", /* 215 */ "cmd ::= DESC full_table_name", /* 216 */ "cmd ::= DESCRIBE full_table_name", /* 217 */ "cmd ::= RESET QUERY CACHE", /* 218 */ "cmd ::= EXPLAIN analyze_opt explain_options query_expression", /* 219 */ "analyze_opt ::=", /* 220 */ "analyze_opt ::= ANALYZE", /* 221 */ "explain_options ::=", /* 222 */ "explain_options ::= explain_options VERBOSE NK_BOOL", /* 223 */ "explain_options ::= explain_options RATIO NK_FLOAT", /* 224 */ "cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP", /* 225 */ "cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", /* 226 */ "cmd ::= DROP FUNCTION function_name", /* 227 */ "agg_func_opt ::=", /* 228 */ "agg_func_opt ::= AGGREGATE", /* 229 */ "bufsize_opt ::=", /* 230 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", /* 231 */ "cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression", /* 232 */ "cmd ::= DROP STREAM stream_name", /* 233 */ "cmd ::= KILL CONNECTION NK_INTEGER", /* 234 */ "cmd ::= KILL QUERY NK_INTEGER", /* 235 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", /* 236 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", /* 237 */ "cmd ::= SPLIT VGROUP NK_INTEGER", /* 238 */ "dnode_list ::= DNODE NK_INTEGER", /* 239 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", /* 240 */ "cmd ::= SYNCDB db_name REPLICA", /* 241 */ "cmd ::= query_expression", /* 242 */ "literal ::= NK_INTEGER", /* 243 */ "literal ::= NK_FLOAT", /* 244 */ "literal ::= NK_STRING", /* 245 */ "literal ::= NK_BOOL", /* 246 */ "literal ::= TIMESTAMP NK_STRING", /* 247 */ "literal ::= duration_literal", /* 248 */ "literal ::= NULL", /* 249 */ "duration_literal ::= NK_VARIABLE", /* 250 */ "signed ::= NK_INTEGER", /* 251 */ "signed ::= NK_PLUS NK_INTEGER", /* 252 */ "signed ::= NK_MINUS NK_INTEGER", /* 253 */ "signed ::= NK_FLOAT", /* 254 */ "signed ::= NK_PLUS NK_FLOAT", /* 255 */ "signed ::= NK_MINUS NK_FLOAT", /* 256 */ "signed_literal ::= signed", /* 257 */ "signed_literal ::= NK_STRING", /* 258 */ "signed_literal ::= NK_BOOL", /* 259 */ "signed_literal ::= TIMESTAMP NK_STRING", /* 260 */ "signed_literal ::= duration_literal", /* 261 */ "signed_literal ::= NULL", /* 262 */ "literal_list ::= signed_literal", /* 263 */ "literal_list ::= literal_list NK_COMMA signed_literal", /* 264 */ "db_name ::= NK_ID", /* 265 */ "table_name ::= NK_ID", /* 266 */ "column_name ::= NK_ID", /* 267 */ "function_name ::= NK_ID", /* 268 */ "function_name ::= FIRST", /* 269 */ "function_name ::= LAST", /* 270 */ "table_alias ::= NK_ID", /* 271 */ "column_alias ::= NK_ID", /* 272 */ "user_name ::= NK_ID", /* 273 */ "index_name ::= NK_ID", /* 274 */ "topic_name ::= NK_ID", /* 275 */ "stream_name ::= NK_ID", /* 276 */ "expression ::= literal", /* 277 */ "expression ::= pseudo_column", /* 278 */ "expression ::= column_reference", /* 279 */ "expression ::= function_name NK_LP expression_list NK_RP", /* 280 */ "expression ::= function_name NK_LP NK_STAR NK_RP", /* 281 */ "expression ::= subquery", /* 282 */ "expression ::= NK_LP expression NK_RP", /* 283 */ "expression ::= NK_PLUS expression", /* 284 */ "expression ::= NK_MINUS expression", /* 285 */ "expression ::= expression NK_PLUS expression", /* 286 */ "expression ::= expression NK_MINUS expression", /* 287 */ "expression ::= expression NK_STAR expression", /* 288 */ "expression ::= expression NK_SLASH expression", /* 289 */ "expression ::= expression NK_REM expression", /* 290 */ "expression_list ::= expression", /* 291 */ "expression_list ::= expression_list NK_COMMA expression", /* 292 */ "column_reference ::= column_name", /* 293 */ "column_reference ::= table_name NK_DOT column_name", /* 294 */ "pseudo_column ::= NOW", /* 295 */ "pseudo_column ::= ROWTS", /* 296 */ "pseudo_column ::= TBNAME", /* 297 */ "pseudo_column ::= QSTARTTS", /* 298 */ "pseudo_column ::= QENDTS", /* 299 */ "pseudo_column ::= WSTARTTS", /* 300 */ "pseudo_column ::= WENDTS", /* 301 */ "pseudo_column ::= WDURATION", /* 302 */ "predicate ::= expression compare_op expression", /* 303 */ "predicate ::= expression BETWEEN expression AND expression", /* 304 */ "predicate ::= expression NOT BETWEEN expression AND expression", /* 305 */ "predicate ::= expression IS NULL", /* 306 */ "predicate ::= expression IS NOT NULL", /* 307 */ "predicate ::= expression in_op in_predicate_value", /* 308 */ "compare_op ::= NK_LT", /* 309 */ "compare_op ::= NK_GT", /* 310 */ "compare_op ::= NK_LE", /* 311 */ "compare_op ::= NK_GE", /* 312 */ "compare_op ::= NK_NE", /* 313 */ "compare_op ::= NK_EQ", /* 314 */ "compare_op ::= LIKE", /* 315 */ "compare_op ::= NOT LIKE", /* 316 */ "compare_op ::= MATCH", /* 317 */ "compare_op ::= NMATCH", /* 318 */ "in_op ::= IN", /* 319 */ "in_op ::= NOT IN", /* 320 */ "in_predicate_value ::= NK_LP expression_list NK_RP", /* 321 */ "boolean_value_expression ::= boolean_primary", /* 322 */ "boolean_value_expression ::= NOT boolean_primary", /* 323 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", /* 324 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", /* 325 */ "boolean_primary ::= predicate", /* 326 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", /* 327 */ "common_expression ::= expression", /* 328 */ "common_expression ::= boolean_value_expression", /* 329 */ "from_clause ::= FROM table_reference_list", /* 330 */ "table_reference_list ::= table_reference", /* 331 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", /* 332 */ "table_reference ::= table_primary", /* 333 */ "table_reference ::= joined_table", /* 334 */ "table_primary ::= table_name alias_opt", /* 335 */ "table_primary ::= db_name NK_DOT table_name alias_opt", /* 336 */ "table_primary ::= subquery alias_opt", /* 337 */ "table_primary ::= parenthesized_joined_table", /* 338 */ "alias_opt ::=", /* 339 */ "alias_opt ::= table_alias", /* 340 */ "alias_opt ::= AS table_alias", /* 341 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", /* 342 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", /* 343 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", /* 344 */ "join_type ::=", /* 345 */ "join_type ::= INNER", /* 346 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt", /* 347 */ "set_quantifier_opt ::=", /* 348 */ "set_quantifier_opt ::= DISTINCT", /* 349 */ "set_quantifier_opt ::= ALL", /* 350 */ "select_list ::= NK_STAR", /* 351 */ "select_list ::= select_sublist", /* 352 */ "select_sublist ::= select_item", /* 353 */ "select_sublist ::= select_sublist NK_COMMA select_item", /* 354 */ "select_item ::= common_expression", /* 355 */ "select_item ::= common_expression column_alias", /* 356 */ "select_item ::= common_expression AS column_alias", /* 357 */ "select_item ::= table_name NK_DOT NK_STAR", /* 358 */ "where_clause_opt ::=", /* 359 */ "where_clause_opt ::= WHERE search_condition", /* 360 */ "partition_by_clause_opt ::=", /* 361 */ "partition_by_clause_opt ::= PARTITION BY expression_list", /* 362 */ "twindow_clause_opt ::=", /* 363 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", /* 364 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP", /* 365 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", /* 366 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", /* 367 */ "sliding_opt ::=", /* 368 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", /* 369 */ "fill_opt ::=", /* 370 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", /* 371 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", /* 372 */ "fill_mode ::= NONE", /* 373 */ "fill_mode ::= PREV", /* 374 */ "fill_mode ::= NULL", /* 375 */ "fill_mode ::= LINEAR", /* 376 */ "fill_mode ::= NEXT", /* 377 */ "group_by_clause_opt ::=", /* 378 */ "group_by_clause_opt ::= GROUP BY group_by_list", /* 379 */ "group_by_list ::= expression", /* 380 */ "group_by_list ::= group_by_list NK_COMMA expression", /* 381 */ "having_clause_opt ::=", /* 382 */ "having_clause_opt ::= HAVING search_condition", /* 383 */ "query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt", /* 384 */ "query_expression_body ::= query_primary", /* 385 */ "query_expression_body ::= query_expression_body UNION ALL query_expression_body", /* 386 */ "query_primary ::= query_specification", /* 387 */ "order_by_clause_opt ::=", /* 388 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", /* 389 */ "slimit_clause_opt ::=", /* 390 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", /* 391 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", /* 392 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 393 */ "limit_clause_opt ::=", /* 394 */ "limit_clause_opt ::= LIMIT NK_INTEGER", /* 395 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", /* 396 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", /* 397 */ "subquery ::= NK_LP query_expression NK_RP", /* 398 */ "search_condition ::= common_expression", /* 399 */ "sort_specification_list ::= sort_specification", /* 400 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", /* 401 */ "sort_specification ::= expression ordering_specification_opt null_ordering_opt", /* 402 */ "ordering_specification_opt ::=", /* 403 */ "ordering_specification_opt ::= ASC", /* 404 */ "ordering_specification_opt ::= DESC", /* 405 */ "null_ordering_opt ::=", /* 406 */ "null_ordering_opt ::= NULLS FIRST", /* 407 */ "null_ordering_opt ::= NULLS LAST", }; #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 207: /* cmd */ case 210: /* literal */ case 217: /* db_options */ case 219: /* alter_db_options */ case 224: /* retention */ case 225: /* full_table_name */ case 228: /* table_options */ case 232: /* alter_table_clause */ case 233: /* alter_table_options */ case 236: /* create_subtable_clause */ case 239: /* drop_table_clause */ case 242: /* column_def */ case 245: /* col_name */ case 246: /* db_name_cond_opt */ case 247: /* like_pattern_opt */ case 248: /* table_name_cond */ case 249: /* from_db_opt */ case 250: /* func_name */ case 253: /* index_options */ case 255: /* duration_literal */ case 256: /* sliding_opt */ case 257: /* func */ case 260: /* query_expression */ case 262: /* explain_options */ case 267: /* signed */ case 268: /* signed_literal */ case 271: /* expression */ case 272: /* pseudo_column */ case 273: /* column_reference */ case 274: /* subquery */ case 275: /* predicate */ case 278: /* in_predicate_value */ case 279: /* boolean_value_expression */ case 280: /* boolean_primary */ case 281: /* common_expression */ case 282: /* from_clause */ case 283: /* table_reference_list */ case 284: /* table_reference */ case 285: /* table_primary */ case 286: /* joined_table */ case 288: /* parenthesized_joined_table */ case 290: /* search_condition */ case 291: /* query_specification */ case 294: /* where_clause_opt */ case 296: /* twindow_clause_opt */ case 298: /* having_clause_opt */ case 300: /* select_item */ case 301: /* fill_opt */ case 304: /* query_expression_body */ case 306: /* slimit_clause_opt */ case 307: /* limit_clause_opt */ case 308: /* query_primary */ case 310: /* sort_specification */ { nodesDestroyNode((yypminor->yy564)); } break; case 208: /* account_options */ case 209: /* alter_account_options */ case 211: /* alter_account_option */ case 264: /* bufsize_opt */ { } break; case 212: /* user_name */ case 213: /* dnode_endpoint */ case 214: /* dnode_host_name */ case 216: /* db_name */ case 234: /* column_name */ case 241: /* table_name */ case 251: /* function_name */ case 252: /* index_name */ case 259: /* topic_name */ case 265: /* stream_name */ case 269: /* table_alias */ case 270: /* column_alias */ case 287: /* alias_opt */ { } break; case 215: /* not_exists_opt */ case 218: /* exists_opt */ case 261: /* analyze_opt */ case 263: /* agg_func_opt */ case 292: /* set_quantifier_opt */ { } break; case 220: /* integer_list */ case 221: /* variable_list */ case 222: /* retention_list */ case 226: /* column_def_list */ case 227: /* tags_def_opt */ case 229: /* multi_create_clause */ case 230: /* tags_def */ case 231: /* multi_drop_clause */ case 237: /* specific_tags_opt */ case 238: /* literal_list */ case 240: /* col_name_list */ case 243: /* func_name_list */ case 254: /* func_list */ case 258: /* expression_list */ case 266: /* dnode_list */ case 293: /* select_list */ case 295: /* partition_by_clause_opt */ case 297: /* group_by_clause_opt */ case 299: /* select_sublist */ case 303: /* group_by_list */ case 305: /* order_by_clause_opt */ case 309: /* sort_specification_list */ { nodesDestroyList((yypminor->yy476)); } break; case 223: /* alter_db_option */ case 244: /* alter_table_option */ { } break; case 235: /* type_name */ { } break; case 276: /* compare_op */ case 277: /* in_op */ { } break; case 289: /* join_type */ { } break; case 302: /* fill_mode */ { } break; case 311: /* ordering_specification_opt */ { } break; case 312: /* 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[] = { { 207, -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ { 207, -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { 208, 0 }, /* (2) account_options ::= */ { 208, -3 }, /* (3) account_options ::= account_options PPS literal */ { 208, -3 }, /* (4) account_options ::= account_options TSERIES literal */ { 208, -3 }, /* (5) account_options ::= account_options STORAGE literal */ { 208, -3 }, /* (6) account_options ::= account_options STREAMS literal */ { 208, -3 }, /* (7) account_options ::= account_options QTIME literal */ { 208, -3 }, /* (8) account_options ::= account_options DBS literal */ { 208, -3 }, /* (9) account_options ::= account_options USERS literal */ { 208, -3 }, /* (10) account_options ::= account_options CONNS literal */ { 208, -3 }, /* (11) account_options ::= account_options STATE literal */ { 209, -1 }, /* (12) alter_account_options ::= alter_account_option */ { 209, -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */ { 211, -2 }, /* (14) alter_account_option ::= PASS literal */ { 211, -2 }, /* (15) alter_account_option ::= PPS literal */ { 211, -2 }, /* (16) alter_account_option ::= TSERIES literal */ { 211, -2 }, /* (17) alter_account_option ::= STORAGE literal */ { 211, -2 }, /* (18) alter_account_option ::= STREAMS literal */ { 211, -2 }, /* (19) alter_account_option ::= QTIME literal */ { 211, -2 }, /* (20) alter_account_option ::= DBS literal */ { 211, -2 }, /* (21) alter_account_option ::= USERS literal */ { 211, -2 }, /* (22) alter_account_option ::= CONNS literal */ { 211, -2 }, /* (23) alter_account_option ::= STATE literal */ { 207, -5 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING */ { 207, -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */ { 207, -5 }, /* (26) cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */ { 207, -3 }, /* (27) cmd ::= DROP USER user_name */ { 207, -3 }, /* (28) cmd ::= CREATE DNODE dnode_endpoint */ { 207, -5 }, /* (29) cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */ { 207, -3 }, /* (30) cmd ::= DROP DNODE NK_INTEGER */ { 207, -3 }, /* (31) cmd ::= DROP DNODE dnode_endpoint */ { 207, -4 }, /* (32) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { 207, -5 }, /* (33) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ { 207, -4 }, /* (34) cmd ::= ALTER ALL DNODES NK_STRING */ { 207, -5 }, /* (35) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { 213, -1 }, /* (36) dnode_endpoint ::= NK_STRING */ { 214, -1 }, /* (37) dnode_host_name ::= NK_ID */ { 214, -1 }, /* (38) dnode_host_name ::= NK_IPTOKEN */ { 207, -3 }, /* (39) cmd ::= ALTER LOCAL NK_STRING */ { 207, -4 }, /* (40) cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { 207, -5 }, /* (41) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (42) cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (43) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (44) cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (45) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (46) cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (47) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (48) cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { 207, -5 }, /* (49) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { 207, -4 }, /* (50) cmd ::= DROP DATABASE exists_opt db_name */ { 207, -2 }, /* (51) cmd ::= USE db_name */ { 207, -4 }, /* (52) cmd ::= ALTER DATABASE db_name alter_db_options */ { 215, -3 }, /* (53) not_exists_opt ::= IF NOT EXISTS */ { 215, 0 }, /* (54) not_exists_opt ::= */ { 218, -2 }, /* (55) exists_opt ::= IF EXISTS */ { 218, 0 }, /* (56) exists_opt ::= */ { 217, 0 }, /* (57) db_options ::= */ { 217, -3 }, /* (58) db_options ::= db_options BLOCKS NK_INTEGER */ { 217, -3 }, /* (59) db_options ::= db_options CACHE NK_INTEGER */ { 217, -3 }, /* (60) db_options ::= db_options CACHELAST NK_INTEGER */ { 217, -3 }, /* (61) db_options ::= db_options COMP NK_INTEGER */ { 217, -3 }, /* (62) db_options ::= db_options DAYS NK_INTEGER */ { 217, -3 }, /* (63) db_options ::= db_options DAYS NK_VARIABLE */ { 217, -3 }, /* (64) db_options ::= db_options FSYNC NK_INTEGER */ { 217, -3 }, /* (65) db_options ::= db_options MAXROWS NK_INTEGER */ { 217, -3 }, /* (66) db_options ::= db_options MINROWS NK_INTEGER */ { 217, -3 }, /* (67) db_options ::= db_options KEEP integer_list */ { 217, -3 }, /* (68) db_options ::= db_options KEEP variable_list */ { 217, -3 }, /* (69) db_options ::= db_options PRECISION NK_STRING */ { 217, -3 }, /* (70) db_options ::= db_options QUORUM NK_INTEGER */ { 217, -3 }, /* (71) db_options ::= db_options REPLICA NK_INTEGER */ { 217, -3 }, /* (72) db_options ::= db_options TTL NK_INTEGER */ { 217, -3 }, /* (73) db_options ::= db_options WAL NK_INTEGER */ { 217, -3 }, /* (74) db_options ::= db_options VGROUPS NK_INTEGER */ { 217, -3 }, /* (75) db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { 217, -3 }, /* (76) db_options ::= db_options STREAM_MODE NK_INTEGER */ { 217, -3 }, /* (77) db_options ::= db_options RETENTIONS retention_list */ { 219, -1 }, /* (78) alter_db_options ::= alter_db_option */ { 219, -2 }, /* (79) alter_db_options ::= alter_db_options alter_db_option */ { 223, -2 }, /* (80) alter_db_option ::= BLOCKS NK_INTEGER */ { 223, -2 }, /* (81) alter_db_option ::= FSYNC NK_INTEGER */ { 223, -2 }, /* (82) alter_db_option ::= KEEP integer_list */ { 223, -2 }, /* (83) alter_db_option ::= KEEP variable_list */ { 223, -2 }, /* (84) alter_db_option ::= WAL NK_INTEGER */ { 223, -2 }, /* (85) alter_db_option ::= QUORUM NK_INTEGER */ { 223, -2 }, /* (86) alter_db_option ::= CACHELAST NK_INTEGER */ { 223, -2 }, /* (87) alter_db_option ::= REPLICA NK_INTEGER */ { 220, -1 }, /* (88) integer_list ::= NK_INTEGER */ { 220, -3 }, /* (89) integer_list ::= integer_list NK_COMMA NK_INTEGER */ { 221, -1 }, /* (90) variable_list ::= NK_VARIABLE */ { 221, -3 }, /* (91) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { 222, -1 }, /* (92) retention_list ::= retention */ { 222, -3 }, /* (93) retention_list ::= retention_list NK_COMMA retention */ { 224, -3 }, /* (94) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { 207, -9 }, /* (95) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ { 207, -3 }, /* (96) cmd ::= CREATE TABLE multi_create_clause */ { 207, -9 }, /* (97) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ { 207, -3 }, /* (98) cmd ::= DROP TABLE multi_drop_clause */ { 207, -4 }, /* (99) cmd ::= DROP STABLE exists_opt full_table_name */ { 207, -3 }, /* (100) cmd ::= ALTER TABLE alter_table_clause */ { 207, -3 }, /* (101) cmd ::= ALTER STABLE alter_table_clause */ { 232, -2 }, /* (102) alter_table_clause ::= full_table_name alter_table_options */ { 232, -5 }, /* (103) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { 232, -4 }, /* (104) alter_table_clause ::= full_table_name DROP COLUMN column_name */ { 232, -5 }, /* (105) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { 232, -5 }, /* (106) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { 232, -5 }, /* (107) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { 232, -4 }, /* (108) alter_table_clause ::= full_table_name DROP TAG column_name */ { 232, -5 }, /* (109) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { 232, -5 }, /* (110) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { 232, -6 }, /* (111) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ { 229, -1 }, /* (112) multi_create_clause ::= create_subtable_clause */ { 229, -2 }, /* (113) multi_create_clause ::= multi_create_clause create_subtable_clause */ { 236, -9 }, /* (114) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ { 231, -1 }, /* (115) multi_drop_clause ::= drop_table_clause */ { 231, -2 }, /* (116) multi_drop_clause ::= multi_drop_clause drop_table_clause */ { 239, -2 }, /* (117) drop_table_clause ::= exists_opt full_table_name */ { 237, 0 }, /* (118) specific_tags_opt ::= */ { 237, -3 }, /* (119) specific_tags_opt ::= NK_LP col_name_list NK_RP */ { 225, -1 }, /* (120) full_table_name ::= table_name */ { 225, -3 }, /* (121) full_table_name ::= db_name NK_DOT table_name */ { 226, -1 }, /* (122) column_def_list ::= column_def */ { 226, -3 }, /* (123) column_def_list ::= column_def_list NK_COMMA column_def */ { 242, -2 }, /* (124) column_def ::= column_name type_name */ { 242, -4 }, /* (125) column_def ::= column_name type_name COMMENT NK_STRING */ { 235, -1 }, /* (126) type_name ::= BOOL */ { 235, -1 }, /* (127) type_name ::= TINYINT */ { 235, -1 }, /* (128) type_name ::= SMALLINT */ { 235, -1 }, /* (129) type_name ::= INT */ { 235, -1 }, /* (130) type_name ::= INTEGER */ { 235, -1 }, /* (131) type_name ::= BIGINT */ { 235, -1 }, /* (132) type_name ::= FLOAT */ { 235, -1 }, /* (133) type_name ::= DOUBLE */ { 235, -4 }, /* (134) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { 235, -1 }, /* (135) type_name ::= TIMESTAMP */ { 235, -4 }, /* (136) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { 235, -2 }, /* (137) type_name ::= TINYINT UNSIGNED */ { 235, -2 }, /* (138) type_name ::= SMALLINT UNSIGNED */ { 235, -2 }, /* (139) type_name ::= INT UNSIGNED */ { 235, -2 }, /* (140) type_name ::= BIGINT UNSIGNED */ { 235, -1 }, /* (141) type_name ::= JSON */ { 235, -4 }, /* (142) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { 235, -1 }, /* (143) type_name ::= MEDIUMBLOB */ { 235, -1 }, /* (144) type_name ::= BLOB */ { 235, -4 }, /* (145) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { 235, -1 }, /* (146) type_name ::= DECIMAL */ { 235, -4 }, /* (147) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { 235, -6 }, /* (148) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { 227, 0 }, /* (149) tags_def_opt ::= */ { 227, -1 }, /* (150) tags_def_opt ::= tags_def */ { 230, -4 }, /* (151) tags_def ::= TAGS NK_LP column_def_list NK_RP */ { 228, 0 }, /* (152) table_options ::= */ { 228, -3 }, /* (153) table_options ::= table_options COMMENT NK_STRING */ { 228, -3 }, /* (154) table_options ::= table_options KEEP integer_list */ { 228, -3 }, /* (155) table_options ::= table_options TTL NK_INTEGER */ { 228, -5 }, /* (156) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { 228, -5 }, /* (157) table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ { 228, -3 }, /* (158) table_options ::= table_options FILE_FACTOR NK_FLOAT */ { 228, -3 }, /* (159) table_options ::= table_options DELAY NK_INTEGER */ { 233, -1 }, /* (160) alter_table_options ::= alter_table_option */ { 233, -2 }, /* (161) alter_table_options ::= alter_table_options alter_table_option */ { 244, -2 }, /* (162) alter_table_option ::= COMMENT NK_STRING */ { 244, -2 }, /* (163) alter_table_option ::= KEEP integer_list */ { 244, -2 }, /* (164) alter_table_option ::= TTL NK_INTEGER */ { 240, -1 }, /* (165) col_name_list ::= col_name */ { 240, -3 }, /* (166) col_name_list ::= col_name_list NK_COMMA col_name */ { 245, -1 }, /* (167) col_name ::= column_name */ { 207, -2 }, /* (168) cmd ::= SHOW DNODES */ { 207, -2 }, /* (169) cmd ::= SHOW USERS */ { 207, -2 }, /* (170) cmd ::= SHOW DATABASES */ { 207, -4 }, /* (171) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { 207, -4 }, /* (172) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { 207, -3 }, /* (173) cmd ::= SHOW db_name_cond_opt VGROUPS */ { 207, -2 }, /* (174) cmd ::= SHOW MNODES */ { 207, -2 }, /* (175) cmd ::= SHOW MODULES */ { 207, -2 }, /* (176) cmd ::= SHOW QNODES */ { 207, -2 }, /* (177) cmd ::= SHOW FUNCTIONS */ { 207, -5 }, /* (178) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { 207, -2 }, /* (179) cmd ::= SHOW STREAMS */ { 207, -2 }, /* (180) cmd ::= SHOW ACCOUNTS */ { 207, -2 }, /* (181) cmd ::= SHOW APPS */ { 207, -2 }, /* (182) cmd ::= SHOW CONNECTIONS */ { 207, -2 }, /* (183) cmd ::= SHOW LICENCE */ { 207, -4 }, /* (184) cmd ::= SHOW CREATE DATABASE db_name */ { 207, -4 }, /* (185) cmd ::= SHOW CREATE TABLE full_table_name */ { 207, -4 }, /* (186) cmd ::= SHOW CREATE STABLE full_table_name */ { 207, -2 }, /* (187) cmd ::= SHOW QUERIES */ { 207, -2 }, /* (188) cmd ::= SHOW SCORES */ { 207, -2 }, /* (189) cmd ::= SHOW TOPICS */ { 207, -2 }, /* (190) cmd ::= SHOW VARIABLES */ { 207, -2 }, /* (191) cmd ::= SHOW BNODES */ { 207, -2 }, /* (192) cmd ::= SHOW SNODES */ { 246, 0 }, /* (193) db_name_cond_opt ::= */ { 246, -2 }, /* (194) db_name_cond_opt ::= db_name NK_DOT */ { 247, 0 }, /* (195) like_pattern_opt ::= */ { 247, -2 }, /* (196) like_pattern_opt ::= LIKE NK_STRING */ { 248, -1 }, /* (197) table_name_cond ::= table_name */ { 249, 0 }, /* (198) from_db_opt ::= */ { 249, -2 }, /* (199) from_db_opt ::= FROM db_name */ { 243, -1 }, /* (200) func_name_list ::= func_name */ { 243, -3 }, /* (201) func_name_list ::= func_name_list NK_COMMA col_name */ { 250, -1 }, /* (202) func_name ::= function_name */ { 207, -8 }, /* (203) cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ { 207, -10 }, /* (204) cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ { 207, -6 }, /* (205) cmd ::= DROP INDEX exists_opt index_name ON table_name */ { 253, 0 }, /* (206) index_options ::= */ { 253, -9 }, /* (207) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ { 253, -11 }, /* (208) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ { 254, -1 }, /* (209) func_list ::= func */ { 254, -3 }, /* (210) func_list ::= func_list NK_COMMA func */ { 257, -4 }, /* (211) func ::= function_name NK_LP expression_list NK_RP */ { 207, -6 }, /* (212) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ { 207, -6 }, /* (213) cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ { 207, -4 }, /* (214) cmd ::= DROP TOPIC exists_opt topic_name */ { 207, -2 }, /* (215) cmd ::= DESC full_table_name */ { 207, -2 }, /* (216) cmd ::= DESCRIBE full_table_name */ { 207, -3 }, /* (217) cmd ::= RESET QUERY CACHE */ { 207, -4 }, /* (218) cmd ::= EXPLAIN analyze_opt explain_options query_expression */ { 261, 0 }, /* (219) analyze_opt ::= */ { 261, -1 }, /* (220) analyze_opt ::= ANALYZE */ { 262, 0 }, /* (221) explain_options ::= */ { 262, -3 }, /* (222) explain_options ::= explain_options VERBOSE NK_BOOL */ { 262, -3 }, /* (223) explain_options ::= explain_options RATIO NK_FLOAT */ { 207, -6 }, /* (224) cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ { 207, -9 }, /* (225) cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ { 207, -3 }, /* (226) cmd ::= DROP FUNCTION function_name */ { 263, 0 }, /* (227) agg_func_opt ::= */ { 263, -1 }, /* (228) agg_func_opt ::= AGGREGATE */ { 264, 0 }, /* (229) bufsize_opt ::= */ { 264, -2 }, /* (230) bufsize_opt ::= BUFSIZE NK_INTEGER */ { 207, -7 }, /* (231) cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression */ { 207, -3 }, /* (232) cmd ::= DROP STREAM stream_name */ { 207, -3 }, /* (233) cmd ::= KILL CONNECTION NK_INTEGER */ { 207, -3 }, /* (234) cmd ::= KILL QUERY NK_INTEGER */ { 207, -4 }, /* (235) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { 207, -4 }, /* (236) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { 207, -3 }, /* (237) cmd ::= SPLIT VGROUP NK_INTEGER */ { 266, -2 }, /* (238) dnode_list ::= DNODE NK_INTEGER */ { 266, -3 }, /* (239) dnode_list ::= dnode_list DNODE NK_INTEGER */ { 207, -3 }, /* (240) cmd ::= SYNCDB db_name REPLICA */ { 207, -1 }, /* (241) cmd ::= query_expression */ { 210, -1 }, /* (242) literal ::= NK_INTEGER */ { 210, -1 }, /* (243) literal ::= NK_FLOAT */ { 210, -1 }, /* (244) literal ::= NK_STRING */ { 210, -1 }, /* (245) literal ::= NK_BOOL */ { 210, -2 }, /* (246) literal ::= TIMESTAMP NK_STRING */ { 210, -1 }, /* (247) literal ::= duration_literal */ { 210, -1 }, /* (248) literal ::= NULL */ { 255, -1 }, /* (249) duration_literal ::= NK_VARIABLE */ { 267, -1 }, /* (250) signed ::= NK_INTEGER */ { 267, -2 }, /* (251) signed ::= NK_PLUS NK_INTEGER */ { 267, -2 }, /* (252) signed ::= NK_MINUS NK_INTEGER */ { 267, -1 }, /* (253) signed ::= NK_FLOAT */ { 267, -2 }, /* (254) signed ::= NK_PLUS NK_FLOAT */ { 267, -2 }, /* (255) signed ::= NK_MINUS NK_FLOAT */ { 268, -1 }, /* (256) signed_literal ::= signed */ { 268, -1 }, /* (257) signed_literal ::= NK_STRING */ { 268, -1 }, /* (258) signed_literal ::= NK_BOOL */ { 268, -2 }, /* (259) signed_literal ::= TIMESTAMP NK_STRING */ { 268, -1 }, /* (260) signed_literal ::= duration_literal */ { 268, -1 }, /* (261) signed_literal ::= NULL */ { 238, -1 }, /* (262) literal_list ::= signed_literal */ { 238, -3 }, /* (263) literal_list ::= literal_list NK_COMMA signed_literal */ { 216, -1 }, /* (264) db_name ::= NK_ID */ { 241, -1 }, /* (265) table_name ::= NK_ID */ { 234, -1 }, /* (266) column_name ::= NK_ID */ { 251, -1 }, /* (267) function_name ::= NK_ID */ { 251, -1 }, /* (268) function_name ::= FIRST */ { 251, -1 }, /* (269) function_name ::= LAST */ { 269, -1 }, /* (270) table_alias ::= NK_ID */ { 270, -1 }, /* (271) column_alias ::= NK_ID */ { 212, -1 }, /* (272) user_name ::= NK_ID */ { 252, -1 }, /* (273) index_name ::= NK_ID */ { 259, -1 }, /* (274) topic_name ::= NK_ID */ { 265, -1 }, /* (275) stream_name ::= NK_ID */ { 271, -1 }, /* (276) expression ::= literal */ { 271, -1 }, /* (277) expression ::= pseudo_column */ { 271, -1 }, /* (278) expression ::= column_reference */ { 271, -4 }, /* (279) expression ::= function_name NK_LP expression_list NK_RP */ { 271, -4 }, /* (280) expression ::= function_name NK_LP NK_STAR NK_RP */ { 271, -1 }, /* (281) expression ::= subquery */ { 271, -3 }, /* (282) expression ::= NK_LP expression NK_RP */ { 271, -2 }, /* (283) expression ::= NK_PLUS expression */ { 271, -2 }, /* (284) expression ::= NK_MINUS expression */ { 271, -3 }, /* (285) expression ::= expression NK_PLUS expression */ { 271, -3 }, /* (286) expression ::= expression NK_MINUS expression */ { 271, -3 }, /* (287) expression ::= expression NK_STAR expression */ { 271, -3 }, /* (288) expression ::= expression NK_SLASH expression */ { 271, -3 }, /* (289) expression ::= expression NK_REM expression */ { 258, -1 }, /* (290) expression_list ::= expression */ { 258, -3 }, /* (291) expression_list ::= expression_list NK_COMMA expression */ { 273, -1 }, /* (292) column_reference ::= column_name */ { 273, -3 }, /* (293) column_reference ::= table_name NK_DOT column_name */ { 272, -1 }, /* (294) pseudo_column ::= NOW */ { 272, -1 }, /* (295) pseudo_column ::= ROWTS */ { 272, -1 }, /* (296) pseudo_column ::= TBNAME */ { 272, -1 }, /* (297) pseudo_column ::= QSTARTTS */ { 272, -1 }, /* (298) pseudo_column ::= QENDTS */ { 272, -1 }, /* (299) pseudo_column ::= WSTARTTS */ { 272, -1 }, /* (300) pseudo_column ::= WENDTS */ { 272, -1 }, /* (301) pseudo_column ::= WDURATION */ { 275, -3 }, /* (302) predicate ::= expression compare_op expression */ { 275, -5 }, /* (303) predicate ::= expression BETWEEN expression AND expression */ { 275, -6 }, /* (304) predicate ::= expression NOT BETWEEN expression AND expression */ { 275, -3 }, /* (305) predicate ::= expression IS NULL */ { 275, -4 }, /* (306) predicate ::= expression IS NOT NULL */ { 275, -3 }, /* (307) predicate ::= expression in_op in_predicate_value */ { 276, -1 }, /* (308) compare_op ::= NK_LT */ { 276, -1 }, /* (309) compare_op ::= NK_GT */ { 276, -1 }, /* (310) compare_op ::= NK_LE */ { 276, -1 }, /* (311) compare_op ::= NK_GE */ { 276, -1 }, /* (312) compare_op ::= NK_NE */ { 276, -1 }, /* (313) compare_op ::= NK_EQ */ { 276, -1 }, /* (314) compare_op ::= LIKE */ { 276, -2 }, /* (315) compare_op ::= NOT LIKE */ { 276, -1 }, /* (316) compare_op ::= MATCH */ { 276, -1 }, /* (317) compare_op ::= NMATCH */ { 277, -1 }, /* (318) in_op ::= IN */ { 277, -2 }, /* (319) in_op ::= NOT IN */ { 278, -3 }, /* (320) in_predicate_value ::= NK_LP expression_list NK_RP */ { 279, -1 }, /* (321) boolean_value_expression ::= boolean_primary */ { 279, -2 }, /* (322) boolean_value_expression ::= NOT boolean_primary */ { 279, -3 }, /* (323) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { 279, -3 }, /* (324) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { 280, -1 }, /* (325) boolean_primary ::= predicate */ { 280, -3 }, /* (326) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ { 281, -1 }, /* (327) common_expression ::= expression */ { 281, -1 }, /* (328) common_expression ::= boolean_value_expression */ { 282, -2 }, /* (329) from_clause ::= FROM table_reference_list */ { 283, -1 }, /* (330) table_reference_list ::= table_reference */ { 283, -3 }, /* (331) table_reference_list ::= table_reference_list NK_COMMA table_reference */ { 284, -1 }, /* (332) table_reference ::= table_primary */ { 284, -1 }, /* (333) table_reference ::= joined_table */ { 285, -2 }, /* (334) table_primary ::= table_name alias_opt */ { 285, -4 }, /* (335) table_primary ::= db_name NK_DOT table_name alias_opt */ { 285, -2 }, /* (336) table_primary ::= subquery alias_opt */ { 285, -1 }, /* (337) table_primary ::= parenthesized_joined_table */ { 287, 0 }, /* (338) alias_opt ::= */ { 287, -1 }, /* (339) alias_opt ::= table_alias */ { 287, -2 }, /* (340) alias_opt ::= AS table_alias */ { 288, -3 }, /* (341) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ { 288, -3 }, /* (342) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ { 286, -6 }, /* (343) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { 289, 0 }, /* (344) join_type ::= */ { 289, -1 }, /* (345) join_type ::= INNER */ { 291, -9 }, /* (346) query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { 292, 0 }, /* (347) set_quantifier_opt ::= */ { 292, -1 }, /* (348) set_quantifier_opt ::= DISTINCT */ { 292, -1 }, /* (349) set_quantifier_opt ::= ALL */ { 293, -1 }, /* (350) select_list ::= NK_STAR */ { 293, -1 }, /* (351) select_list ::= select_sublist */ { 299, -1 }, /* (352) select_sublist ::= select_item */ { 299, -3 }, /* (353) select_sublist ::= select_sublist NK_COMMA select_item */ { 300, -1 }, /* (354) select_item ::= common_expression */ { 300, -2 }, /* (355) select_item ::= common_expression column_alias */ { 300, -3 }, /* (356) select_item ::= common_expression AS column_alias */ { 300, -3 }, /* (357) select_item ::= table_name NK_DOT NK_STAR */ { 294, 0 }, /* (358) where_clause_opt ::= */ { 294, -2 }, /* (359) where_clause_opt ::= WHERE search_condition */ { 295, 0 }, /* (360) partition_by_clause_opt ::= */ { 295, -3 }, /* (361) partition_by_clause_opt ::= PARTITION BY expression_list */ { 296, 0 }, /* (362) twindow_clause_opt ::= */ { 296, -6 }, /* (363) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { 296, -4 }, /* (364) twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ { 296, -6 }, /* (365) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { 296, -8 }, /* (366) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { 256, 0 }, /* (367) sliding_opt ::= */ { 256, -4 }, /* (368) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ { 301, 0 }, /* (369) fill_opt ::= */ { 301, -4 }, /* (370) fill_opt ::= FILL NK_LP fill_mode NK_RP */ { 301, -6 }, /* (371) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ { 302, -1 }, /* (372) fill_mode ::= NONE */ { 302, -1 }, /* (373) fill_mode ::= PREV */ { 302, -1 }, /* (374) fill_mode ::= NULL */ { 302, -1 }, /* (375) fill_mode ::= LINEAR */ { 302, -1 }, /* (376) fill_mode ::= NEXT */ { 297, 0 }, /* (377) group_by_clause_opt ::= */ { 297, -3 }, /* (378) group_by_clause_opt ::= GROUP BY group_by_list */ { 303, -1 }, /* (379) group_by_list ::= expression */ { 303, -3 }, /* (380) group_by_list ::= group_by_list NK_COMMA expression */ { 298, 0 }, /* (381) having_clause_opt ::= */ { 298, -2 }, /* (382) having_clause_opt ::= HAVING search_condition */ { 260, -4 }, /* (383) query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ { 304, -1 }, /* (384) query_expression_body ::= query_primary */ { 304, -4 }, /* (385) query_expression_body ::= query_expression_body UNION ALL query_expression_body */ { 308, -1 }, /* (386) query_primary ::= query_specification */ { 305, 0 }, /* (387) order_by_clause_opt ::= */ { 305, -3 }, /* (388) order_by_clause_opt ::= ORDER BY sort_specification_list */ { 306, 0 }, /* (389) slimit_clause_opt ::= */ { 306, -2 }, /* (390) slimit_clause_opt ::= SLIMIT NK_INTEGER */ { 306, -4 }, /* (391) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ { 306, -4 }, /* (392) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 307, 0 }, /* (393) limit_clause_opt ::= */ { 307, -2 }, /* (394) limit_clause_opt ::= LIMIT NK_INTEGER */ { 307, -4 }, /* (395) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ { 307, -4 }, /* (396) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ { 274, -3 }, /* (397) subquery ::= NK_LP query_expression NK_RP */ { 290, -1 }, /* (398) search_condition ::= common_expression */ { 309, -1 }, /* (399) sort_specification_list ::= sort_specification */ { 309, -3 }, /* (400) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ { 310, -3 }, /* (401) sort_specification ::= expression ordering_specification_opt null_ordering_opt */ { 311, 0 }, /* (402) ordering_specification_opt ::= */ { 311, -1 }, /* (403) ordering_specification_opt ::= ASC */ { 311, -1 }, /* (404) ordering_specification_opt ::= DESC */ { 312, 0 }, /* (405) null_ordering_opt ::= */ { 312, -2 }, /* (406) null_ordering_opt ::= NULLS FIRST */ { 312, -2 }, /* (407) null_ordering_opt ::= NULLS LAST */ }; 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->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } yy_destructor(yypParser,208,&yymsp[0].minor); break; case 1: /* cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } yy_destructor(yypParser,209,&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,208,&yymsp[-2].minor); { } yy_destructor(yypParser,210,&yymsp[0].minor); } break; case 12: /* alter_account_options ::= alter_account_option */ { yy_destructor(yypParser,211,&yymsp[0].minor); { } } break; case 13: /* alter_account_options ::= alter_account_options alter_account_option */ { yy_destructor(yypParser,209,&yymsp[-1].minor); { } yy_destructor(yypParser,211,&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,210,&yymsp[0].minor); break; case 24: /* cmd ::= CREATE USER user_name PASS NK_STRING */ { pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); } break; case 25: /* cmd ::= ALTER USER user_name PASS NK_STRING */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy21, TSDB_ALTER_USER_PASSWD, &yymsp[0].minor.yy0); } break; case 26: /* cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */ { pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy21, TSDB_ALTER_USER_PRIVILEGES, &yymsp[0].minor.yy0); } break; case 27: /* cmd ::= DROP USER user_name */ { pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy21); } break; case 28: /* cmd ::= CREATE DNODE dnode_endpoint */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy21, NULL); } break; case 29: /* cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */ { pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); } break; case 30: /* cmd ::= DROP DNODE NK_INTEGER */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy0); } break; case 31: /* cmd ::= DROP DNODE dnode_endpoint */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy21); } break; case 32: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, NULL); } break; case 33: /* 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 34: /* cmd ::= ALTER ALL DNODES NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[0].minor.yy0, NULL); } break; case 35: /* cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, NULL, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 36: /* dnode_endpoint ::= NK_STRING */ case 37: /* dnode_host_name ::= NK_ID */ yytestcase(yyruleno==37); case 38: /* dnode_host_name ::= NK_IPTOKEN */ yytestcase(yyruleno==38); case 264: /* db_name ::= NK_ID */ yytestcase(yyruleno==264); case 265: /* table_name ::= NK_ID */ yytestcase(yyruleno==265); case 266: /* column_name ::= NK_ID */ yytestcase(yyruleno==266); case 267: /* function_name ::= NK_ID */ yytestcase(yyruleno==267); case 268: /* function_name ::= FIRST */ yytestcase(yyruleno==268); case 269: /* function_name ::= LAST */ yytestcase(yyruleno==269); case 270: /* table_alias ::= NK_ID */ yytestcase(yyruleno==270); case 271: /* column_alias ::= NK_ID */ yytestcase(yyruleno==271); case 272: /* user_name ::= NK_ID */ yytestcase(yyruleno==272); case 273: /* index_name ::= NK_ID */ yytestcase(yyruleno==273); case 274: /* topic_name ::= NK_ID */ yytestcase(yyruleno==274); case 275: /* stream_name ::= NK_ID */ yytestcase(yyruleno==275); { yylhsminor.yy21 = yymsp[0].minor.yy0; } yymsp[0].minor.yy21 = yylhsminor.yy21; break; case 39: /* cmd ::= ALTER LOCAL NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 40: /* cmd ::= ALTER LOCAL NK_STRING NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 41: /* cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 42: /* cmd ::= DROP QNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_QNODE_STMT, &yymsp[0].minor.yy0); } break; case 43: /* cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 44: /* cmd ::= DROP BNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_BNODE_STMT, &yymsp[0].minor.yy0); } break; case 45: /* cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 46: /* cmd ::= DROP SNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_SNODE_STMT, &yymsp[0].minor.yy0); } break; case 47: /* cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createCreateComponentNodeStmt(pCxt, QUERY_NODE_CREATE_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 48: /* cmd ::= DROP MNODE ON DNODE NK_INTEGER */ { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 49: /* cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ { pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy173, &yymsp[-1].minor.yy21, yymsp[0].minor.yy564); } break; case 50: /* cmd ::= DROP DATABASE exists_opt db_name */ { pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy173, &yymsp[0].minor.yy21); } break; case 51: /* cmd ::= USE db_name */ { pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy21); } break; case 52: /* cmd ::= ALTER DATABASE db_name alter_db_options */ { pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy21, yymsp[0].minor.yy564); } break; case 53: /* not_exists_opt ::= IF NOT EXISTS */ { yymsp[-2].minor.yy173 = true; } break; case 54: /* not_exists_opt ::= */ case 56: /* exists_opt ::= */ yytestcase(yyruleno==56); case 219: /* analyze_opt ::= */ yytestcase(yyruleno==219); case 227: /* agg_func_opt ::= */ yytestcase(yyruleno==227); case 347: /* set_quantifier_opt ::= */ yytestcase(yyruleno==347); { yymsp[1].minor.yy173 = false; } break; case 55: /* exists_opt ::= IF EXISTS */ { yymsp[-1].minor.yy173 = true; } break; case 57: /* db_options ::= */ { yymsp[1].minor.yy564 = createDatabaseOptions(pCxt); } break; case 58: /* db_options ::= db_options BLOCKS NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pNumOfBlocks = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 59: /* db_options ::= db_options CACHE NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCacheBlockSize = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 60: /* db_options ::= db_options CACHELAST NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCachelast = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 61: /* db_options ::= db_options COMP NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pCompressionLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 62: /* db_options ::= db_options DAYS NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pDaysPerFile = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 63: /* db_options ::= db_options DAYS NK_VARIABLE */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pDaysPerFile = (SValueNode*)createDurationValueNode(pCxt, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 64: /* db_options ::= db_options FSYNC NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pFsyncPeriod = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 65: /* db_options ::= db_options MAXROWS NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pMaxRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 66: /* db_options ::= db_options MINROWS NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pMinRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 67: /* db_options ::= db_options KEEP integer_list */ case 68: /* db_options ::= db_options KEEP variable_list */ yytestcase(yyruleno==68); { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pKeep = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 69: /* db_options ::= db_options PRECISION NK_STRING */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pPrecision = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 70: /* db_options ::= db_options QUORUM NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pQuorum = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 71: /* db_options ::= db_options REPLICA NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pReplica = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 72: /* db_options ::= db_options TTL NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 73: /* db_options ::= db_options WAL NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pWalLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 74: /* db_options ::= db_options VGROUPS NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pNumOfVgroups = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 75: /* db_options ::= db_options SINGLE_STABLE NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pSingleStable = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 76: /* db_options ::= db_options STREAM_MODE NK_INTEGER */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pStreamMode = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 77: /* db_options ::= db_options RETENTIONS retention_list */ { ((SDatabaseOptions*)yymsp[-2].minor.yy564)->pRetentions = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 78: /* alter_db_options ::= alter_db_option */ { yylhsminor.yy564 = createDatabaseOptions(pCxt); yylhsminor.yy564 = setDatabaseAlterOption(pCxt, yylhsminor.yy564, &yymsp[0].minor.yy289); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 79: /* alter_db_options ::= alter_db_options alter_db_option */ { yylhsminor.yy564 = setDatabaseAlterOption(pCxt, yymsp[-1].minor.yy564, &yymsp[0].minor.yy289); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 80: /* alter_db_option ::= BLOCKS NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_BLOCKS; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 81: /* alter_db_option ::= FSYNC NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 82: /* alter_db_option ::= KEEP integer_list */ case 83: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==83); { yymsp[-1].minor.yy289.type = DB_OPTION_KEEP; yymsp[-1].minor.yy289.pList = yymsp[0].minor.yy476; } break; case 84: /* alter_db_option ::= WAL NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_WAL; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 85: /* alter_db_option ::= QUORUM NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_QUORUM; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 86: /* alter_db_option ::= CACHELAST NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_CACHELAST; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 87: /* alter_db_option ::= REPLICA NK_INTEGER */ { yymsp[-1].minor.yy289.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 88: /* integer_list ::= NK_INTEGER */ { yylhsminor.yy476 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 89: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ case 239: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==239); { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy476 = yylhsminor.yy476; break; case 90: /* variable_list ::= NK_VARIABLE */ { yylhsminor.yy476 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 91: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy476 = yylhsminor.yy476; break; case 92: /* retention_list ::= retention */ case 112: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==112); case 115: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==115); case 122: /* column_def_list ::= column_def */ yytestcase(yyruleno==122); case 165: /* col_name_list ::= col_name */ yytestcase(yyruleno==165); case 200: /* func_name_list ::= func_name */ yytestcase(yyruleno==200); case 209: /* func_list ::= func */ yytestcase(yyruleno==209); case 262: /* literal_list ::= signed_literal */ yytestcase(yyruleno==262); case 352: /* select_sublist ::= select_item */ yytestcase(yyruleno==352); case 399: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==399); { yylhsminor.yy476 = createNodeList(pCxt, yymsp[0].minor.yy564); } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 93: /* retention_list ::= retention_list NK_COMMA retention */ case 123: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==123); case 166: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==166); case 201: /* func_name_list ::= func_name_list NK_COMMA col_name */ yytestcase(yyruleno==201); case 210: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==210); case 263: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==263); case 353: /* select_sublist ::= select_sublist NK_COMMA select_item */ yytestcase(yyruleno==353); case 400: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==400); { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, yymsp[0].minor.yy564); } yymsp[-2].minor.yy476 = yylhsminor.yy476; break; case 94: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { yylhsminor.yy564 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 95: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ case 97: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==97); { pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy173, yymsp[-5].minor.yy564, yymsp[-3].minor.yy476, yymsp[-1].minor.yy476, yymsp[0].minor.yy564); } break; case 96: /* cmd ::= CREATE TABLE multi_create_clause */ { pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy476); } break; case 98: /* cmd ::= DROP TABLE multi_drop_clause */ { pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy476); } break; case 99: /* cmd ::= DROP STABLE exists_opt full_table_name */ { pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy173, yymsp[0].minor.yy564); } break; case 100: /* cmd ::= ALTER TABLE alter_table_clause */ case 101: /* cmd ::= ALTER STABLE alter_table_clause */ yytestcase(yyruleno==101); case 241: /* cmd ::= query_expression */ yytestcase(yyruleno==241); { pCxt->pRootNode = yymsp[0].minor.yy564; } break; case 102: /* alter_table_clause ::= full_table_name alter_table_options */ { yylhsminor.yy564 = createAlterTableOption(pCxt, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 103: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 104: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ { yylhsminor.yy564 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy564, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy21); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 105: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 106: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { yylhsminor.yy564 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 107: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 108: /* alter_table_clause ::= full_table_name DROP TAG column_name */ { yylhsminor.yy564 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy564, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy21); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 109: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { yylhsminor.yy564 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 110: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { yylhsminor.yy564 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy564, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 111: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ { yylhsminor.yy564 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy564, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564); } yymsp[-5].minor.yy564 = yylhsminor.yy564; break; case 113: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ case 116: /* multi_drop_clause ::= multi_drop_clause drop_table_clause */ yytestcase(yyruleno==116); { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-1].minor.yy476, yymsp[0].minor.yy564); } yymsp[-1].minor.yy476 = yylhsminor.yy476; break; case 114: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ { yylhsminor.yy564 = createCreateSubTableClause(pCxt, yymsp[-8].minor.yy173, yymsp[-7].minor.yy564, yymsp[-5].minor.yy564, yymsp[-4].minor.yy476, yymsp[-1].minor.yy476); } yymsp[-8].minor.yy564 = yylhsminor.yy564; break; case 117: /* drop_table_clause ::= exists_opt full_table_name */ { yylhsminor.yy564 = createDropTableClause(pCxt, yymsp[-1].minor.yy173, yymsp[0].minor.yy564); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 118: /* specific_tags_opt ::= */ case 149: /* tags_def_opt ::= */ yytestcase(yyruleno==149); case 360: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==360); case 377: /* group_by_clause_opt ::= */ yytestcase(yyruleno==377); case 387: /* order_by_clause_opt ::= */ yytestcase(yyruleno==387); { yymsp[1].minor.yy476 = NULL; } break; case 119: /* specific_tags_opt ::= NK_LP col_name_list NK_RP */ { yymsp[-2].minor.yy476 = yymsp[-1].minor.yy476; } break; case 120: /* full_table_name ::= table_name */ { yylhsminor.yy564 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy21, NULL); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 121: /* full_table_name ::= db_name NK_DOT table_name */ { yylhsminor.yy564 = createRealTableNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21, NULL); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 124: /* column_def ::= column_name type_name */ { yylhsminor.yy564 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy21, yymsp[0].minor.yy288, NULL); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 125: /* column_def ::= column_name type_name COMMENT NK_STRING */ { yylhsminor.yy564 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-2].minor.yy288, &yymsp[0].minor.yy0); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 126: /* type_name ::= BOOL */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BOOL); } break; case 127: /* type_name ::= TINYINT */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_TINYINT); } break; case 128: /* type_name ::= SMALLINT */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_SMALLINT); } break; case 129: /* type_name ::= INT */ case 130: /* type_name ::= INTEGER */ yytestcase(yyruleno==130); { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_INT); } break; case 131: /* type_name ::= BIGINT */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BIGINT); } break; case 132: /* type_name ::= FLOAT */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_FLOAT); } break; case 133: /* type_name ::= DOUBLE */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_DOUBLE); } break; case 134: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } break; case 135: /* type_name ::= TIMESTAMP */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } break; case 136: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } break; case 137: /* type_name ::= TINYINT UNSIGNED */ { yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UTINYINT); } break; case 138: /* type_name ::= SMALLINT UNSIGNED */ { yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_USMALLINT); } break; case 139: /* type_name ::= INT UNSIGNED */ { yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UINT); } break; case 140: /* type_name ::= BIGINT UNSIGNED */ { yymsp[-1].minor.yy288 = createDataType(TSDB_DATA_TYPE_UBIGINT); } break; case 141: /* type_name ::= JSON */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_JSON); } break; case 142: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } break; case 143: /* type_name ::= MEDIUMBLOB */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } break; case 144: /* type_name ::= BLOB */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_BLOB); } break; case 145: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy288 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } break; case 146: /* type_name ::= DECIMAL */ { yymsp[0].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 147: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 148: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { yymsp[-5].minor.yy288 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; case 150: /* tags_def_opt ::= tags_def */ case 351: /* select_list ::= select_sublist */ yytestcase(yyruleno==351); { yylhsminor.yy476 = yymsp[0].minor.yy476; } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 151: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ { yymsp[-3].minor.yy476 = yymsp[-1].minor.yy476; } break; case 152: /* table_options ::= */ { yymsp[1].minor.yy564 = createTableOptions(pCxt); } break; case 153: /* table_options ::= table_options COMMENT NK_STRING */ { ((STableOptions*)yymsp[-2].minor.yy564)->pComments = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 154: /* table_options ::= table_options KEEP integer_list */ { ((STableOptions*)yymsp[-2].minor.yy564)->pKeep = yymsp[0].minor.yy476; yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 155: /* table_options ::= table_options TTL NK_INTEGER */ { ((STableOptions*)yymsp[-2].minor.yy564)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 156: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { ((STableOptions*)yymsp[-4].minor.yy564)->pSma = yymsp[-1].minor.yy476; yylhsminor.yy564 = yymsp[-4].minor.yy564; } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 157: /* table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ { ((STableOptions*)yymsp[-4].minor.yy564)->pFuncs = yymsp[-1].minor.yy476; yylhsminor.yy564 = yymsp[-4].minor.yy564; } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 158: /* table_options ::= table_options FILE_FACTOR NK_FLOAT */ { ((STableOptions*)yymsp[-2].minor.yy564)->pFilesFactor = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 159: /* table_options ::= table_options DELAY NK_INTEGER */ { ((STableOptions*)yymsp[-2].minor.yy564)->pDelay = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy564 = yymsp[-2].minor.yy564; } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 160: /* alter_table_options ::= alter_table_option */ { yylhsminor.yy564 = createTableOptions(pCxt); yylhsminor.yy564 = setTableAlterOption(pCxt, yylhsminor.yy564, &yymsp[0].minor.yy289); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 161: /* alter_table_options ::= alter_table_options alter_table_option */ { yylhsminor.yy564 = setTableAlterOption(pCxt, yymsp[-1].minor.yy564, &yymsp[0].minor.yy289); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 162: /* alter_table_option ::= COMMENT NK_STRING */ { yymsp[-1].minor.yy289.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; case 163: /* alter_table_option ::= KEEP integer_list */ { yymsp[-1].minor.yy289.type = TABLE_OPTION_KEEP; yymsp[-1].minor.yy289.pList = yymsp[0].minor.yy476; } break; case 164: /* alter_table_option ::= TTL NK_INTEGER */ { yymsp[-1].minor.yy289.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy289.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 167: /* col_name ::= column_name */ { yylhsminor.yy564 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy21); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 168: /* cmd ::= SHOW DNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT, NULL, NULL); } break; case 169: /* cmd ::= SHOW USERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT, NULL, NULL); } break; case 170: /* cmd ::= SHOW DATABASES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT, NULL, NULL); } break; case 171: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); } break; case 172: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); } break; case 173: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy564, NULL); } break; case 174: /* cmd ::= SHOW MNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT, NULL, NULL); } break; case 175: /* cmd ::= SHOW MODULES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MODULES_STMT, NULL, NULL); } break; case 176: /* cmd ::= SHOW QNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT, NULL, NULL); } break; case 177: /* cmd ::= SHOW FUNCTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT, NULL, NULL); } break; case 178: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); } break; case 179: /* cmd ::= SHOW STREAMS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT, NULL, NULL); } break; case 180: /* cmd ::= SHOW ACCOUNTS */ { pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } break; case 181: /* cmd ::= SHOW APPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT, NULL, NULL); } break; case 182: /* cmd ::= SHOW CONNECTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT, NULL, NULL); } break; case 183: /* cmd ::= SHOW LICENCE */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCE_STMT, NULL, NULL); } break; case 184: /* cmd ::= SHOW CREATE DATABASE db_name */ { pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy21); } break; case 185: /* cmd ::= SHOW CREATE TABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy564); } break; case 186: /* cmd ::= SHOW CREATE STABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy564); } break; case 187: /* cmd ::= SHOW QUERIES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT, NULL, NULL); } break; case 188: /* cmd ::= SHOW SCORES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT, NULL, NULL); } break; case 189: /* cmd ::= SHOW TOPICS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT, NULL, NULL); } break; case 190: /* cmd ::= SHOW VARIABLES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLE_STMT, NULL, NULL); } break; case 191: /* cmd ::= SHOW BNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT, NULL, NULL); } break; case 192: /* cmd ::= SHOW SNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT, NULL, NULL); } break; case 193: /* db_name_cond_opt ::= */ case 198: /* from_db_opt ::= */ yytestcase(yyruleno==198); { yymsp[1].minor.yy564 = createDefaultDatabaseCondValue(pCxt); } break; case 194: /* db_name_cond_opt ::= db_name NK_DOT */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy21); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 195: /* like_pattern_opt ::= */ case 206: /* index_options ::= */ yytestcase(yyruleno==206); case 358: /* where_clause_opt ::= */ yytestcase(yyruleno==358); case 362: /* twindow_clause_opt ::= */ yytestcase(yyruleno==362); case 367: /* sliding_opt ::= */ yytestcase(yyruleno==367); case 369: /* fill_opt ::= */ yytestcase(yyruleno==369); case 381: /* having_clause_opt ::= */ yytestcase(yyruleno==381); case 389: /* slimit_clause_opt ::= */ yytestcase(yyruleno==389); case 393: /* limit_clause_opt ::= */ yytestcase(yyruleno==393); { yymsp[1].minor.yy564 = NULL; } break; case 196: /* like_pattern_opt ::= LIKE NK_STRING */ { yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; case 197: /* table_name_cond ::= table_name */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy21); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 199: /* from_db_opt ::= FROM db_name */ { yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy21); } break; case 202: /* func_name ::= function_name */ { yylhsminor.yy564 = createFunctionNode(pCxt, &yymsp[0].minor.yy21, NULL); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 203: /* cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy173, &yymsp[-3].minor.yy21, &yymsp[-1].minor.yy21, NULL, yymsp[0].minor.yy564); } break; case 204: /* cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_FULLTEXT, yymsp[-6].minor.yy173, &yymsp[-5].minor.yy21, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476, NULL); } break; case 205: /* cmd ::= DROP INDEX exists_opt index_name ON table_name */ { pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21); } break; case 207: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ { yymsp[-8].minor.yy564 = createIndexOption(pCxt, yymsp[-6].minor.yy476, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), NULL, yymsp[0].minor.yy564); } break; case 208: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ { yymsp[-10].minor.yy564 = createIndexOption(pCxt, yymsp[-8].minor.yy476, releaseRawExprNode(pCxt, yymsp[-4].minor.yy564), releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), yymsp[0].minor.yy564); } break; case 211: /* func ::= function_name NK_LP expression_list NK_RP */ { yylhsminor.yy564 = createFunctionNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 212: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ { pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564, NULL); } break; case 213: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ { pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy173, &yymsp[-2].minor.yy21, NULL, &yymsp[0].minor.yy21); } break; case 214: /* cmd ::= DROP TOPIC exists_opt topic_name */ { pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy173, &yymsp[0].minor.yy21); } break; case 215: /* cmd ::= DESC full_table_name */ case 216: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==216); { pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy564); } break; case 217: /* cmd ::= RESET QUERY CACHE */ { pCxt->pRootNode = createResetQueryCacheStmt(pCxt); } break; case 218: /* cmd ::= EXPLAIN analyze_opt explain_options query_expression */ { pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy173, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); } break; case 220: /* analyze_opt ::= ANALYZE */ case 228: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==228); case 348: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==348); { yymsp[0].minor.yy173 = true; } break; case 221: /* explain_options ::= */ { yymsp[1].minor.yy564 = createDefaultExplainOptions(pCxt); } break; case 222: /* explain_options ::= explain_options VERBOSE NK_BOOL */ { yylhsminor.yy564 = setExplainVerbose(pCxt, yymsp[-2].minor.yy564, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 223: /* explain_options ::= explain_options RATIO NK_FLOAT */ { yylhsminor.yy564 = setExplainRatio(pCxt, yymsp[-2].minor.yy564, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 224: /* cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ { pCxt->pRootNode = createCompactStmt(pCxt, yymsp[-1].minor.yy476); } break; case 225: /* cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ { pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-7].minor.yy173, &yymsp[-5].minor.yy21, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy288, yymsp[0].minor.yy620); } break; case 226: /* cmd ::= DROP FUNCTION function_name */ { pCxt->pRootNode = createDropFunctionStmt(pCxt, &yymsp[0].minor.yy21); } break; case 229: /* bufsize_opt ::= */ { yymsp[1].minor.yy620 = 0; } break; case 230: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ { yymsp[-1].minor.yy620 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; case 231: /* cmd ::= CREATE STREAM stream_name INTO table_name AS query_expression */ { pCxt->pRootNode = createCreateStreamStmt(pCxt, &yymsp[-4].minor.yy21, &yymsp[-2].minor.yy21, yymsp[0].minor.yy564); } break; case 232: /* cmd ::= DROP STREAM stream_name */ { pCxt->pRootNode = createDropStreamStmt(pCxt, &yymsp[0].minor.yy21); } break; case 233: /* cmd ::= KILL CONNECTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); } break; case 234: /* cmd ::= KILL QUERY NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_QUERY_STMT, &yymsp[0].minor.yy0); } break; case 235: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; case 236: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy476); } break; case 237: /* cmd ::= SPLIT VGROUP NK_INTEGER */ { pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); } break; case 238: /* dnode_list ::= DNODE NK_INTEGER */ { yymsp[-1].minor.yy476 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } break; case 240: /* cmd ::= SYNCDB db_name REPLICA */ { pCxt->pRootNode = createSyncdbStmt(pCxt, &yymsp[-1].minor.yy21); } break; case 242: /* literal ::= NK_INTEGER */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 243: /* literal ::= NK_FLOAT */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 244: /* literal ::= NK_STRING */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 245: /* literal ::= NK_BOOL */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 246: /* literal ::= TIMESTAMP NK_STRING */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 247: /* literal ::= duration_literal */ case 256: /* signed_literal ::= signed */ yytestcase(yyruleno==256); case 276: /* expression ::= literal */ yytestcase(yyruleno==276); case 277: /* expression ::= pseudo_column */ yytestcase(yyruleno==277); case 278: /* expression ::= column_reference */ yytestcase(yyruleno==278); case 281: /* expression ::= subquery */ yytestcase(yyruleno==281); case 321: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==321); case 325: /* boolean_primary ::= predicate */ yytestcase(yyruleno==325); case 327: /* common_expression ::= expression */ yytestcase(yyruleno==327); case 328: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==328); case 330: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==330); case 332: /* table_reference ::= table_primary */ yytestcase(yyruleno==332); case 333: /* table_reference ::= joined_table */ yytestcase(yyruleno==333); case 337: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==337); case 384: /* query_expression_body ::= query_primary */ yytestcase(yyruleno==384); case 386: /* query_primary ::= query_specification */ yytestcase(yyruleno==386); { yylhsminor.yy564 = yymsp[0].minor.yy564; } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 248: /* literal ::= NULL */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 249: /* duration_literal ::= NK_VARIABLE */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 250: /* signed ::= NK_INTEGER */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 251: /* signed ::= NK_PLUS NK_INTEGER */ { yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; case 252: /* signed ::= NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 253: /* signed ::= NK_FLOAT */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 254: /* signed ::= NK_PLUS NK_FLOAT */ { yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } break; case 255: /* 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.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 257: /* signed_literal ::= NK_STRING */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 258: /* signed_literal ::= NK_BOOL */ { yylhsminor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 259: /* signed_literal ::= TIMESTAMP NK_STRING */ { yymsp[-1].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; case 260: /* signed_literal ::= duration_literal */ case 354: /* select_item ::= common_expression */ yytestcase(yyruleno==354); case 398: /* search_condition ::= common_expression */ yytestcase(yyruleno==398); { yylhsminor.yy564 = releaseRawExprNode(pCxt, yymsp[0].minor.yy564); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 261: /* signed_literal ::= NULL */ { yymsp[0].minor.yy564 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL); } break; case 279: /* expression ::= function_name NK_LP expression_list NK_RP */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy21, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy21, yymsp[-1].minor.yy476)); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 280: /* expression ::= function_name NK_LP NK_STAR NK_RP */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy21, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy21, createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[-1].minor.yy0)))); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 282: /* expression ::= NK_LP expression NK_RP */ case 326: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==326); { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 283: /* expression ::= NK_PLUS expression */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy564)); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 284: /* expression ::= NK_MINUS expression */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy564), NULL)); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 285: /* expression ::= expression NK_PLUS expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 286: /* expression ::= expression NK_MINUS expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 287: /* expression ::= expression NK_STAR expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 288: /* expression ::= expression NK_SLASH expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 289: /* expression ::= expression NK_REM expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MOD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 290: /* expression_list ::= expression */ { yylhsminor.yy476 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564)); } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 291: /* expression_list ::= expression_list NK_COMMA expression */ { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, releaseRawExprNode(pCxt, yymsp[0].minor.yy564)); } yymsp[-2].minor.yy476 = yylhsminor.yy476; break; case 292: /* column_reference ::= column_name */ { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy21, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy21)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 293: /* column_reference ::= table_name NK_DOT column_name */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21, createColumnNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy21)); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 294: /* pseudo_column ::= NOW */ case 295: /* pseudo_column ::= ROWTS */ yytestcase(yyruleno==295); case 296: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==296); case 297: /* pseudo_column ::= QSTARTTS */ yytestcase(yyruleno==297); case 298: /* pseudo_column ::= QENDTS */ yytestcase(yyruleno==298); case 299: /* pseudo_column ::= WSTARTTS */ yytestcase(yyruleno==299); case 300: /* pseudo_column ::= WENDTS */ yytestcase(yyruleno==300); case 301: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==301); { yylhsminor.yy564 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } yymsp[0].minor.yy564 = yylhsminor.yy564; break; case 302: /* predicate ::= expression compare_op expression */ case 307: /* predicate ::= expression in_op in_predicate_value */ yytestcase(yyruleno==307); { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy468, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 303: /* predicate ::= expression BETWEEN expression AND expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy564), releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-4].minor.yy564 = yylhsminor.yy564; break; case 304: /* predicate ::= expression NOT BETWEEN expression AND expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[-5].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-5].minor.yy564 = yylhsminor.yy564; break; case 305: /* predicate ::= expression IS NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), NULL)); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 306: /* predicate ::= expression IS NOT NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), NULL)); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 308: /* compare_op ::= NK_LT */ { yymsp[0].minor.yy468 = OP_TYPE_LOWER_THAN; } break; case 309: /* compare_op ::= NK_GT */ { yymsp[0].minor.yy468 = OP_TYPE_GREATER_THAN; } break; case 310: /* compare_op ::= NK_LE */ { yymsp[0].minor.yy468 = OP_TYPE_LOWER_EQUAL; } break; case 311: /* compare_op ::= NK_GE */ { yymsp[0].minor.yy468 = OP_TYPE_GREATER_EQUAL; } break; case 312: /* compare_op ::= NK_NE */ { yymsp[0].minor.yy468 = OP_TYPE_NOT_EQUAL; } break; case 313: /* compare_op ::= NK_EQ */ { yymsp[0].minor.yy468 = OP_TYPE_EQUAL; } break; case 314: /* compare_op ::= LIKE */ { yymsp[0].minor.yy468 = OP_TYPE_LIKE; } break; case 315: /* compare_op ::= NOT LIKE */ { yymsp[-1].minor.yy468 = OP_TYPE_NOT_LIKE; } break; case 316: /* compare_op ::= MATCH */ { yymsp[0].minor.yy468 = OP_TYPE_MATCH; } break; case 317: /* compare_op ::= NMATCH */ { yymsp[0].minor.yy468 = OP_TYPE_NMATCH; } break; case 318: /* in_op ::= IN */ { yymsp[0].minor.yy468 = OP_TYPE_IN; } break; case 319: /* in_op ::= NOT IN */ { yymsp[-1].minor.yy468 = OP_TYPE_NOT_IN; } break; case 320: /* in_predicate_value ::= NK_LP expression_list NK_RP */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy476)); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 322: /* boolean_value_expression ::= NOT boolean_primary */ { SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy564), NULL)); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 323: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 324: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy564); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy564); yylhsminor.yy564 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 329: /* from_clause ::= FROM table_reference_list */ case 359: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==359); case 382: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==382); { yymsp[-1].minor.yy564 = yymsp[0].minor.yy564; } break; case 331: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ { yylhsminor.yy564 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy564, yymsp[0].minor.yy564, NULL); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 334: /* table_primary ::= table_name alias_opt */ { yylhsminor.yy564 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 335: /* table_primary ::= db_name NK_DOT table_name alias_opt */ { yylhsminor.yy564 = createRealTableNode(pCxt, &yymsp[-3].minor.yy21, &yymsp[-1].minor.yy21, &yymsp[0].minor.yy21); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 336: /* table_primary ::= subquery alias_opt */ { yylhsminor.yy564 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564), &yymsp[0].minor.yy21); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 338: /* alias_opt ::= */ { yymsp[1].minor.yy21 = nil_token; } break; case 339: /* alias_opt ::= table_alias */ { yylhsminor.yy21 = yymsp[0].minor.yy21; } yymsp[0].minor.yy21 = yylhsminor.yy21; break; case 340: /* alias_opt ::= AS table_alias */ { yymsp[-1].minor.yy21 = yymsp[0].minor.yy21; } break; case 341: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ case 342: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==342); { yymsp[-2].minor.yy564 = yymsp[-1].minor.yy564; } break; case 343: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { yylhsminor.yy564 = createJoinTableNode(pCxt, yymsp[-4].minor.yy440, yymsp[-5].minor.yy564, yymsp[-2].minor.yy564, yymsp[0].minor.yy564); } yymsp[-5].minor.yy564 = yylhsminor.yy564; break; case 344: /* join_type ::= */ { yymsp[1].minor.yy440 = JOIN_TYPE_INNER; } break; case 345: /* join_type ::= INNER */ { yymsp[0].minor.yy440 = JOIN_TYPE_INNER; } break; case 346: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { yymsp[-8].minor.yy564 = createSelectStmt(pCxt, yymsp[-7].minor.yy173, yymsp[-6].minor.yy476, yymsp[-5].minor.yy564); yymsp[-8].minor.yy564 = addWhereClause(pCxt, yymsp[-8].minor.yy564, yymsp[-4].minor.yy564); yymsp[-8].minor.yy564 = addPartitionByClause(pCxt, yymsp[-8].minor.yy564, yymsp[-3].minor.yy476); yymsp[-8].minor.yy564 = addWindowClauseClause(pCxt, yymsp[-8].minor.yy564, yymsp[-2].minor.yy564); yymsp[-8].minor.yy564 = addGroupByClause(pCxt, yymsp[-8].minor.yy564, yymsp[-1].minor.yy476); yymsp[-8].minor.yy564 = addHavingClause(pCxt, yymsp[-8].minor.yy564, yymsp[0].minor.yy564); } break; case 349: /* set_quantifier_opt ::= ALL */ { yymsp[0].minor.yy173 = false; } break; case 350: /* select_list ::= NK_STAR */ { yymsp[0].minor.yy476 = NULL; } break; case 355: /* select_item ::= common_expression column_alias */ { yylhsminor.yy564 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564), &yymsp[0].minor.yy21); } yymsp[-1].minor.yy564 = yylhsminor.yy564; break; case 356: /* select_item ::= common_expression AS column_alias */ { yylhsminor.yy564 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), &yymsp[0].minor.yy21); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 357: /* select_item ::= table_name NK_DOT NK_STAR */ { yylhsminor.yy564 = createColumnNode(pCxt, &yymsp[-2].minor.yy21, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 361: /* partition_by_clause_opt ::= PARTITION BY expression_list */ case 378: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==378); case 388: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==388); { yymsp[-2].minor.yy476 = yymsp[0].minor.yy476; } break; case 363: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { yymsp[-5].minor.yy564 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); } break; case 364: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ { yymsp[-3].minor.yy564 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy564)); } break; case 365: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-5].minor.yy564 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), NULL, yymsp[-1].minor.yy564, yymsp[0].minor.yy564); } break; case 366: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-7].minor.yy564 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy564), releaseRawExprNode(pCxt, yymsp[-3].minor.yy564), yymsp[-1].minor.yy564, yymsp[0].minor.yy564); } break; case 368: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ { yymsp[-3].minor.yy564 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy564); } break; case 370: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ { yymsp[-3].minor.yy564 = createFillNode(pCxt, yymsp[-1].minor.yy268, NULL); } break; case 371: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ { yymsp[-5].minor.yy564 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy476)); } break; case 372: /* fill_mode ::= NONE */ { yymsp[0].minor.yy268 = FILL_MODE_NONE; } break; case 373: /* fill_mode ::= PREV */ { yymsp[0].minor.yy268 = FILL_MODE_PREV; } break; case 374: /* fill_mode ::= NULL */ { yymsp[0].minor.yy268 = FILL_MODE_NULL; } break; case 375: /* fill_mode ::= LINEAR */ { yymsp[0].minor.yy268 = FILL_MODE_LINEAR; } break; case 376: /* fill_mode ::= NEXT */ { yymsp[0].minor.yy268 = FILL_MODE_NEXT; } break; case 379: /* group_by_list ::= expression */ { yylhsminor.yy476 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[0].minor.yy476 = yylhsminor.yy476; break; case 380: /* group_by_list ::= group_by_list NK_COMMA expression */ { yylhsminor.yy476 = addNodeToList(pCxt, yymsp[-2].minor.yy476, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy564))); } yymsp[-2].minor.yy476 = yylhsminor.yy476; break; case 383: /* query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ { yylhsminor.yy564 = addOrderByClause(pCxt, yymsp[-3].minor.yy564, yymsp[-2].minor.yy476); yylhsminor.yy564 = addSlimitClause(pCxt, yylhsminor.yy564, yymsp[-1].minor.yy564); yylhsminor.yy564 = addLimitClause(pCxt, yylhsminor.yy564, yymsp[0].minor.yy564); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 385: /* query_expression_body ::= query_expression_body UNION ALL query_expression_body */ { yylhsminor.yy564 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy564, yymsp[0].minor.yy564); } yymsp[-3].minor.yy564 = yylhsminor.yy564; break; case 390: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ case 394: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==394); { yymsp[-1].minor.yy564 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } break; case 391: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ case 395: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==395); { yymsp[-3].minor.yy564 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; case 392: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ case 396: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==396); { yymsp[-3].minor.yy564 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } break; case 397: /* subquery ::= NK_LP query_expression NK_RP */ { yylhsminor.yy564 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy564); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 401: /* sort_specification ::= expression ordering_specification_opt null_ordering_opt */ { yylhsminor.yy564 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy564), yymsp[-1].minor.yy256, yymsp[0].minor.yy525); } yymsp[-2].minor.yy564 = yylhsminor.yy564; break; case 402: /* ordering_specification_opt ::= */ { yymsp[1].minor.yy256 = ORDER_ASC; } break; case 403: /* ordering_specification_opt ::= ASC */ { yymsp[0].minor.yy256 = ORDER_ASC; } break; case 404: /* ordering_specification_opt ::= DESC */ { yymsp[0].minor.yy256 = ORDER_DESC; } break; case 405: /* null_ordering_opt ::= */ { yymsp[1].minor.yy525 = NULL_ORDER_DEFAULT; } break; case 406: /* null_ordering_opt ::= NULLS FIRST */ { yymsp[-1].minor.yy525 = NULL_ORDER_FIRST; } break; case 407: /* null_ordering_opt ::= NULLS LAST */ { yymsp[-1].minor.yy525 = 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 (pCxt->valid) { if(TOKEN.z) { generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_SYNTAX_ERROR, TOKEN.z); } else { generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INCOMPLETE_SQL); } pCxt->valid = false; } /************ 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; }