From e5de317f4499f07c0ab66923c442bfb8a0ba157c Mon Sep 17 00:00:00 2001 From: Xiaoyu Wang Date: Thu, 9 Mar 2023 16:04:38 +0800 Subject: [PATCH] feat: alter database stt_trigger/minrows --- include/common/tmsg.h | 1 + source/common/src/tmsg.c | 4 + source/dnode/mnode/impl/src/mndDb.c | 12 + source/libs/parser/inc/sql.y | 1 + source/libs/parser/src/parTranslater.c | 6 +- source/libs/parser/src/sql.c | 4041 +++++++++-------- .../parser/test/parAlterToBalanceTest.cpp | 13 + 7 files changed, 2057 insertions(+), 2021 deletions(-) diff --git a/include/common/tmsg.h b/include/common/tmsg.h index 2a0602a813..2e47e4d3b3 100644 --- a/include/common/tmsg.h +++ b/include/common/tmsg.h @@ -845,6 +845,7 @@ typedef struct { int8_t cacheLast; int8_t replications; int32_t sstTrigger; + int32_t minRows; } SAlterDbReq; int32_t tSerializeSAlterDbReq(void* buf, int32_t bufLen, SAlterDbReq* pReq); diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index 4dbe974ccd..3cf2baa370 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -2219,6 +2219,7 @@ int32_t tSerializeSAlterDbReq(void *buf, int32_t bufLen, SAlterDbReq *pReq) { if (tEncodeI8(&encoder, pReq->cacheLast) < 0) return -1; if (tEncodeI8(&encoder, pReq->replications) < 0) return -1; if (tEncodeI32(&encoder, pReq->sstTrigger) < 0) return -1; + if (tEncodeI32(&encoder, pReq->minRows) < 0) return -1; tEndEncode(&encoder); int32_t tlen = encoder.pos; @@ -2246,6 +2247,9 @@ int32_t tDeserializeSAlterDbReq(void *buf, int32_t bufLen, SAlterDbReq *pReq) { if (tDecodeI8(&decoder, &pReq->cacheLast) < 0) return -1; if (tDecodeI8(&decoder, &pReq->replications) < 0) return -1; if (tDecodeI32(&decoder, &pReq->sstTrigger) < 0) return -1; + if (!tDecodeIsEnd(&decoder)) { + if (tDecodeI32(&decoder, &pReq->minRows) < 0) return -1; + } tEndDecode(&decoder); tDecoderClear(&decoder); diff --git a/source/dnode/mnode/impl/src/mndDb.c b/source/dnode/mnode/impl/src/mndDb.c index af76971304..e848a81d40 100644 --- a/source/dnode/mnode/impl/src/mndDb.c +++ b/source/dnode/mnode/impl/src/mndDb.c @@ -725,6 +725,18 @@ static int32_t mndSetDbCfgFromAlterDbReq(SDbObj *pDb, SAlterDbReq *pAlter) { terrno = 0; } + if (pAlter->sstTrigger > 0 && pAlter->sstTrigger != pDb->cfg.sstTrigger) { + pDb->cfg.sstTrigger = pAlter->sstTrigger; + pDb->vgVersion++; + terrno = 0; + } + + if (pAlter->minRows > 0 && pAlter->minRows != pDb->cfg.minRows) { + pDb->cfg.minRows = pAlter->minRows; + pDb->vgVersion++; + terrno = 0; + } + return terrno; } diff --git a/source/libs/parser/inc/sql.y b/source/libs/parser/inc/sql.y index db418169a5..9fd8d5415a 100644 --- a/source/libs/parser/inc/sql.y +++ b/source/libs/parser/inc/sql.y @@ -236,6 +236,7 @@ alter_db_option(A) ::= REPLICA NK_INTEGER(B). //alter_db_option(A) ::= STRICT NK_STRING(B). { A.type = DB_OPTION_STRICT; A.val = B; } alter_db_option(A) ::= WAL_LEVEL NK_INTEGER(B). { A.type = DB_OPTION_WAL; A.val = B; } alter_db_option(A) ::= STT_TRIGGER NK_INTEGER(B). { A.type = DB_OPTION_STT_TRIGGER; A.val = B; } +alter_db_option(A) ::= MINROWS NK_INTEGER(B). { A.type = DB_OPTION_MINROWS; A.val = B; } %type integer_list { SNodeList* } %destructor integer_list { nodesDestroyList($$); } diff --git a/source/libs/parser/src/parTranslater.c b/source/libs/parser/src/parTranslater.c index b937eeb9d8..9d1fd3218e 100644 --- a/source/libs/parser/src/parTranslater.c +++ b/source/libs/parser/src/parTranslater.c @@ -2500,9 +2500,8 @@ static int32_t translateTable(STranslateContext* pCxt, SNode* pTable) { STempTableNode* pTempTable = (STempTableNode*)pTable; code = translateSubquery(pCxt, pTempTable->pSubquery); if (TSDB_CODE_SUCCESS == code) { - if (QUERY_NODE_SELECT_STMT == nodeType(pTempTable->pSubquery) && - ((SSelectStmt*)pTempTable->pSubquery)->isEmptyResult && - isSelectStmt(pCxt->pCurrStmt)) { + if (QUERY_NODE_SELECT_STMT == nodeType(pTempTable->pSubquery) && + ((SSelectStmt*)pTempTable->pSubquery)->isEmptyResult && isSelectStmt(pCxt->pCurrStmt)) { ((SSelectStmt*)pCxt->pCurrStmt)->isEmptyResult = true; } @@ -4254,6 +4253,7 @@ static void buildAlterDbReq(STranslateContext* pCxt, SAlterDatabaseStmt* pStmt, pReq->cacheLastSize = pStmt->pOptions->cacheLastSize; pReq->replications = pStmt->pOptions->replica; pReq->sstTrigger = pStmt->pOptions->sstTrigger; + pReq->minRows = pStmt->pOptions->minRowsPerBlock; return; } diff --git a/source/libs/parser/src/sql.c b/source/libs/parser/src/sql.c index 6df57cd32b..291d35ebe3 100644 --- a/source/libs/parser/src/sql.c +++ b/source/libs/parser/src/sql.c @@ -139,17 +139,17 @@ typedef union { #define ParseCTX_FETCH #define ParseCTX_STORE #define YYFALLBACK 1 -#define YYNSTATE 751 -#define YYNRULE 571 +#define YYNSTATE 752 +#define YYNRULE 572 #define YYNTOKEN 328 -#define YY_MAX_SHIFT 750 -#define YY_MIN_SHIFTREDUCE 1116 -#define YY_MAX_SHIFTREDUCE 1686 -#define YY_ERROR_ACTION 1687 -#define YY_ACCEPT_ACTION 1688 -#define YY_NO_ACTION 1689 -#define YY_MIN_REDUCE 1690 -#define YY_MAX_REDUCE 2260 +#define YY_MAX_SHIFT 751 +#define YY_MIN_SHIFTREDUCE 1118 +#define YY_MAX_SHIFTREDUCE 1689 +#define YY_ERROR_ACTION 1690 +#define YY_ACCEPT_ACTION 1691 +#define YY_NO_ACTION 1692 +#define YY_MIN_REDUCE 1693 +#define YY_MAX_REDUCE 2264 /************* End control #defines *******************************************/ #define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0]))) @@ -218,506 +218,506 @@ typedef union { *********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (2669) static const YYACTIONTYPE yy_action[] = { - /* 0 */ 387, 376, 490, 2072, 491, 1726, 603, 1841, 161, 164, - /* 10 */ 2231, 1149, 45, 43, 1614, 363, 176, 1854, 1854, 549, - /* 20 */ 384, 1843, 1463, 615, 1903, 602, 182, 1971, 1247, 2058, - /* 30 */ 2232, 604, 2054, 1544, 559, 1461, 2090, 351, 1954, 375, - /* 40 */ 2054, 1246, 1968, 627, 618, 1971, 13, 12, 236, 2040, - /* 50 */ 1151, 656, 1154, 1155, 1488, 166, 139, 1702, 1539, 1488, - /* 60 */ 1969, 627, 1905, 552, 18, 1905, 2050, 2056, 546, 349, - /* 70 */ 1688, 1469, 362, 235, 2050, 2056, 365, 650, 1903, 640, - /* 80 */ 2071, 1903, 429, 178, 2107, 650, 2235, 109, 2073, 660, - /* 90 */ 2075, 2076, 655, 639, 650, 132, 1892, 747, 2236, 179, - /* 100 */ 14, 2160, 529, 476, 389, 378, 2156, 1898, 1900, 167, - /* 110 */ 45, 43, 1852, 625, 69, 1490, 1798, 68, 384, 184, - /* 120 */ 1463, 269, 2168, 614, 332, 133, 613, 2186, 508, 2231, - /* 130 */ 1490, 1544, 499, 1461, 491, 1726, 1546, 1547, 397, 603, - /* 140 */ 621, 31, 396, 2231, 602, 182, 1587, 38, 37, 2232, - /* 150 */ 604, 44, 42, 41, 40, 39, 1539, 489, 602, 182, - /* 160 */ 494, 1732, 18, 2232, 604, 1489, 1519, 1529, 1713, 1469, - /* 170 */ 1756, 122, 1545, 1548, 121, 120, 119, 118, 117, 116, - /* 180 */ 115, 114, 113, 578, 598, 578, 1464, 2231, 1462, 2231, - /* 190 */ 44, 42, 41, 40, 39, 747, 1676, 639, 14, 694, - /* 200 */ 1382, 1383, 2237, 182, 2237, 182, 593, 2232, 604, 2232, - /* 210 */ 604, 176, 1467, 1468, 2040, 1518, 1521, 1522, 1523, 1524, - /* 220 */ 1525, 1526, 1527, 1528, 652, 648, 1537, 1538, 1540, 1541, - /* 230 */ 1542, 1543, 2, 1955, 1546, 1547, 724, 723, 722, 721, - /* 240 */ 394, 1712, 720, 719, 143, 714, 713, 712, 711, 710, - /* 250 */ 709, 708, 156, 704, 703, 702, 393, 392, 699, 698, - /* 260 */ 697, 696, 695, 271, 1519, 1529, 639, 567, 38, 37, - /* 270 */ 1545, 1548, 44, 42, 41, 40, 39, 48, 271, 640, - /* 280 */ 1491, 1327, 1328, 467, 1464, 692, 1462, 2040, 238, 599, - /* 290 */ 594, 587, 237, 38, 37, 132, 1487, 44, 42, 41, - /* 300 */ 40, 39, 534, 154, 153, 689, 688, 687, 151, 86, - /* 310 */ 1467, 1468, 1852, 1518, 1521, 1522, 1523, 1524, 1525, 1526, - /* 320 */ 1527, 1528, 652, 648, 1537, 1538, 1540, 1541, 1542, 1543, - /* 330 */ 2, 11, 45, 43, 1848, 498, 626, 2059, 494, 1732, - /* 340 */ 384, 1293, 1463, 423, 198, 197, 48, 422, 2054, 344, - /* 350 */ 89, 339, 606, 1544, 361, 1461, 560, 1284, 682, 681, - /* 360 */ 680, 1288, 679, 1290, 1291, 678, 675, 466, 1299, 672, - /* 370 */ 1301, 1302, 669, 666, 1691, 194, 35, 290, 1539, 1829, - /* 380 */ 496, 2072, 2050, 2056, 18, 506, 492, 1964, 578, 610, - /* 390 */ 2033, 1469, 2231, 650, 1573, 122, 1899, 1900, 121, 120, - /* 400 */ 119, 118, 117, 116, 115, 114, 113, 2237, 182, 86, - /* 410 */ 281, 282, 2232, 604, 2090, 280, 83, 747, 1618, 82, - /* 420 */ 14, 1168, 657, 1167, 1488, 353, 185, 2040, 249, 656, - /* 430 */ 45, 43, 1549, 61, 1847, 578, 222, 1554, 384, 2231, - /* 440 */ 1463, 38, 37, 1488, 49, 44, 42, 41, 40, 39, - /* 450 */ 1574, 1544, 1169, 1461, 2237, 182, 1546, 1547, 2071, 2232, - /* 460 */ 604, 100, 2107, 272, 106, 109, 2073, 660, 2075, 2076, - /* 470 */ 655, 1690, 650, 1711, 1710, 142, 1539, 149, 2131, 2160, - /* 480 */ 140, 718, 716, 378, 2156, 1845, 1519, 1529, 1844, 1469, - /* 490 */ 1759, 692, 1545, 1548, 1746, 131, 130, 129, 128, 127, - /* 500 */ 126, 125, 124, 123, 11, 61, 1464, 92, 1462, 154, - /* 510 */ 153, 689, 688, 687, 151, 747, 545, 1488, 46, 2040, - /* 520 */ 2040, 34, 382, 1568, 1569, 1570, 1571, 1572, 1576, 1577, - /* 530 */ 1578, 1579, 1467, 1468, 1469, 1518, 1521, 1522, 1523, 1524, - /* 540 */ 1525, 1526, 1527, 1528, 652, 648, 1537, 1538, 1540, 1541, - /* 550 */ 1542, 1543, 2, 1251, 1546, 1547, 544, 543, 542, 544, - /* 560 */ 543, 542, 1489, 685, 136, 538, 1250, 136, 538, 537, - /* 570 */ 1520, 1611, 537, 2090, 536, 541, 2058, 536, 541, 2072, - /* 580 */ 535, 597, 185, 535, 1519, 1529, 615, 2054, 706, 1520, - /* 590 */ 1545, 1548, 558, 185, 38, 37, 65, 61, 44, 42, - /* 600 */ 41, 40, 39, 33, 1464, 556, 1462, 554, 1491, 38, - /* 610 */ 37, 1683, 2090, 44, 42, 41, 40, 39, 611, 139, - /* 620 */ 618, 2050, 2056, 366, 1837, 2040, 596, 656, 478, 1839, - /* 630 */ 1467, 1468, 650, 1518, 1521, 1522, 1523, 1524, 1525, 1526, - /* 640 */ 1527, 1528, 652, 648, 1537, 1538, 1540, 1541, 1542, 1543, - /* 650 */ 2, 45, 43, 61, 185, 1905, 2071, 640, 239, 384, - /* 660 */ 2107, 1463, 372, 109, 2073, 660, 2075, 2076, 655, 1642, - /* 670 */ 650, 1903, 1544, 187, 1461, 179, 577, 2160, 1399, 1400, - /* 680 */ 1950, 378, 2156, 617, 180, 2168, 2169, 1653, 137, 2173, - /* 690 */ 1852, 190, 61, 640, 38, 37, 2072, 1539, 44, 42, - /* 700 */ 41, 40, 39, 2187, 41, 40, 39, 1682, 1835, 54, - /* 710 */ 1469, 626, 1709, 684, 1398, 1401, 590, 589, 1640, 1641, - /* 720 */ 1643, 1644, 1645, 1437, 1438, 2175, 1852, 38, 37, 2090, - /* 730 */ 27, 44, 42, 41, 40, 39, 747, 657, 421, 46, - /* 740 */ 420, 2236, 2040, 2236, 656, 2231, 185, 2231, 52, 45, - /* 750 */ 43, 2172, 2175, 640, 2034, 1236, 191, 384, 2040, 1463, - /* 760 */ 624, 2235, 1964, 2235, 419, 2232, 2234, 2232, 2233, 427, - /* 770 */ 1544, 387, 1461, 2071, 640, 1546, 1547, 2107, 2171, 164, - /* 780 */ 168, 2073, 660, 2075, 2076, 655, 1852, 650, 1854, 626, - /* 790 */ 241, 1238, 416, 640, 1905, 1539, 1708, 640, 2072, 578, - /* 800 */ 640, 377, 185, 2231, 1707, 1519, 1529, 1852, 1469, 428, - /* 810 */ 1903, 1545, 1548, 437, 418, 414, 452, 1610, 2237, 182, - /* 820 */ 1630, 579, 2197, 2232, 604, 1464, 1852, 1462, 390, 1828, - /* 830 */ 1852, 2090, 1935, 1852, 747, 430, 164, 14, 635, 657, - /* 840 */ 1964, 185, 2040, 615, 2040, 1854, 656, 1168, 431, 1167, - /* 850 */ 2040, 1467, 1468, 1575, 1518, 1521, 1522, 1523, 1524, 1525, - /* 860 */ 1526, 1527, 1528, 652, 648, 1537, 1538, 1540, 1541, 1542, - /* 870 */ 1543, 2, 1488, 1546, 1547, 2071, 139, 244, 1169, 2107, - /* 880 */ 1706, 1705, 109, 2073, 660, 2075, 2076, 655, 165, 650, - /* 890 */ 1905, 2058, 694, 310, 2135, 615, 2160, 388, 540, 539, - /* 900 */ 378, 2156, 2054, 1519, 1529, 1704, 1903, 308, 72, 1545, - /* 910 */ 1548, 71, 141, 38, 37, 2131, 8, 44, 42, 41, - /* 920 */ 40, 39, 2175, 1464, 32, 1462, 2040, 2040, 139, 205, - /* 930 */ 486, 484, 481, 1701, 1580, 1700, 2050, 2056, 379, 1154, - /* 940 */ 1155, 181, 2168, 2169, 2072, 137, 2173, 650, 2170, 1467, - /* 950 */ 1468, 2040, 1518, 1521, 1522, 1523, 1524, 1525, 1526, 1527, - /* 960 */ 1528, 652, 648, 1537, 1538, 1540, 1541, 1542, 1543, 2, - /* 970 */ 61, 335, 640, 1486, 2072, 2180, 1607, 2090, 1699, 2040, - /* 980 */ 460, 2040, 651, 474, 640, 657, 473, 447, 453, 1703, - /* 990 */ 2040, 1698, 656, 183, 2168, 2169, 446, 137, 2173, 1697, - /* 1000 */ 507, 443, 11, 475, 9, 1852, 445, 2090, 108, 1799, - /* 1010 */ 640, 640, 373, 13, 12, 657, 1827, 1852, 1520, 152, - /* 1020 */ 2040, 2071, 656, 640, 2040, 2107, 1849, 623, 109, 2073, - /* 1030 */ 660, 2075, 2076, 655, 642, 650, 2132, 2040, 640, 574, - /* 1040 */ 2251, 1696, 2160, 1852, 1852, 2040, 378, 2156, 80, 79, - /* 1050 */ 426, 2071, 352, 189, 619, 2107, 1852, 2194, 327, 2073, - /* 1060 */ 660, 2075, 2076, 655, 433, 650, 644, 1695, 2132, 1463, - /* 1070 */ 1491, 1852, 333, 163, 1694, 412, 53, 410, 406, 402, - /* 1080 */ 399, 419, 1461, 1950, 1950, 1693, 2008, 2040, 573, 2072, - /* 1090 */ 707, 565, 1814, 471, 192, 196, 465, 464, 463, 462, + /* 0 */ 1975, 1845, 387, 2076, 429, 604, 627, 2062, 141, 2235, + /* 10 */ 161, 2135, 45, 43, 1617, 1973, 628, 363, 2058, 1858, + /* 20 */ 384, 2062, 1466, 616, 603, 182, 1907, 2062, 496, 2236, + /* 30 */ 605, 2030, 2058, 1547, 492, 1464, 2094, 640, 2058, 44, + /* 40 */ 42, 41, 40, 39, 619, 1170, 332, 1169, 640, 2044, + /* 50 */ 1491, 657, 2054, 2060, 365, 506, 139, 1968, 1542, 1909, + /* 60 */ 222, 2240, 1909, 651, 18, 2235, 2054, 2060, 366, 349, + /* 70 */ 1691, 1472, 2054, 2060, 379, 1908, 1171, 651, 1907, 404, + /* 80 */ 2075, 2239, 176, 651, 2111, 2236, 2238, 109, 2077, 661, + /* 90 */ 2079, 2080, 656, 1151, 651, 166, 167, 748, 1705, 179, + /* 100 */ 14, 2164, 1801, 351, 1958, 378, 2160, 1491, 38, 37, + /* 110 */ 45, 43, 44, 42, 41, 40, 39, 48, 384, 184, + /* 120 */ 1466, 269, 2172, 615, 176, 133, 614, 2190, 48, 2235, + /* 130 */ 61, 1547, 1153, 1464, 1156, 1157, 1549, 1550, 397, 604, + /* 140 */ 622, 31, 396, 2235, 603, 182, 1959, 38, 37, 2236, + /* 150 */ 605, 44, 42, 41, 40, 39, 1542, 389, 603, 182, + /* 160 */ 1902, 1904, 18, 2236, 605, 1492, 1522, 1532, 1716, 1472, + /* 170 */ 1759, 122, 1548, 1551, 121, 120, 119, 118, 117, 116, + /* 180 */ 115, 114, 113, 579, 1975, 579, 1467, 2235, 1465, 2235, + /* 190 */ 490, 1493, 491, 1729, 65, 748, 375, 1239, 14, 1972, + /* 200 */ 628, 105, 2241, 182, 2241, 182, 640, 2236, 605, 2236, + /* 210 */ 605, 102, 1470, 1471, 2044, 1521, 1524, 1525, 1526, 1527, + /* 220 */ 1528, 1529, 1530, 1531, 653, 649, 1540, 1541, 1543, 1544, + /* 230 */ 1545, 1546, 2, 1241, 1549, 1550, 725, 724, 723, 722, + /* 240 */ 394, 626, 721, 720, 143, 715, 714, 713, 712, 711, + /* 250 */ 710, 709, 156, 705, 704, 703, 393, 392, 700, 699, + /* 260 */ 698, 697, 696, 2240, 1522, 1532, 1715, 2235, 38, 37, + /* 270 */ 1548, 1551, 44, 42, 41, 40, 39, 185, 1686, 185, + /* 280 */ 1494, 1330, 1331, 2239, 1467, 693, 1465, 2236, 2237, 508, + /* 290 */ 61, 1847, 489, 38, 37, 494, 1735, 44, 42, 41, + /* 300 */ 40, 39, 2058, 154, 153, 690, 689, 688, 151, 599, + /* 310 */ 1470, 1471, 2044, 1521, 1524, 1525, 1526, 1527, 1528, 1529, + /* 320 */ 1530, 1531, 653, 649, 1540, 1541, 1543, 1544, 1545, 1546, + /* 330 */ 2, 11, 45, 43, 1762, 1491, 2054, 2060, 1909, 271, + /* 340 */ 384, 1296, 1466, 1492, 695, 362, 1170, 651, 1169, 344, + /* 350 */ 594, 106, 194, 1547, 1907, 1464, 100, 1287, 683, 682, + /* 360 */ 681, 1291, 680, 1293, 1294, 679, 676, 140, 1302, 673, + /* 370 */ 1304, 1305, 670, 667, 1685, 1848, 33, 1171, 1542, 1833, + /* 380 */ 1849, 2076, 38, 37, 18, 568, 44, 42, 41, 40, + /* 390 */ 39, 1472, 1490, 83, 1576, 1645, 82, 545, 544, 543, + /* 400 */ 545, 544, 543, 1714, 535, 136, 539, 535, 136, 539, + /* 410 */ 538, 35, 290, 538, 2094, 537, 542, 748, 537, 542, + /* 420 */ 14, 536, 658, 499, 536, 491, 1729, 2044, 249, 657, + /* 430 */ 45, 43, 1552, 600, 595, 588, 86, 2179, 384, 185, + /* 440 */ 1466, 1250, 591, 590, 1643, 1644, 1646, 1647, 1648, 2044, + /* 450 */ 1577, 1547, 353, 1464, 1249, 641, 1549, 1550, 2075, 1402, + /* 460 */ 1403, 1851, 2111, 2176, 533, 109, 2077, 661, 2079, 2080, + /* 470 */ 656, 187, 651, 1694, 641, 142, 1542, 149, 2135, 2164, + /* 480 */ 61, 1385, 1386, 378, 2160, 532, 1522, 1532, 1856, 1472, + /* 490 */ 54, 693, 1548, 1551, 122, 1401, 1404, 121, 120, 119, + /* 500 */ 118, 117, 116, 115, 114, 113, 1467, 1856, 1465, 154, + /* 510 */ 153, 690, 689, 688, 151, 748, 476, 239, 46, 467, + /* 520 */ 49, 34, 382, 1571, 1572, 1573, 1574, 1575, 1579, 1580, + /* 530 */ 1581, 1582, 1470, 1471, 1693, 1521, 1524, 1525, 1526, 1527, + /* 540 */ 1528, 1529, 1530, 1531, 653, 649, 1540, 1541, 1543, 1544, + /* 550 */ 1545, 1546, 2, 423, 1549, 1550, 1472, 422, 131, 130, + /* 560 */ 129, 128, 127, 126, 125, 124, 123, 272, 498, 38, + /* 570 */ 37, 494, 1735, 44, 42, 41, 40, 39, 164, 2076, + /* 580 */ 198, 197, 1440, 1441, 1522, 1532, 616, 1859, 38, 37, + /* 590 */ 1548, 1551, 44, 42, 41, 40, 39, 2240, 579, 686, + /* 600 */ 1909, 86, 2235, 466, 1467, 2094, 1465, 372, 643, 61, + /* 610 */ 2136, 92, 2094, 598, 1493, 178, 1907, 2241, 182, 139, + /* 620 */ 619, 1831, 2236, 605, 27, 2044, 1852, 657, 1896, 185, + /* 630 */ 1470, 1471, 416, 1521, 1524, 1525, 1526, 1527, 1528, 1529, + /* 640 */ 1530, 1531, 653, 649, 1540, 1541, 1543, 1544, 1545, 1546, + /* 650 */ 2, 45, 43, 2037, 418, 414, 2075, 641, 597, 384, + /* 660 */ 2111, 1466, 1656, 109, 2077, 661, 2079, 2080, 656, 185, + /* 670 */ 651, 641, 1547, 132, 1464, 179, 641, 2164, 1903, 1904, + /* 680 */ 529, 378, 2160, 618, 180, 2172, 2173, 132, 137, 2177, + /* 690 */ 1856, 550, 427, 2179, 534, 1679, 2076, 1542, 579, 73, + /* 700 */ 1713, 616, 2235, 2191, 1856, 641, 560, 38, 37, 1856, + /* 710 */ 1472, 44, 42, 41, 40, 39, 627, 2241, 182, 2175, + /* 720 */ 236, 428, 2236, 605, 41, 40, 39, 641, 238, 2094, + /* 730 */ 616, 641, 237, 693, 139, 553, 748, 658, 1856, 46, + /* 740 */ 547, 11, 2044, 437, 657, 235, 2044, 452, 81, 45, + /* 750 */ 43, 154, 153, 690, 689, 688, 151, 384, 185, 1466, + /* 760 */ 1856, 376, 271, 139, 1856, 625, 627, 1968, 2063, 164, + /* 770 */ 1547, 2038, 1464, 2075, 707, 1549, 1550, 2111, 1858, 2058, + /* 780 */ 168, 2077, 661, 2079, 2080, 656, 69, 651, 1841, 68, + /* 790 */ 89, 339, 1712, 641, 361, 1542, 561, 1711, 2076, 181, + /* 800 */ 2172, 2173, 387, 137, 2177, 1522, 1532, 1954, 1472, 453, + /* 810 */ 164, 1548, 1551, 2054, 2060, 636, 579, 1968, 190, 1858, + /* 820 */ 2235, 580, 2201, 1939, 651, 1467, 1856, 1465, 183, 2172, + /* 830 */ 2173, 2094, 137, 2177, 748, 2241, 182, 14, 2044, 658, + /* 840 */ 2236, 605, 1621, 2044, 2044, 1710, 657, 1557, 1491, 1709, + /* 850 */ 2179, 1470, 1471, 1491, 1521, 1524, 1525, 1526, 1527, 1528, + /* 860 */ 1529, 1530, 1531, 653, 649, 1540, 1541, 1543, 1544, 1545, + /* 870 */ 1546, 2, 1843, 1549, 1550, 2075, 2174, 559, 1708, 2111, + /* 880 */ 1839, 641, 109, 2077, 661, 2079, 2080, 656, 165, 651, + /* 890 */ 557, 2044, 555, 310, 2139, 2044, 2164, 507, 685, 1909, + /* 900 */ 378, 2160, 1707, 1522, 1532, 1704, 377, 308, 72, 1548, + /* 910 */ 1551, 71, 38, 37, 1856, 1907, 44, 42, 41, 40, + /* 920 */ 39, 281, 282, 1467, 2044, 1465, 280, 356, 390, 205, + /* 930 */ 486, 484, 481, 8, 38, 37, 164, 2239, 44, 42, + /* 940 */ 41, 40, 39, 1703, 2076, 1858, 541, 540, 2044, 1470, + /* 950 */ 1471, 2044, 1521, 1524, 1525, 1526, 1527, 1528, 1529, 1530, + /* 960 */ 1531, 653, 649, 1540, 1541, 1543, 1544, 1545, 1546, 2, + /* 970 */ 61, 335, 1909, 1489, 2076, 719, 717, 2094, 447, 388, + /* 980 */ 460, 641, 1614, 474, 641, 658, 473, 446, 1907, 2044, + /* 990 */ 2044, 1254, 657, 357, 1523, 355, 354, 1853, 531, 1523, + /* 1000 */ 241, 443, 533, 475, 1253, 1633, 445, 2094, 108, 244, + /* 1010 */ 641, 641, 373, 1832, 1856, 658, 11, 1856, 9, 1491, + /* 1020 */ 2044, 2075, 657, 532, 652, 2111, 575, 620, 109, 2077, + /* 1030 */ 661, 2079, 2080, 656, 708, 651, 1818, 1702, 1701, 61, + /* 1040 */ 2255, 1494, 2164, 1856, 1856, 1700, 378, 2160, 80, 79, + /* 1050 */ 426, 2075, 352, 189, 641, 2111, 1494, 2198, 327, 2077, + /* 1060 */ 661, 2079, 2080, 656, 433, 651, 478, 13, 12, 1466, + /* 1070 */ 624, 1699, 333, 1749, 1578, 412, 695, 410, 406, 402, + /* 1080 */ 399, 419, 1464, 2044, 2044, 1698, 1697, 1856, 1696, 2076, + /* 1090 */ 645, 2044, 2136, 471, 163, 546, 465, 464, 463, 462, /* 1100 */ 459, 458, 457, 456, 455, 451, 450, 449, 448, 334, - /* 1110 */ 440, 439, 438, 2040, 435, 434, 350, 647, 1469, 185, - /* 1120 */ 2040, 2200, 2090, 1905, 164, 1607, 640, 1472, 692, 640, - /* 1130 */ 657, 2040, 240, 1855, 2026, 2040, 578, 656, 2072, 1904, - /* 1140 */ 2231, 356, 285, 533, 747, 637, 154, 153, 689, 688, - /* 1150 */ 687, 151, 73, 1198, 686, 2237, 182, 1896, 266, 1852, - /* 1160 */ 2232, 604, 1852, 591, 532, 640, 2071, 640, 607, 690, - /* 1170 */ 2107, 2090, 1896, 109, 2073, 660, 2075, 2076, 655, 657, - /* 1180 */ 650, 638, 404, 291, 2040, 2251, 656, 2160, 1830, 1199, - /* 1190 */ 691, 378, 2156, 1896, 221, 640, 304, 2072, 1852, 1882, - /* 1200 */ 1852, 81, 2207, 51, 145, 3, 134, 357, 1471, 355, - /* 1210 */ 354, 391, 531, 247, 228, 2071, 533, 226, 248, 2107, - /* 1220 */ 2072, 105, 109, 2073, 660, 2075, 2076, 655, 1852, 650, - /* 1230 */ 2090, 102, 147, 1464, 2251, 1462, 2160, 532, 657, 230, - /* 1240 */ 378, 2156, 229, 2040, 232, 656, 234, 231, 1739, 233, - /* 1250 */ 1737, 585, 562, 2090, 561, 152, 152, 90, 260, 1467, - /* 1260 */ 1468, 657, 63, 63, 253, 1565, 2040, 700, 656, 152, - /* 1270 */ 547, 47, 550, 278, 2071, 1685, 1686, 70, 2107, 150, - /* 1280 */ 1475, 109, 2073, 660, 2075, 2076, 655, 2061, 650, 1217, - /* 1290 */ 152, 2091, 395, 2251, 1959, 2160, 1727, 2071, 2072, 378, - /* 1300 */ 2156, 2107, 63, 701, 109, 2073, 660, 2075, 2076, 655, - /* 1310 */ 2225, 650, 1432, 1435, 381, 380, 2251, 47, 2160, 1639, - /* 1320 */ 1638, 255, 378, 2156, 1477, 1215, 622, 1733, 1396, 2190, - /* 1330 */ 283, 2090, 1893, 2179, 632, 1544, 287, 1470, 616, 657, - /* 1340 */ 2063, 268, 1, 223, 2040, 47, 656, 1277, 38, 37, - /* 1350 */ 664, 150, 44, 42, 41, 40, 39, 2072, 171, 1581, - /* 1360 */ 1539, 1474, 152, 135, 525, 521, 517, 513, 220, 265, - /* 1370 */ 4, 398, 403, 1469, 1530, 2071, 742, 348, 150, 2107, - /* 1380 */ 2072, 1419, 109, 2073, 660, 2075, 2076, 655, 298, 650, - /* 1390 */ 2090, 195, 432, 1491, 2133, 608, 2160, 1960, 657, 646, - /* 1400 */ 378, 2156, 303, 2040, 436, 656, 469, 1305, 1309, 87, - /* 1410 */ 441, 1486, 218, 2090, 454, 1952, 461, 468, 470, 1316, - /* 1420 */ 1314, 657, 480, 479, 477, 199, 2040, 200, 656, 482, - /* 1430 */ 483, 1492, 202, 485, 2071, 155, 487, 1494, 2107, 488, - /* 1440 */ 497, 109, 2073, 660, 2075, 2076, 655, 500, 650, 1489, - /* 1450 */ 208, 501, 1493, 643, 210, 2160, 502, 2071, 1495, 378, - /* 1460 */ 2156, 2107, 2072, 503, 110, 2073, 660, 2075, 2076, 655, - /* 1470 */ 213, 650, 505, 215, 84, 85, 509, 1171, 2160, 217, - /* 1480 */ 211, 219, 2159, 2156, 216, 526, 504, 527, 1478, 528, - /* 1490 */ 1473, 530, 2017, 564, 2014, 2090, 338, 1842, 566, 112, - /* 1500 */ 2013, 88, 209, 657, 148, 225, 299, 242, 2040, 245, - /* 1510 */ 656, 2072, 1838, 227, 1481, 1483, 157, 158, 1840, 568, - /* 1520 */ 575, 1836, 159, 160, 569, 572, 592, 648, 1537, 1538, - /* 1530 */ 1540, 1541, 1542, 1543, 2072, 2206, 630, 2191, 2201, 2071, - /* 1540 */ 2205, 2182, 582, 2107, 2090, 588, 110, 2073, 660, 2075, - /* 1550 */ 2076, 655, 657, 650, 367, 595, 601, 2040, 261, 656, - /* 1560 */ 2160, 251, 254, 7, 645, 2156, 259, 2090, 583, 580, - /* 1570 */ 581, 172, 2254, 138, 263, 654, 2230, 264, 609, 368, - /* 1580 */ 2040, 612, 656, 1490, 1607, 2176, 620, 262, 658, 371, - /* 1590 */ 1496, 300, 2107, 628, 273, 110, 2073, 660, 2075, 2076, - /* 1600 */ 655, 629, 650, 95, 1965, 1979, 2072, 267, 1978, 2160, - /* 1610 */ 633, 2071, 634, 343, 2156, 2107, 1977, 97, 326, 2073, - /* 1620 */ 660, 2075, 2076, 655, 653, 650, 641, 2125, 301, 2072, - /* 1630 */ 374, 302, 99, 1853, 60, 101, 2141, 662, 1815, 2090, - /* 1640 */ 1897, 743, 294, 750, 305, 744, 746, 657, 329, 340, - /* 1650 */ 341, 50, 2040, 314, 656, 309, 307, 297, 2032, 2031, - /* 1660 */ 2030, 77, 2090, 2072, 2027, 400, 401, 1454, 1455, 188, - /* 1670 */ 657, 405, 175, 328, 318, 2040, 407, 656, 740, 736, - /* 1680 */ 732, 728, 295, 2071, 2025, 408, 409, 2107, 2024, 2072, - /* 1690 */ 169, 2073, 660, 2075, 2076, 655, 2090, 650, 411, 2023, - /* 1700 */ 413, 2022, 415, 2021, 657, 417, 2071, 78, 1422, 2040, - /* 1710 */ 2107, 656, 1421, 110, 2073, 660, 2075, 2076, 655, 1991, - /* 1720 */ 650, 1990, 2090, 107, 1989, 424, 288, 2160, 425, 1988, - /* 1730 */ 657, 1987, 2157, 1373, 1943, 2040, 1942, 656, 1940, 144, - /* 1740 */ 2071, 1939, 605, 2252, 2107, 1938, 1941, 168, 2073, 660, - /* 1750 */ 2075, 2076, 655, 2072, 650, 1937, 1936, 1934, 636, 193, - /* 1760 */ 442, 1931, 444, 1945, 1930, 1929, 2071, 1933, 1932, 1928, - /* 1770 */ 2107, 1927, 1926, 320, 2073, 660, 2075, 2076, 655, 1925, - /* 1780 */ 650, 1924, 1923, 1922, 1921, 2072, 2090, 1920, 1919, 2198, - /* 1790 */ 1918, 1917, 1916, 275, 657, 146, 1915, 1914, 274, 2040, - /* 1800 */ 1913, 656, 1944, 1912, 1911, 1910, 1909, 1375, 1908, 1907, - /* 1810 */ 2072, 472, 1906, 336, 1426, 1248, 243, 600, 2090, 337, - /* 1820 */ 1252, 1762, 1761, 1760, 201, 1758, 654, 1722, 203, 1244, - /* 1830 */ 2071, 2040, 204, 656, 2107, 1721, 2060, 169, 2073, 660, - /* 1840 */ 2075, 2076, 655, 2090, 650, 177, 493, 1157, 383, 206, - /* 1850 */ 75, 657, 1156, 207, 76, 2004, 2040, 495, 656, 2072, - /* 1860 */ 1998, 1986, 2071, 212, 214, 1985, 2107, 1963, 1831, 326, - /* 1870 */ 2073, 660, 2075, 2076, 655, 2072, 650, 1757, 2126, 1191, - /* 1880 */ 1755, 510, 511, 512, 1753, 514, 516, 2071, 515, 1751, - /* 1890 */ 2253, 2107, 2090, 518, 327, 2073, 660, 2075, 2076, 655, - /* 1900 */ 657, 650, 519, 520, 1749, 2040, 522, 656, 2090, 524, - /* 1910 */ 523, 1736, 1735, 385, 1321, 1320, 657, 1718, 1833, 1832, - /* 1920 */ 1235, 2040, 1234, 656, 2072, 62, 224, 1233, 1227, 1232, - /* 1930 */ 715, 1229, 717, 1747, 1228, 1226, 563, 358, 1740, 1738, - /* 1940 */ 2107, 2072, 359, 322, 2073, 660, 2075, 2076, 655, 360, - /* 1950 */ 650, 548, 2071, 1717, 1716, 1715, 2107, 2090, 2072, 327, - /* 1960 */ 2073, 660, 2075, 2076, 655, 657, 650, 551, 557, 553, - /* 1970 */ 2040, 555, 656, 1446, 2090, 1442, 111, 1444, 1441, 2003, - /* 1980 */ 1428, 26, 657, 66, 1997, 55, 570, 2040, 571, 656, - /* 1990 */ 1984, 2090, 1982, 576, 2236, 19, 246, 364, 1655, 657, - /* 2000 */ 16, 2071, 28, 250, 2040, 2107, 656, 2072, 311, 2073, - /* 2010 */ 660, 2075, 2076, 655, 584, 650, 586, 162, 2071, 5, - /* 2020 */ 6, 58, 2107, 2072, 59, 312, 2073, 660, 2075, 2076, - /* 2030 */ 655, 252, 650, 257, 258, 2071, 1637, 170, 30, 2107, - /* 2040 */ 2090, 2072, 313, 2073, 660, 2075, 2076, 655, 657, 650, - /* 2050 */ 256, 2061, 29, 2040, 64, 656, 2090, 21, 1629, 91, - /* 2060 */ 1670, 1675, 1676, 1669, 657, 369, 1674, 1673, 370, 2040, - /* 2070 */ 1604, 656, 1603, 270, 2090, 1983, 173, 1981, 56, 57, - /* 2080 */ 1980, 1962, 657, 20, 2071, 93, 94, 2040, 2107, 656, - /* 2090 */ 2072, 319, 2073, 660, 2075, 2076, 655, 276, 650, 22, - /* 2100 */ 2071, 17, 277, 1635, 2107, 279, 2072, 323, 2073, 660, - /* 2110 */ 2075, 2076, 655, 1961, 650, 284, 67, 96, 2071, 631, - /* 2120 */ 98, 102, 2107, 2090, 10, 315, 2073, 660, 2075, 2076, - /* 2130 */ 655, 657, 650, 289, 286, 23, 2040, 1556, 656, 2090, - /* 2140 */ 1555, 12, 1479, 1566, 2110, 174, 1534, 657, 649, 186, - /* 2150 */ 1532, 1511, 2040, 36, 656, 1531, 15, 24, 659, 1503, - /* 2160 */ 25, 663, 1306, 2072, 665, 386, 661, 2071, 1303, 667, - /* 2170 */ 668, 2107, 1300, 670, 324, 2073, 660, 2075, 2076, 655, - /* 2180 */ 2072, 650, 671, 2071, 673, 1294, 1292, 2107, 674, 676, - /* 2190 */ 316, 2073, 660, 2075, 2076, 655, 2090, 650, 1283, 677, - /* 2200 */ 103, 292, 1298, 104, 657, 683, 1315, 74, 1311, 2040, - /* 2210 */ 1297, 656, 1296, 2090, 693, 1295, 1189, 1223, 1222, 1221, - /* 2220 */ 1220, 657, 1219, 1218, 1216, 1214, 2040, 1213, 656, 2072, - /* 2230 */ 1212, 1242, 1207, 705, 1210, 293, 1209, 1208, 1206, 1205, - /* 2240 */ 2071, 1204, 1237, 1239, 2107, 2072, 1201, 325, 2073, 660, - /* 2250 */ 2075, 2076, 655, 1200, 650, 1197, 1196, 2071, 1195, 1194, - /* 2260 */ 1754, 2107, 2090, 725, 317, 2073, 660, 2075, 2076, 655, - /* 2270 */ 657, 650, 727, 726, 1752, 2040, 729, 656, 2090, 730, - /* 2280 */ 1750, 731, 733, 734, 735, 1748, 657, 737, 738, 739, - /* 2290 */ 1734, 2040, 741, 656, 2072, 1714, 1146, 296, 745, 1689, - /* 2300 */ 1465, 306, 748, 749, 1689, 1689, 2071, 1689, 1689, 1689, - /* 2310 */ 2107, 1689, 1689, 330, 2073, 660, 2075, 2076, 655, 2072, - /* 2320 */ 650, 1689, 2071, 1689, 1689, 1689, 2107, 2090, 1689, 331, - /* 2330 */ 2073, 660, 2075, 2076, 655, 657, 650, 1689, 1689, 1689, - /* 2340 */ 2040, 1689, 656, 2072, 1689, 1689, 1689, 1689, 1689, 1689, - /* 2350 */ 1689, 1689, 2090, 1689, 1689, 1689, 1689, 1689, 1689, 1689, - /* 2360 */ 657, 1689, 1689, 1689, 1689, 2040, 1689, 656, 1689, 1689, - /* 2370 */ 1689, 2071, 1689, 1689, 1689, 2107, 2090, 1689, 2084, 2073, - /* 2380 */ 660, 2075, 2076, 655, 657, 650, 1689, 1689, 1689, 2040, - /* 2390 */ 1689, 656, 1689, 1689, 1689, 1689, 2071, 1689, 1689, 1689, - /* 2400 */ 2107, 1689, 1689, 2083, 2073, 660, 2075, 2076, 655, 1689, - /* 2410 */ 650, 1689, 1689, 1689, 2072, 1689, 1689, 1689, 1689, 1689, - /* 2420 */ 2071, 1689, 1689, 1689, 2107, 1689, 1689, 2082, 2073, 660, - /* 2430 */ 2075, 2076, 655, 1689, 650, 1689, 2072, 1689, 1689, 1689, - /* 2440 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 2090, 1689, 1689, - /* 2450 */ 1689, 1689, 1689, 1689, 1689, 657, 1689, 1689, 1689, 1689, - /* 2460 */ 2040, 1689, 656, 2072, 1689, 1689, 1689, 1689, 1689, 2090, - /* 2470 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 657, 1689, 1689, - /* 2480 */ 1689, 1689, 2040, 1689, 656, 1689, 1689, 1689, 1689, 1689, - /* 2490 */ 1689, 2071, 1689, 1689, 1689, 2107, 2090, 1689, 345, 2073, - /* 2500 */ 660, 2075, 2076, 655, 657, 650, 1689, 1689, 1689, 2040, - /* 2510 */ 1689, 656, 2072, 2071, 1689, 1689, 1689, 2107, 1689, 1689, - /* 2520 */ 346, 2073, 660, 2075, 2076, 655, 1689, 650, 2072, 1689, - /* 2530 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, - /* 2540 */ 2071, 1689, 1689, 1689, 2107, 2090, 1689, 342, 2073, 660, - /* 2550 */ 2075, 2076, 655, 657, 650, 1689, 1689, 1689, 2040, 1689, - /* 2560 */ 656, 2090, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 657, - /* 2570 */ 1689, 1689, 1689, 1689, 2040, 1689, 656, 2072, 1689, 1689, - /* 2580 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 2071, - /* 2590 */ 1689, 1689, 1689, 2107, 1689, 1689, 347, 2073, 660, 2075, - /* 2600 */ 2076, 655, 1689, 650, 1689, 658, 1689, 1689, 1689, 2107, - /* 2610 */ 2090, 1689, 322, 2073, 660, 2075, 2076, 655, 657, 650, - /* 2620 */ 1689, 1689, 1689, 2040, 1689, 656, 1689, 1689, 1689, 1689, - /* 2630 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, - /* 2640 */ 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, - /* 2650 */ 1689, 1689, 1689, 1689, 2071, 1689, 1689, 1689, 2107, 1689, - /* 2660 */ 1689, 321, 2073, 660, 2075, 2076, 655, 1689, 650, + /* 1110 */ 440, 439, 438, 641, 435, 434, 350, 2044, 1472, 185, + /* 1120 */ 641, 608, 2094, 641, 421, 641, 420, 641, 574, 285, + /* 1130 */ 658, 2044, 2044, 152, 2044, 2044, 638, 657, 2076, 639, + /* 1140 */ 1954, 291, 1610, 391, 748, 32, 1856, 2012, 1954, 304, + /* 1150 */ 419, 192, 1886, 1856, 687, 1583, 1856, 1900, 1856, 196, + /* 1160 */ 1856, 1156, 1157, 2184, 1610, 1523, 2075, 1590, 1834, 691, + /* 1170 */ 2111, 2094, 1900, 109, 2077, 661, 2079, 2080, 656, 658, + /* 1180 */ 651, 51, 611, 3, 2044, 2255, 657, 2164, 185, 191, + /* 1190 */ 53, 378, 2160, 240, 430, 692, 1742, 2076, 1900, 145, + /* 1200 */ 152, 134, 2211, 607, 248, 228, 230, 431, 226, 229, + /* 1210 */ 232, 234, 147, 231, 233, 2075, 1688, 1689, 548, 2111, + /* 1220 */ 2076, 247, 109, 2077, 661, 2079, 2080, 656, 1613, 651, + /* 1230 */ 2094, 1802, 152, 1467, 2255, 1465, 2164, 563, 658, 562, + /* 1240 */ 378, 2160, 1740, 2044, 1475, 657, 63, 578, 13, 12, + /* 1250 */ 1706, 586, 2204, 2094, 648, 63, 253, 1435, 701, 1470, + /* 1260 */ 1471, 658, 266, 152, 551, 90, 2044, 592, 657, 47, + /* 1270 */ 278, 70, 150, 152, 2075, 63, 1474, 47, 2111, 47, + /* 1280 */ 1219, 109, 2077, 661, 2079, 2080, 656, 2065, 651, 1438, + /* 1290 */ 665, 221, 150, 2255, 152, 2164, 135, 2075, 2076, 378, + /* 1300 */ 2160, 2111, 150, 1642, 109, 2077, 661, 2079, 2080, 656, + /* 1310 */ 2229, 651, 1641, 255, 381, 380, 2255, 395, 2164, 52, + /* 1320 */ 623, 1736, 378, 2160, 1480, 1200, 1399, 283, 633, 287, + /* 1330 */ 1280, 2094, 1584, 2183, 1533, 1547, 303, 1473, 260, 658, + /* 1340 */ 2067, 702, 1963, 223, 2044, 2095, 657, 1308, 609, 1312, + /* 1350 */ 1730, 1319, 2194, 1317, 617, 1897, 265, 2076, 171, 155, + /* 1360 */ 1542, 1201, 268, 1217, 525, 521, 517, 513, 220, 1, + /* 1370 */ 743, 4, 398, 1472, 403, 2075, 1422, 348, 298, 2111, + /* 1380 */ 2076, 195, 109, 2077, 661, 2079, 2080, 656, 432, 651, + /* 1390 */ 2094, 1494, 1964, 436, 2137, 469, 2164, 1478, 658, 647, + /* 1400 */ 378, 2160, 1568, 2044, 441, 657, 1489, 454, 1956, 87, + /* 1410 */ 468, 612, 218, 2094, 461, 470, 479, 477, 200, 480, + /* 1420 */ 199, 658, 483, 482, 202, 485, 2044, 566, 657, 1477, + /* 1430 */ 487, 1495, 488, 497, 2075, 1497, 1492, 500, 2111, 208, + /* 1440 */ 501, 109, 2077, 661, 2079, 2080, 656, 1496, 651, 210, + /* 1450 */ 502, 1498, 503, 644, 213, 2164, 215, 2075, 505, 378, + /* 1460 */ 2160, 2111, 2076, 509, 110, 2077, 661, 2079, 2080, 656, + /* 1470 */ 84, 651, 579, 85, 219, 1173, 2235, 526, 2164, 217, + /* 1480 */ 211, 528, 2163, 2160, 216, 527, 504, 530, 1481, 111, + /* 1490 */ 1476, 2241, 182, 338, 1846, 2094, 2236, 605, 225, 2021, + /* 1500 */ 1842, 227, 209, 658, 157, 158, 1844, 565, 2044, 1840, + /* 1510 */ 657, 2076, 567, 159, 1484, 1486, 160, 88, 148, 242, + /* 1520 */ 299, 2018, 569, 2017, 245, 576, 573, 649, 1540, 1541, + /* 1530 */ 1543, 1544, 1545, 1546, 2076, 570, 583, 593, 2210, 2075, + /* 1540 */ 2195, 2205, 631, 2111, 2094, 602, 110, 2077, 661, 2079, + /* 1550 */ 2080, 656, 658, 651, 251, 589, 254, 2044, 7, 657, + /* 1560 */ 2164, 367, 596, 2209, 646, 2160, 172, 2094, 2186, 584, + /* 1570 */ 582, 261, 259, 2258, 263, 655, 262, 581, 1610, 264, + /* 1580 */ 2044, 613, 657, 368, 610, 138, 1493, 2180, 659, 371, + /* 1590 */ 621, 1499, 2111, 300, 1969, 110, 2077, 661, 2079, 2080, + /* 1600 */ 656, 629, 651, 273, 95, 634, 2076, 301, 97, 2164, + /* 1610 */ 635, 2075, 99, 343, 2160, 2111, 630, 60, 326, 2077, + /* 1620 */ 661, 2079, 2080, 656, 654, 651, 642, 2129, 267, 2076, + /* 1630 */ 2234, 1983, 1982, 1981, 374, 1857, 302, 2145, 101, 2094, + /* 1640 */ 663, 1901, 1819, 751, 305, 744, 745, 658, 747, 314, + /* 1650 */ 294, 328, 2044, 318, 657, 307, 309, 297, 50, 340, + /* 1660 */ 341, 2036, 2094, 2076, 2035, 2034, 329, 77, 2031, 400, + /* 1670 */ 658, 401, 175, 1457, 1458, 2044, 188, 657, 741, 737, + /* 1680 */ 733, 729, 295, 2075, 405, 2029, 407, 2111, 408, 2076, + /* 1690 */ 169, 2077, 661, 2079, 2080, 656, 2094, 651, 409, 2028, + /* 1700 */ 411, 2027, 413, 2026, 658, 415, 2075, 2025, 417, 2044, + /* 1710 */ 2111, 657, 78, 110, 2077, 661, 2079, 2080, 656, 1425, + /* 1720 */ 651, 1424, 2094, 107, 1995, 1994, 288, 2164, 1993, 424, + /* 1730 */ 658, 425, 2161, 1992, 1991, 2044, 1376, 657, 1947, 1946, + /* 1740 */ 2075, 1944, 606, 2256, 2111, 1943, 144, 168, 2077, 661, + /* 1750 */ 2079, 2080, 656, 2076, 651, 1942, 1945, 1941, 637, 193, + /* 1760 */ 1935, 442, 444, 1949, 1934, 1933, 2075, 1940, 1938, 1937, + /* 1770 */ 2111, 1936, 1932, 320, 2077, 661, 2079, 2080, 656, 1931, + /* 1780 */ 651, 1930, 1929, 1928, 1927, 2076, 2094, 1926, 1925, 2202, + /* 1790 */ 1924, 1923, 1922, 275, 658, 1921, 1920, 1919, 274, 2044, + /* 1800 */ 146, 657, 1918, 1917, 1948, 1916, 1915, 1378, 1914, 1913, + /* 1810 */ 2076, 1912, 1911, 472, 1429, 1910, 243, 601, 2094, 336, + /* 1820 */ 1251, 1255, 1765, 337, 201, 1764, 655, 1763, 1247, 1761, + /* 1830 */ 2075, 2044, 203, 657, 2111, 204, 1725, 169, 2077, 661, + /* 1840 */ 2079, 2080, 656, 2094, 651, 177, 1724, 2064, 383, 206, + /* 1850 */ 2008, 658, 75, 1159, 1158, 76, 2044, 493, 657, 2076, + /* 1860 */ 207, 495, 2075, 2002, 1990, 212, 2111, 214, 1989, 326, + /* 1870 */ 2077, 661, 2079, 2080, 656, 2076, 651, 1967, 2130, 1835, + /* 1880 */ 1760, 1758, 1193, 510, 512, 511, 1756, 2075, 514, 515, + /* 1890 */ 2257, 2111, 2094, 516, 327, 2077, 661, 2079, 2080, 656, + /* 1900 */ 658, 651, 1754, 519, 518, 2044, 520, 657, 2094, 1752, + /* 1910 */ 522, 524, 1739, 385, 523, 1738, 658, 1721, 1837, 1324, + /* 1920 */ 1836, 2044, 1323, 657, 2076, 1238, 224, 62, 1237, 1236, + /* 1930 */ 1235, 1234, 716, 718, 1231, 1229, 564, 1750, 1230, 1228, + /* 1940 */ 2111, 2076, 1743, 322, 2077, 661, 2079, 2080, 656, 358, + /* 1950 */ 651, 359, 2075, 1741, 360, 549, 2111, 2094, 2076, 327, + /* 1960 */ 2077, 661, 2079, 2080, 656, 658, 651, 1720, 552, 554, + /* 1970 */ 2044, 1719, 657, 556, 2094, 1718, 558, 112, 1445, 1447, + /* 1980 */ 1444, 2007, 658, 1449, 1431, 26, 2001, 2044, 571, 657, + /* 1990 */ 1988, 2094, 55, 246, 1986, 2240, 577, 66, 572, 658, + /* 2000 */ 19, 2075, 364, 16, 2044, 2111, 657, 2076, 311, 2077, + /* 2010 */ 661, 2079, 2080, 656, 58, 651, 28, 162, 2075, 5, + /* 2020 */ 1658, 250, 2111, 2076, 585, 312, 2077, 661, 2079, 2080, + /* 2030 */ 656, 6, 651, 59, 587, 2075, 64, 252, 258, 2111, + /* 2040 */ 2094, 2076, 313, 2077, 661, 2079, 2080, 656, 658, 651, + /* 2050 */ 257, 1640, 170, 2044, 2065, 657, 2094, 30, 256, 29, + /* 2060 */ 21, 1632, 91, 1673, 658, 1678, 1679, 1672, 270, 2044, + /* 2070 */ 369, 657, 1677, 1676, 2094, 370, 173, 1607, 1606, 1987, + /* 2080 */ 57, 1985, 658, 93, 2075, 56, 20, 2044, 2111, 657, + /* 2090 */ 2076, 319, 2077, 661, 2079, 2080, 656, 17, 651, 1984, + /* 2100 */ 2075, 1966, 94, 276, 2111, 22, 2076, 323, 2077, 661, + /* 2110 */ 2079, 2080, 656, 1965, 651, 277, 1638, 279, 2075, 284, + /* 2120 */ 67, 96, 2111, 2094, 286, 315, 2077, 661, 2079, 2080, + /* 2130 */ 656, 658, 651, 102, 98, 289, 2044, 23, 657, 2094, + /* 2140 */ 632, 1559, 10, 1558, 12, 1482, 2114, 658, 1537, 650, + /* 2150 */ 174, 1535, 2044, 1569, 657, 36, 186, 1514, 1534, 15, + /* 2160 */ 24, 660, 1506, 2076, 25, 662, 1309, 2075, 664, 386, + /* 2170 */ 666, 2111, 1306, 668, 324, 2077, 661, 2079, 2080, 656, + /* 2180 */ 2076, 651, 671, 2075, 669, 674, 1303, 2111, 1297, 672, + /* 2190 */ 316, 2077, 661, 2079, 2080, 656, 2094, 651, 675, 677, + /* 2200 */ 1301, 1295, 678, 1300, 658, 1286, 684, 103, 104, 2044, + /* 2210 */ 292, 657, 1318, 2094, 1299, 1298, 74, 1314, 1191, 694, + /* 2220 */ 1225, 658, 1224, 1223, 1222, 1221, 2044, 1220, 657, 2076, + /* 2230 */ 1245, 1218, 706, 1216, 1215, 1214, 1212, 293, 1211, 1210, + /* 2240 */ 2075, 1209, 1208, 1207, 2111, 2076, 1206, 325, 2077, 661, + /* 2250 */ 2079, 2080, 656, 1242, 651, 1240, 1203, 2075, 1202, 1199, + /* 2260 */ 1198, 2111, 2094, 1197, 317, 2077, 661, 2079, 2080, 656, + /* 2270 */ 658, 651, 1196, 1757, 726, 2044, 727, 657, 2094, 728, + /* 2280 */ 1755, 731, 730, 732, 1753, 734, 658, 736, 1751, 738, + /* 2290 */ 735, 2044, 740, 657, 2076, 1737, 742, 739, 1148, 1717, + /* 2300 */ 296, 1468, 746, 750, 306, 1692, 2075, 749, 1692, 1692, + /* 2310 */ 2111, 1692, 1692, 330, 2077, 661, 2079, 2080, 656, 2076, + /* 2320 */ 651, 1692, 2075, 1692, 1692, 1692, 2111, 2094, 1692, 331, + /* 2330 */ 2077, 661, 2079, 2080, 656, 658, 651, 1692, 1692, 1692, + /* 2340 */ 2044, 1692, 657, 2076, 1692, 1692, 1692, 1692, 1692, 1692, + /* 2350 */ 1692, 1692, 2094, 1692, 1692, 1692, 1692, 1692, 1692, 1692, + /* 2360 */ 658, 1692, 1692, 1692, 1692, 2044, 1692, 657, 1692, 1692, + /* 2370 */ 1692, 2075, 1692, 1692, 1692, 2111, 2094, 1692, 2088, 2077, + /* 2380 */ 661, 2079, 2080, 656, 658, 651, 1692, 1692, 1692, 2044, + /* 2390 */ 1692, 657, 1692, 1692, 1692, 1692, 2075, 1692, 1692, 1692, + /* 2400 */ 2111, 1692, 1692, 2087, 2077, 661, 2079, 2080, 656, 1692, + /* 2410 */ 651, 1692, 1692, 1692, 2076, 1692, 1692, 1692, 1692, 1692, + /* 2420 */ 2075, 1692, 1692, 1692, 2111, 1692, 1692, 2086, 2077, 661, + /* 2430 */ 2079, 2080, 656, 1692, 651, 1692, 2076, 1692, 1692, 1692, + /* 2440 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 2094, 1692, 1692, + /* 2450 */ 1692, 1692, 1692, 1692, 1692, 658, 1692, 1692, 1692, 1692, + /* 2460 */ 2044, 1692, 657, 2076, 1692, 1692, 1692, 1692, 1692, 2094, + /* 2470 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 658, 1692, 1692, + /* 2480 */ 1692, 1692, 2044, 1692, 657, 1692, 1692, 1692, 1692, 1692, + /* 2490 */ 1692, 2075, 1692, 1692, 1692, 2111, 2094, 1692, 345, 2077, + /* 2500 */ 661, 2079, 2080, 656, 658, 651, 1692, 1692, 1692, 2044, + /* 2510 */ 1692, 657, 2076, 2075, 1692, 1692, 1692, 2111, 1692, 1692, + /* 2520 */ 346, 2077, 661, 2079, 2080, 656, 1692, 651, 2076, 1692, + /* 2530 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, + /* 2540 */ 2075, 1692, 1692, 1692, 2111, 2094, 1692, 342, 2077, 661, + /* 2550 */ 2079, 2080, 656, 658, 651, 1692, 1692, 1692, 2044, 1692, + /* 2560 */ 657, 2094, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 658, + /* 2570 */ 1692, 1692, 1692, 1692, 2044, 1692, 657, 2076, 1692, 1692, + /* 2580 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 2075, + /* 2590 */ 1692, 1692, 1692, 2111, 1692, 1692, 347, 2077, 661, 2079, + /* 2600 */ 2080, 656, 1692, 651, 1692, 659, 1692, 1692, 1692, 2111, + /* 2610 */ 2094, 1692, 322, 2077, 661, 2079, 2080, 656, 658, 651, + /* 2620 */ 1692, 1692, 1692, 2044, 1692, 657, 1692, 1692, 1692, 1692, + /* 2630 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, + /* 2640 */ 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, + /* 2650 */ 1692, 1692, 1692, 1692, 2075, 1692, 1692, 1692, 2111, 1692, + /* 2660 */ 1692, 321, 2077, 661, 2079, 2080, 656, 1692, 651, }; static const YYCODETYPE yy_lookahead[] = { - /* 0 */ 356, 356, 335, 331, 337, 338, 441, 365, 364, 364, - /* 10 */ 445, 4, 12, 13, 14, 371, 364, 373, 373, 4, - /* 20 */ 20, 366, 22, 339, 380, 460, 461, 379, 22, 366, - /* 30 */ 465, 466, 377, 33, 19, 35, 364, 385, 386, 391, - /* 40 */ 377, 35, 394, 395, 372, 379, 1, 2, 33, 377, - /* 50 */ 43, 379, 45, 46, 20, 330, 372, 332, 58, 20, - /* 60 */ 394, 395, 364, 48, 64, 364, 411, 412, 53, 371, - /* 70 */ 328, 71, 371, 58, 411, 412, 413, 422, 380, 339, - /* 80 */ 408, 380, 339, 363, 412, 422, 3, 415, 416, 417, - /* 90 */ 418, 419, 420, 20, 422, 355, 376, 97, 3, 427, - /* 100 */ 100, 429, 362, 97, 375, 433, 434, 378, 379, 346, - /* 110 */ 12, 13, 372, 20, 99, 20, 353, 102, 20, 447, - /* 120 */ 22, 437, 438, 439, 381, 441, 442, 455, 63, 445, - /* 130 */ 20, 33, 335, 35, 337, 338, 136, 137, 396, 441, - /* 140 */ 396, 2, 400, 445, 460, 461, 101, 8, 9, 465, - /* 150 */ 466, 12, 13, 14, 15, 16, 58, 336, 460, 461, - /* 160 */ 339, 340, 64, 465, 466, 20, 166, 167, 331, 71, + /* 0 */ 379, 365, 356, 331, 339, 441, 339, 366, 425, 445, + /* 10 */ 364, 428, 12, 13, 14, 394, 395, 371, 377, 373, + /* 20 */ 20, 366, 22, 339, 460, 461, 380, 366, 14, 465, + /* 30 */ 466, 0, 377, 33, 20, 35, 364, 20, 377, 12, + /* 40 */ 13, 14, 15, 16, 372, 20, 381, 22, 20, 377, + /* 50 */ 20, 379, 411, 412, 413, 388, 372, 390, 58, 364, + /* 60 */ 35, 441, 364, 422, 64, 445, 411, 412, 413, 371, + /* 70 */ 328, 71, 411, 412, 413, 380, 51, 422, 380, 48, + /* 80 */ 408, 461, 364, 422, 412, 465, 466, 415, 416, 417, + /* 90 */ 418, 419, 420, 4, 422, 346, 330, 97, 332, 427, + /* 100 */ 100, 429, 353, 385, 386, 433, 434, 20, 8, 9, + /* 110 */ 12, 13, 12, 13, 14, 15, 16, 100, 20, 447, + /* 120 */ 22, 437, 438, 439, 364, 441, 442, 455, 100, 445, + /* 130 */ 100, 33, 43, 35, 45, 46, 136, 137, 396, 441, + /* 140 */ 396, 2, 400, 445, 460, 461, 386, 8, 9, 465, + /* 150 */ 466, 12, 13, 14, 15, 16, 58, 375, 460, 461, + /* 160 */ 378, 379, 64, 465, 466, 20, 166, 167, 331, 71, /* 170 */ 0, 21, 172, 173, 24, 25, 26, 27, 28, 29, - /* 180 */ 30, 31, 32, 441, 20, 441, 186, 445, 188, 445, - /* 190 */ 12, 13, 14, 15, 16, 97, 101, 20, 100, 63, - /* 200 */ 166, 167, 460, 461, 460, 461, 171, 465, 466, 465, - /* 210 */ 466, 364, 212, 213, 377, 215, 216, 217, 218, 219, + /* 180 */ 30, 31, 32, 441, 379, 441, 186, 445, 188, 445, + /* 190 */ 335, 20, 337, 338, 4, 97, 391, 35, 100, 394, + /* 200 */ 395, 100, 460, 461, 460, 461, 20, 465, 466, 465, + /* 210 */ 466, 110, 212, 213, 377, 215, 216, 217, 218, 219, /* 220 */ 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - /* 230 */ 230, 231, 232, 386, 136, 137, 66, 67, 68, 69, - /* 240 */ 70, 331, 72, 73, 74, 75, 76, 77, 78, 79, + /* 230 */ 230, 231, 232, 71, 136, 137, 66, 67, 68, 69, + /* 240 */ 70, 20, 72, 73, 74, 75, 76, 77, 78, 79, /* 250 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, - /* 260 */ 90, 91, 92, 168, 166, 167, 20, 111, 8, 9, - /* 270 */ 172, 173, 12, 13, 14, 15, 16, 100, 168, 339, - /* 280 */ 20, 136, 137, 80, 186, 112, 188, 377, 131, 254, - /* 290 */ 255, 256, 135, 8, 9, 355, 20, 12, 13, 14, - /* 300 */ 15, 16, 362, 130, 131, 132, 133, 134, 135, 345, - /* 310 */ 212, 213, 372, 215, 216, 217, 218, 219, 220, 221, + /* 260 */ 90, 91, 92, 441, 166, 167, 331, 445, 8, 9, + /* 270 */ 172, 173, 12, 13, 14, 15, 16, 249, 178, 249, + /* 280 */ 20, 136, 137, 461, 186, 112, 188, 465, 466, 63, + /* 290 */ 100, 366, 336, 8, 9, 339, 340, 12, 13, 14, + /* 300 */ 15, 16, 377, 130, 131, 132, 133, 134, 135, 20, + /* 310 */ 212, 213, 377, 215, 216, 217, 218, 219, 220, 221, /* 320 */ 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - /* 330 */ 232, 233, 12, 13, 370, 336, 339, 366, 339, 340, - /* 340 */ 20, 97, 22, 396, 141, 142, 100, 400, 377, 64, - /* 350 */ 193, 194, 269, 33, 197, 35, 199, 113, 114, 115, - /* 360 */ 116, 117, 118, 119, 120, 121, 122, 164, 124, 125, - /* 370 */ 126, 127, 128, 129, 0, 58, 430, 431, 58, 0, - /* 380 */ 14, 331, 411, 412, 64, 388, 20, 390, 441, 44, - /* 390 */ 396, 71, 445, 422, 109, 21, 378, 379, 24, 25, - /* 400 */ 26, 27, 28, 29, 30, 31, 32, 460, 461, 345, - /* 410 */ 130, 131, 465, 466, 364, 135, 99, 97, 14, 102, - /* 420 */ 100, 20, 372, 22, 20, 361, 249, 377, 168, 379, - /* 430 */ 12, 13, 14, 100, 370, 441, 35, 14, 20, 445, - /* 440 */ 22, 8, 9, 20, 100, 12, 13, 14, 15, 16, - /* 450 */ 165, 33, 51, 35, 460, 461, 136, 137, 408, 465, - /* 460 */ 466, 343, 412, 58, 343, 415, 416, 417, 418, 419, - /* 470 */ 420, 0, 422, 331, 331, 425, 58, 427, 428, 429, - /* 480 */ 359, 350, 351, 433, 434, 367, 166, 167, 367, 71, - /* 490 */ 0, 112, 172, 173, 0, 24, 25, 26, 27, 28, - /* 500 */ 29, 30, 31, 32, 233, 100, 186, 102, 188, 130, - /* 510 */ 131, 132, 133, 134, 135, 97, 22, 20, 100, 377, - /* 520 */ 377, 236, 237, 238, 239, 240, 241, 242, 243, 244, - /* 530 */ 245, 246, 212, 213, 71, 215, 216, 217, 218, 219, + /* 330 */ 232, 233, 12, 13, 0, 20, 411, 412, 364, 168, + /* 340 */ 20, 97, 22, 20, 63, 371, 20, 422, 22, 64, + /* 350 */ 171, 343, 58, 33, 380, 35, 343, 113, 114, 115, + /* 360 */ 116, 117, 118, 119, 120, 121, 122, 359, 124, 125, + /* 370 */ 126, 127, 128, 129, 274, 367, 2, 51, 58, 0, + /* 380 */ 367, 331, 8, 9, 64, 111, 12, 13, 14, 15, + /* 390 */ 16, 71, 20, 99, 109, 212, 102, 66, 67, 68, + /* 400 */ 66, 67, 68, 331, 73, 74, 75, 73, 74, 75, + /* 410 */ 79, 430, 431, 79, 364, 84, 85, 97, 84, 85, + /* 420 */ 100, 90, 372, 335, 90, 337, 338, 377, 168, 379, + /* 430 */ 12, 13, 14, 254, 255, 256, 345, 414, 20, 249, + /* 440 */ 22, 22, 259, 260, 261, 262, 263, 264, 265, 377, + /* 450 */ 165, 33, 361, 35, 35, 339, 136, 137, 408, 136, + /* 460 */ 137, 370, 412, 440, 112, 415, 416, 417, 418, 419, + /* 470 */ 420, 355, 422, 0, 339, 425, 58, 427, 428, 429, + /* 480 */ 100, 166, 167, 433, 434, 133, 166, 167, 372, 71, + /* 490 */ 355, 112, 172, 173, 21, 172, 173, 24, 25, 26, + /* 500 */ 27, 28, 29, 30, 31, 32, 186, 372, 188, 130, + /* 510 */ 131, 132, 133, 134, 135, 97, 97, 130, 100, 80, + /* 520 */ 100, 236, 237, 238, 239, 240, 241, 242, 243, 244, + /* 530 */ 245, 246, 212, 213, 0, 215, 216, 217, 218, 219, /* 540 */ 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - /* 550 */ 230, 231, 232, 22, 136, 137, 66, 67, 68, 66, - /* 560 */ 67, 68, 20, 111, 74, 75, 35, 74, 75, 79, - /* 570 */ 166, 4, 79, 364, 84, 85, 366, 84, 85, 331, - /* 580 */ 90, 372, 249, 90, 166, 167, 339, 377, 71, 166, - /* 590 */ 172, 173, 21, 249, 8, 9, 4, 100, 12, 13, - /* 600 */ 14, 15, 16, 2, 186, 34, 188, 36, 20, 8, - /* 610 */ 9, 178, 364, 12, 13, 14, 15, 16, 273, 372, - /* 620 */ 372, 411, 412, 413, 365, 377, 417, 379, 97, 365, - /* 630 */ 212, 213, 422, 215, 216, 217, 218, 219, 220, 221, + /* 550 */ 230, 231, 232, 396, 136, 137, 71, 400, 24, 25, + /* 560 */ 26, 27, 28, 29, 30, 31, 32, 58, 336, 8, + /* 570 */ 9, 339, 340, 12, 13, 14, 15, 16, 364, 331, + /* 580 */ 141, 142, 195, 196, 166, 167, 339, 373, 8, 9, + /* 590 */ 172, 173, 12, 13, 14, 15, 16, 3, 441, 111, + /* 600 */ 364, 345, 445, 164, 186, 364, 188, 371, 426, 100, + /* 610 */ 428, 102, 364, 372, 20, 363, 380, 460, 461, 372, + /* 620 */ 372, 0, 465, 466, 44, 377, 370, 379, 376, 249, + /* 630 */ 212, 213, 181, 215, 216, 217, 218, 219, 220, 221, /* 640 */ 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - /* 650 */ 232, 12, 13, 100, 249, 364, 408, 339, 130, 20, - /* 660 */ 412, 22, 371, 415, 416, 417, 418, 419, 420, 212, - /* 670 */ 422, 380, 33, 355, 35, 427, 96, 429, 136, 137, - /* 680 */ 372, 433, 434, 436, 437, 438, 439, 101, 441, 442, - /* 690 */ 372, 383, 100, 339, 8, 9, 331, 58, 12, 13, - /* 700 */ 14, 15, 16, 455, 14, 15, 16, 274, 365, 355, - /* 710 */ 71, 339, 331, 365, 172, 173, 259, 260, 261, 262, - /* 720 */ 263, 264, 265, 195, 196, 414, 372, 8, 9, 364, - /* 730 */ 44, 12, 13, 14, 15, 16, 97, 372, 185, 100, - /* 740 */ 187, 441, 377, 441, 379, 445, 249, 445, 168, 12, - /* 750 */ 13, 440, 414, 339, 396, 35, 168, 20, 377, 22, - /* 760 */ 388, 461, 390, 461, 211, 465, 466, 465, 466, 355, - /* 770 */ 33, 356, 35, 408, 339, 136, 137, 412, 440, 364, - /* 780 */ 415, 416, 417, 418, 419, 420, 372, 422, 373, 339, - /* 790 */ 355, 71, 181, 339, 364, 58, 331, 339, 331, 441, - /* 800 */ 339, 371, 249, 445, 331, 166, 167, 372, 71, 355, - /* 810 */ 380, 172, 173, 355, 203, 204, 355, 250, 460, 461, - /* 820 */ 101, 456, 457, 465, 466, 186, 372, 188, 356, 0, - /* 830 */ 372, 364, 0, 372, 97, 22, 364, 100, 388, 372, - /* 840 */ 390, 249, 377, 339, 377, 373, 379, 20, 35, 22, - /* 850 */ 377, 212, 213, 165, 215, 216, 217, 218, 219, 220, + /* 650 */ 232, 12, 13, 396, 203, 204, 408, 339, 417, 20, + /* 660 */ 412, 22, 101, 415, 416, 417, 418, 419, 420, 249, + /* 670 */ 422, 339, 33, 355, 35, 427, 339, 429, 378, 379, + /* 680 */ 362, 433, 434, 436, 437, 438, 439, 355, 441, 442, + /* 690 */ 372, 4, 355, 414, 362, 101, 331, 58, 441, 111, + /* 700 */ 331, 339, 445, 455, 372, 339, 19, 8, 9, 372, + /* 710 */ 71, 12, 13, 14, 15, 16, 339, 460, 461, 440, + /* 720 */ 33, 355, 465, 466, 14, 15, 16, 339, 131, 364, + /* 730 */ 339, 339, 135, 112, 372, 48, 97, 372, 372, 100, + /* 740 */ 53, 233, 377, 355, 379, 58, 377, 355, 160, 12, + /* 750 */ 13, 130, 131, 132, 133, 134, 135, 20, 249, 22, + /* 760 */ 372, 356, 168, 372, 372, 388, 339, 390, 366, 364, + /* 770 */ 33, 396, 35, 408, 71, 136, 137, 412, 373, 377, + /* 780 */ 415, 416, 417, 418, 419, 420, 99, 422, 365, 102, + /* 790 */ 193, 194, 331, 339, 197, 58, 199, 331, 331, 437, + /* 800 */ 438, 439, 356, 441, 442, 166, 167, 372, 71, 355, + /* 810 */ 364, 172, 173, 411, 412, 388, 441, 390, 383, 373, + /* 820 */ 445, 456, 457, 0, 422, 186, 372, 188, 437, 438, + /* 830 */ 439, 364, 441, 442, 97, 460, 461, 100, 377, 372, + /* 840 */ 465, 466, 14, 377, 377, 331, 379, 14, 20, 331, + /* 850 */ 414, 212, 213, 20, 215, 216, 217, 218, 219, 220, /* 860 */ 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - /* 870 */ 231, 232, 20, 136, 137, 408, 372, 365, 51, 412, - /* 880 */ 331, 331, 415, 416, 417, 418, 419, 420, 18, 422, - /* 890 */ 364, 366, 63, 23, 427, 339, 429, 371, 350, 351, - /* 900 */ 433, 434, 377, 166, 167, 331, 380, 37, 38, 172, - /* 910 */ 173, 41, 425, 8, 9, 428, 39, 12, 13, 14, - /* 920 */ 15, 16, 414, 186, 236, 188, 377, 377, 372, 59, - /* 930 */ 60, 61, 62, 331, 246, 331, 411, 412, 413, 45, - /* 940 */ 46, 437, 438, 439, 331, 441, 442, 422, 440, 212, + /* 870 */ 231, 232, 365, 136, 137, 408, 440, 21, 331, 412, + /* 880 */ 365, 339, 415, 416, 417, 418, 419, 420, 18, 422, + /* 890 */ 34, 377, 36, 23, 427, 377, 429, 355, 365, 364, + /* 900 */ 433, 434, 331, 166, 167, 331, 371, 37, 38, 172, + /* 910 */ 173, 41, 8, 9, 372, 380, 12, 13, 14, 15, + /* 920 */ 16, 130, 131, 186, 377, 188, 135, 37, 356, 59, + /* 930 */ 60, 61, 62, 39, 8, 9, 364, 3, 12, 13, + /* 940 */ 14, 15, 16, 331, 331, 373, 350, 351, 377, 212, /* 950 */ 213, 377, 215, 216, 217, 218, 219, 220, 221, 222, /* 960 */ 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - /* 970 */ 100, 18, 339, 20, 331, 247, 248, 364, 331, 377, - /* 980 */ 27, 377, 365, 30, 339, 372, 33, 155, 355, 332, - /* 990 */ 377, 331, 379, 437, 438, 439, 164, 441, 442, 331, - /* 1000 */ 355, 48, 233, 50, 235, 372, 53, 364, 138, 353, - /* 1010 */ 339, 339, 369, 1, 2, 372, 0, 372, 166, 44, - /* 1020 */ 377, 408, 379, 339, 377, 412, 355, 355, 415, 416, - /* 1030 */ 417, 418, 419, 420, 426, 422, 428, 377, 339, 355, - /* 1040 */ 427, 331, 429, 372, 372, 377, 433, 434, 178, 179, - /* 1050 */ 180, 408, 99, 183, 355, 412, 372, 444, 415, 416, - /* 1060 */ 417, 418, 419, 420, 111, 422, 426, 331, 428, 22, - /* 1070 */ 20, 372, 202, 168, 331, 205, 101, 207, 208, 209, - /* 1080 */ 210, 211, 35, 372, 372, 331, 360, 377, 401, 331, - /* 1090 */ 352, 396, 354, 140, 383, 383, 143, 144, 145, 146, + /* 970 */ 100, 18, 364, 20, 331, 350, 351, 364, 155, 371, + /* 980 */ 27, 339, 4, 30, 339, 372, 33, 164, 380, 377, + /* 990 */ 377, 22, 379, 103, 166, 105, 106, 355, 108, 166, + /* 1000 */ 355, 48, 112, 50, 35, 101, 53, 364, 138, 365, + /* 1010 */ 339, 339, 369, 0, 372, 372, 233, 372, 235, 20, + /* 1020 */ 377, 408, 379, 133, 365, 412, 355, 355, 415, 416, + /* 1030 */ 417, 418, 419, 420, 352, 422, 354, 331, 331, 100, + /* 1040 */ 427, 20, 429, 372, 372, 331, 433, 434, 178, 179, + /* 1050 */ 180, 408, 99, 183, 339, 412, 20, 444, 415, 416, + /* 1060 */ 417, 418, 419, 420, 111, 422, 97, 1, 2, 22, + /* 1070 */ 355, 331, 202, 0, 165, 205, 63, 207, 208, 209, + /* 1080 */ 210, 211, 35, 377, 377, 331, 331, 372, 331, 331, + /* 1090 */ 426, 377, 428, 140, 168, 22, 143, 144, 145, 146, /* 1100 */ 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, - /* 1110 */ 157, 158, 159, 377, 161, 162, 163, 64, 71, 249, - /* 1120 */ 377, 387, 364, 364, 364, 248, 339, 35, 112, 339, - /* 1130 */ 372, 377, 406, 373, 0, 377, 441, 379, 331, 380, - /* 1140 */ 445, 37, 355, 112, 97, 355, 130, 131, 132, 133, - /* 1150 */ 134, 135, 111, 35, 374, 460, 461, 377, 469, 372, - /* 1160 */ 465, 466, 372, 458, 133, 339, 408, 339, 44, 374, + /* 1110 */ 157, 158, 159, 339, 161, 162, 163, 377, 71, 249, + /* 1120 */ 339, 44, 364, 339, 185, 339, 187, 339, 401, 355, + /* 1130 */ 372, 377, 377, 44, 377, 377, 355, 379, 331, 355, + /* 1140 */ 372, 355, 248, 355, 97, 236, 372, 360, 372, 357, + /* 1150 */ 211, 383, 360, 372, 374, 246, 372, 377, 372, 383, + /* 1160 */ 372, 45, 46, 247, 248, 166, 408, 101, 0, 374, /* 1170 */ 412, 364, 377, 415, 416, 417, 418, 419, 420, 372, - /* 1180 */ 422, 355, 48, 355, 377, 427, 379, 429, 0, 71, - /* 1190 */ 374, 433, 434, 377, 341, 339, 357, 331, 372, 360, - /* 1200 */ 372, 160, 444, 42, 42, 44, 44, 103, 35, 105, - /* 1210 */ 106, 355, 108, 58, 104, 408, 112, 107, 168, 412, - /* 1220 */ 331, 100, 415, 416, 417, 418, 419, 420, 372, 422, - /* 1230 */ 364, 110, 44, 186, 427, 188, 429, 133, 372, 104, - /* 1240 */ 433, 434, 107, 377, 104, 379, 104, 107, 0, 107, - /* 1250 */ 0, 444, 198, 364, 200, 44, 44, 102, 452, 212, - /* 1260 */ 213, 372, 44, 44, 44, 212, 377, 13, 379, 44, - /* 1270 */ 22, 44, 22, 44, 408, 136, 137, 44, 412, 44, - /* 1280 */ 188, 415, 416, 417, 418, 419, 420, 47, 422, 35, - /* 1290 */ 44, 364, 341, 427, 387, 429, 338, 408, 331, 433, - /* 1300 */ 434, 412, 44, 13, 415, 416, 417, 418, 419, 420, - /* 1310 */ 444, 422, 101, 101, 12, 13, 427, 44, 429, 101, - /* 1320 */ 101, 101, 433, 434, 22, 35, 101, 0, 101, 387, - /* 1330 */ 101, 364, 376, 444, 101, 33, 101, 35, 443, 372, - /* 1340 */ 100, 462, 446, 33, 377, 44, 379, 101, 8, 9, - /* 1350 */ 44, 44, 12, 13, 14, 15, 16, 331, 48, 101, - /* 1360 */ 58, 188, 44, 44, 54, 55, 56, 57, 58, 435, - /* 1370 */ 251, 410, 48, 71, 101, 408, 49, 409, 44, 412, - /* 1380 */ 331, 184, 415, 416, 417, 418, 419, 420, 398, 422, - /* 1390 */ 364, 42, 384, 20, 427, 271, 429, 387, 372, 97, - /* 1400 */ 433, 434, 101, 377, 384, 379, 165, 101, 101, 99, - /* 1410 */ 382, 20, 102, 364, 339, 339, 384, 382, 382, 101, - /* 1420 */ 101, 372, 349, 98, 95, 348, 377, 339, 379, 94, - /* 1430 */ 347, 20, 339, 339, 408, 101, 339, 20, 412, 333, - /* 1440 */ 333, 415, 416, 417, 418, 419, 420, 403, 422, 20, - /* 1450 */ 345, 379, 20, 427, 345, 429, 340, 408, 20, 433, - /* 1460 */ 434, 412, 331, 397, 415, 416, 417, 418, 419, 420, - /* 1470 */ 345, 422, 340, 345, 345, 345, 339, 52, 429, 169, - /* 1480 */ 170, 345, 433, 434, 174, 342, 176, 342, 186, 333, - /* 1490 */ 188, 364, 377, 201, 377, 364, 333, 364, 407, 339, - /* 1500 */ 377, 100, 192, 372, 405, 364, 403, 343, 377, 343, - /* 1510 */ 379, 331, 364, 364, 212, 213, 364, 364, 364, 191, - /* 1520 */ 339, 364, 364, 364, 402, 379, 258, 225, 226, 227, - /* 1530 */ 228, 229, 230, 231, 331, 451, 257, 387, 387, 408, - /* 1540 */ 451, 454, 377, 412, 364, 377, 415, 416, 417, 418, - /* 1550 */ 419, 420, 372, 422, 377, 377, 177, 377, 450, 379, - /* 1560 */ 429, 392, 392, 266, 433, 434, 453, 364, 268, 252, - /* 1570 */ 267, 451, 470, 372, 448, 372, 464, 410, 270, 275, - /* 1580 */ 377, 272, 379, 20, 248, 414, 339, 449, 408, 340, - /* 1590 */ 20, 392, 412, 377, 343, 415, 416, 417, 418, 419, - /* 1600 */ 420, 377, 422, 343, 390, 377, 331, 463, 377, 429, - /* 1610 */ 170, 408, 389, 433, 434, 412, 377, 343, 415, 416, - /* 1620 */ 417, 418, 419, 420, 421, 422, 423, 424, 392, 331, - /* 1630 */ 377, 360, 343, 372, 100, 100, 432, 368, 354, 364, - /* 1640 */ 377, 36, 343, 19, 339, 334, 333, 372, 404, 393, - /* 1650 */ 393, 399, 377, 358, 379, 329, 344, 33, 0, 0, - /* 1660 */ 0, 42, 364, 331, 0, 35, 206, 35, 35, 35, - /* 1670 */ 372, 206, 48, 358, 358, 377, 35, 379, 54, 55, - /* 1680 */ 56, 57, 58, 408, 0, 35, 206, 412, 0, 331, + /* 1180 */ 422, 42, 44, 44, 377, 427, 379, 429, 249, 168, + /* 1190 */ 101, 433, 434, 406, 22, 374, 0, 331, 377, 42, + /* 1200 */ 44, 44, 444, 269, 168, 104, 104, 35, 107, 107, + /* 1210 */ 104, 104, 44, 107, 107, 408, 136, 137, 22, 412, + /* 1220 */ 331, 58, 415, 416, 417, 418, 419, 420, 250, 422, + /* 1230 */ 364, 353, 44, 186, 427, 188, 429, 198, 372, 200, + /* 1240 */ 433, 434, 0, 377, 35, 379, 44, 96, 1, 2, + /* 1250 */ 332, 444, 387, 364, 64, 44, 44, 101, 13, 212, + /* 1260 */ 213, 372, 469, 44, 22, 102, 377, 458, 379, 44, + /* 1270 */ 44, 44, 44, 44, 408, 44, 35, 44, 412, 44, + /* 1280 */ 35, 415, 416, 417, 418, 419, 420, 47, 422, 101, + /* 1290 */ 44, 341, 44, 427, 44, 429, 44, 408, 331, 433, + /* 1300 */ 434, 412, 44, 101, 415, 416, 417, 418, 419, 420, + /* 1310 */ 444, 422, 101, 101, 12, 13, 427, 341, 429, 168, + /* 1320 */ 101, 0, 433, 434, 22, 35, 101, 101, 101, 101, + /* 1330 */ 101, 364, 101, 444, 101, 33, 101, 35, 452, 372, + /* 1340 */ 100, 13, 387, 33, 377, 364, 379, 101, 271, 101, + /* 1350 */ 338, 101, 387, 101, 443, 376, 435, 331, 48, 101, + /* 1360 */ 58, 71, 462, 35, 54, 55, 56, 57, 58, 446, + /* 1370 */ 49, 251, 410, 71, 48, 408, 184, 409, 398, 412, + /* 1380 */ 331, 42, 415, 416, 417, 418, 419, 420, 384, 422, + /* 1390 */ 364, 20, 387, 384, 427, 165, 429, 188, 372, 97, + /* 1400 */ 433, 434, 212, 377, 382, 379, 20, 339, 339, 99, + /* 1410 */ 382, 273, 102, 364, 384, 382, 98, 95, 339, 349, + /* 1420 */ 348, 372, 347, 94, 339, 339, 377, 396, 379, 188, + /* 1430 */ 339, 20, 333, 333, 408, 20, 20, 403, 412, 345, + /* 1440 */ 379, 415, 416, 417, 418, 419, 420, 20, 422, 345, + /* 1450 */ 340, 20, 397, 427, 345, 429, 345, 408, 340, 433, + /* 1460 */ 434, 412, 331, 339, 415, 416, 417, 418, 419, 420, + /* 1470 */ 345, 422, 441, 345, 345, 52, 445, 342, 429, 169, + /* 1480 */ 170, 333, 433, 434, 174, 342, 176, 364, 186, 339, + /* 1490 */ 188, 460, 461, 333, 364, 364, 465, 466, 364, 377, + /* 1500 */ 364, 364, 192, 372, 364, 364, 364, 201, 377, 364, + /* 1510 */ 379, 331, 407, 364, 212, 213, 364, 100, 405, 343, + /* 1520 */ 403, 377, 191, 377, 343, 339, 379, 225, 226, 227, + /* 1530 */ 228, 229, 230, 231, 331, 402, 377, 258, 451, 408, + /* 1540 */ 387, 387, 257, 412, 364, 177, 415, 416, 417, 418, + /* 1550 */ 419, 420, 372, 422, 392, 377, 392, 377, 266, 379, + /* 1560 */ 429, 377, 377, 451, 433, 434, 451, 364, 454, 268, + /* 1570 */ 267, 450, 453, 470, 448, 372, 449, 252, 248, 410, + /* 1580 */ 377, 272, 379, 275, 270, 372, 20, 414, 408, 340, + /* 1590 */ 339, 20, 412, 392, 390, 415, 416, 417, 418, 419, + /* 1600 */ 420, 377, 422, 343, 343, 170, 331, 392, 343, 429, + /* 1610 */ 389, 408, 343, 433, 434, 412, 377, 100, 415, 416, + /* 1620 */ 417, 418, 419, 420, 421, 422, 423, 424, 463, 331, + /* 1630 */ 464, 377, 377, 377, 377, 372, 360, 432, 100, 364, + /* 1640 */ 368, 377, 354, 19, 339, 36, 334, 372, 333, 358, + /* 1650 */ 343, 358, 377, 358, 379, 344, 329, 33, 399, 393, + /* 1660 */ 393, 0, 364, 331, 0, 0, 404, 42, 0, 35, + /* 1670 */ 372, 206, 48, 35, 35, 377, 35, 379, 54, 55, + /* 1680 */ 56, 57, 58, 408, 206, 0, 35, 412, 35, 331, /* 1690 */ 415, 416, 417, 418, 419, 420, 364, 422, 206, 0, - /* 1700 */ 35, 0, 22, 0, 372, 35, 408, 193, 188, 377, - /* 1710 */ 412, 379, 186, 415, 416, 417, 418, 419, 420, 0, - /* 1720 */ 422, 0, 364, 99, 0, 182, 102, 429, 181, 0, - /* 1730 */ 372, 0, 434, 47, 0, 377, 0, 379, 0, 42, - /* 1740 */ 408, 0, 467, 468, 412, 0, 0, 415, 416, 417, + /* 1700 */ 206, 0, 35, 0, 372, 22, 408, 0, 35, 377, + /* 1710 */ 412, 379, 193, 415, 416, 417, 418, 419, 420, 188, + /* 1720 */ 422, 186, 364, 99, 0, 0, 102, 429, 0, 182, + /* 1730 */ 372, 181, 434, 0, 0, 377, 47, 379, 0, 0, + /* 1740 */ 408, 0, 467, 468, 412, 0, 42, 415, 416, 417, /* 1750 */ 418, 419, 420, 331, 422, 0, 0, 0, 134, 155, - /* 1760 */ 35, 0, 155, 0, 0, 0, 408, 0, 0, 0, + /* 1760 */ 0, 35, 155, 0, 0, 0, 408, 0, 0, 0, /* 1770 */ 412, 0, 0, 415, 416, 417, 418, 419, 420, 0, /* 1780 */ 422, 0, 0, 0, 0, 331, 364, 0, 0, 457, - /* 1790 */ 0, 0, 0, 169, 372, 42, 0, 0, 174, 377, - /* 1800 */ 0, 379, 0, 0, 0, 0, 0, 22, 0, 0, - /* 1810 */ 331, 139, 0, 96, 190, 22, 192, 459, 364, 96, - /* 1820 */ 22, 0, 0, 0, 58, 0, 372, 0, 58, 35, - /* 1830 */ 408, 377, 58, 379, 412, 0, 47, 415, 416, 417, - /* 1840 */ 418, 419, 420, 364, 422, 44, 47, 14, 369, 42, - /* 1850 */ 39, 372, 14, 40, 39, 0, 377, 47, 379, 331, - /* 1860 */ 0, 0, 408, 39, 177, 0, 412, 0, 0, 415, - /* 1870 */ 416, 417, 418, 419, 420, 331, 422, 0, 424, 65, - /* 1880 */ 0, 35, 48, 39, 0, 35, 39, 408, 48, 0, - /* 1890 */ 468, 412, 364, 35, 415, 416, 417, 418, 419, 420, - /* 1900 */ 372, 422, 48, 39, 0, 377, 35, 379, 364, 39, - /* 1910 */ 48, 0, 0, 369, 35, 22, 372, 0, 0, 0, - /* 1920 */ 35, 377, 35, 379, 331, 109, 107, 35, 22, 35, - /* 1930 */ 44, 35, 44, 0, 35, 35, 408, 22, 0, 0, - /* 1940 */ 412, 331, 22, 415, 416, 417, 418, 419, 420, 22, - /* 1950 */ 422, 50, 408, 0, 0, 0, 412, 364, 331, 415, - /* 1960 */ 416, 417, 418, 419, 420, 372, 422, 35, 22, 35, - /* 1970 */ 377, 35, 379, 101, 364, 35, 20, 35, 35, 0, - /* 1980 */ 35, 100, 372, 100, 0, 168, 22, 377, 168, 379, - /* 1990 */ 0, 364, 0, 175, 3, 44, 170, 168, 101, 372, - /* 2000 */ 253, 408, 100, 100, 377, 412, 379, 331, 415, 416, - /* 2010 */ 417, 418, 419, 420, 98, 422, 95, 189, 408, 96, - /* 2020 */ 96, 44, 412, 331, 44, 415, 416, 417, 418, 419, - /* 2030 */ 420, 101, 422, 44, 47, 408, 101, 100, 44, 412, + /* 1790 */ 0, 0, 0, 169, 372, 0, 0, 0, 174, 377, + /* 1800 */ 42, 379, 0, 0, 0, 0, 0, 22, 0, 0, + /* 1810 */ 331, 0, 0, 139, 190, 0, 192, 459, 364, 96, + /* 1820 */ 22, 22, 0, 96, 58, 0, 372, 0, 35, 0, + /* 1830 */ 408, 377, 58, 379, 412, 58, 0, 415, 416, 417, + /* 1840 */ 418, 419, 420, 364, 422, 44, 0, 47, 369, 42, + /* 1850 */ 0, 372, 39, 14, 14, 39, 377, 47, 379, 331, + /* 1860 */ 40, 47, 408, 0, 0, 39, 412, 177, 0, 415, + /* 1870 */ 416, 417, 418, 419, 420, 331, 422, 0, 424, 0, + /* 1880 */ 0, 0, 65, 35, 39, 48, 0, 408, 35, 48, + /* 1890 */ 468, 412, 364, 39, 415, 416, 417, 418, 419, 420, + /* 1900 */ 372, 422, 0, 48, 35, 377, 39, 379, 364, 0, + /* 1910 */ 35, 39, 0, 369, 48, 0, 372, 0, 0, 35, + /* 1920 */ 0, 377, 22, 379, 331, 35, 107, 109, 35, 35, + /* 1930 */ 35, 35, 44, 44, 35, 22, 408, 0, 35, 35, + /* 1940 */ 412, 331, 0, 415, 416, 417, 418, 419, 420, 22, + /* 1950 */ 422, 22, 408, 0, 22, 50, 412, 364, 331, 415, + /* 1960 */ 416, 417, 418, 419, 420, 372, 422, 0, 35, 35, + /* 1970 */ 377, 0, 379, 35, 364, 0, 22, 20, 35, 35, + /* 1980 */ 35, 0, 372, 101, 35, 100, 0, 377, 22, 379, + /* 1990 */ 0, 364, 168, 170, 0, 3, 175, 100, 168, 372, + /* 2000 */ 44, 408, 168, 253, 377, 412, 379, 331, 415, 416, + /* 2010 */ 417, 418, 419, 420, 44, 422, 100, 189, 408, 96, + /* 2020 */ 101, 100, 412, 331, 98, 415, 416, 417, 418, 419, + /* 2030 */ 420, 96, 422, 44, 95, 408, 3, 101, 47, 412, /* 2040 */ 364, 331, 415, 416, 417, 418, 419, 420, 372, 422, - /* 2050 */ 100, 47, 100, 377, 3, 379, 364, 44, 101, 100, - /* 2060 */ 35, 101, 101, 35, 372, 35, 35, 35, 35, 377, - /* 2070 */ 101, 379, 101, 47, 364, 0, 47, 0, 247, 44, - /* 2080 */ 0, 0, 372, 253, 408, 100, 39, 377, 412, 379, - /* 2090 */ 331, 415, 416, 417, 418, 419, 420, 47, 422, 100, - /* 2100 */ 408, 253, 101, 101, 412, 100, 331, 415, 416, 417, - /* 2110 */ 418, 419, 420, 0, 422, 100, 100, 39, 408, 171, - /* 2120 */ 100, 110, 412, 364, 234, 415, 416, 417, 418, 419, - /* 2130 */ 420, 372, 422, 47, 169, 44, 377, 98, 379, 364, - /* 2140 */ 98, 2, 22, 212, 100, 47, 101, 372, 100, 47, - /* 2150 */ 101, 22, 377, 100, 379, 101, 100, 100, 214, 101, - /* 2160 */ 100, 35, 101, 331, 100, 35, 111, 408, 101, 35, + /* 2050 */ 44, 101, 100, 377, 47, 379, 364, 44, 100, 100, + /* 2060 */ 44, 101, 100, 35, 372, 101, 101, 35, 47, 377, + /* 2070 */ 35, 379, 35, 35, 364, 35, 47, 101, 101, 0, + /* 2080 */ 44, 0, 372, 100, 408, 247, 253, 377, 412, 379, + /* 2090 */ 331, 415, 416, 417, 418, 419, 420, 253, 422, 0, + /* 2100 */ 408, 0, 39, 47, 412, 100, 331, 415, 416, 417, + /* 2110 */ 418, 419, 420, 0, 422, 101, 101, 100, 408, 100, + /* 2120 */ 100, 39, 412, 364, 169, 415, 416, 417, 418, 419, + /* 2130 */ 420, 372, 422, 110, 100, 47, 377, 44, 379, 364, + /* 2140 */ 171, 98, 234, 98, 2, 22, 100, 372, 101, 100, + /* 2150 */ 47, 101, 377, 212, 379, 100, 47, 22, 101, 100, + /* 2160 */ 100, 214, 101, 331, 100, 111, 101, 408, 35, 35, /* 2170 */ 100, 412, 101, 35, 415, 416, 417, 418, 419, 420, - /* 2180 */ 331, 422, 100, 408, 35, 101, 101, 412, 100, 35, - /* 2190 */ 415, 416, 417, 418, 419, 420, 364, 422, 22, 100, - /* 2200 */ 100, 44, 123, 100, 372, 112, 35, 100, 22, 377, - /* 2210 */ 123, 379, 123, 364, 64, 123, 65, 35, 35, 35, + /* 2180 */ 331, 422, 35, 408, 100, 35, 101, 412, 101, 100, + /* 2190 */ 415, 416, 417, 418, 419, 420, 364, 422, 100, 35, + /* 2200 */ 123, 101, 100, 123, 372, 22, 112, 100, 100, 377, + /* 2210 */ 44, 379, 35, 364, 123, 123, 100, 22, 65, 64, /* 2220 */ 35, 372, 35, 35, 35, 35, 377, 35, 379, 331, - /* 2230 */ 35, 71, 22, 93, 35, 44, 35, 35, 35, 35, - /* 2240 */ 408, 35, 35, 71, 412, 331, 35, 415, 416, 417, - /* 2250 */ 418, 419, 420, 35, 422, 35, 35, 408, 22, 35, - /* 2260 */ 0, 412, 364, 35, 415, 416, 417, 418, 419, 420, - /* 2270 */ 372, 422, 39, 48, 0, 377, 35, 379, 364, 48, - /* 2280 */ 0, 39, 35, 48, 39, 0, 372, 35, 48, 39, - /* 2290 */ 0, 377, 35, 379, 331, 0, 35, 22, 21, 471, - /* 2300 */ 22, 22, 21, 20, 471, 471, 408, 471, 471, 471, + /* 2230 */ 71, 35, 93, 35, 35, 35, 35, 44, 35, 35, + /* 2240 */ 408, 22, 35, 35, 412, 331, 35, 415, 416, 417, + /* 2250 */ 418, 419, 420, 71, 422, 35, 35, 408, 35, 35, + /* 2260 */ 35, 412, 364, 22, 415, 416, 417, 418, 419, 420, + /* 2270 */ 372, 422, 35, 0, 35, 377, 48, 379, 364, 39, + /* 2280 */ 0, 48, 35, 39, 0, 35, 372, 39, 0, 35, + /* 2290 */ 48, 377, 39, 379, 331, 0, 35, 48, 35, 0, + /* 2300 */ 22, 22, 21, 20, 22, 471, 408, 21, 471, 471, /* 2310 */ 412, 471, 471, 415, 416, 417, 418, 419, 420, 331, /* 2320 */ 422, 471, 408, 471, 471, 471, 412, 364, 471, 415, /* 2330 */ 416, 417, 418, 419, 420, 372, 422, 471, 471, 471, @@ -755,89 +755,89 @@ static const YYCODETYPE yy_lookahead[] = { /* 2650 */ 471, 471, 471, 471, 408, 471, 471, 471, 412, 471, /* 2660 */ 471, 415, 416, 417, 418, 419, 420, 471, 422, }; -#define YY_SHIFT_COUNT (750) +#define YY_SHIFT_COUNT (751) #define YY_SHIFT_MIN (0) -#define YY_SHIFT_MAX (2295) +#define YY_SHIFT_MAX (2299) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 870, 0, 98, 0, 320, 320, 320, 320, 320, 320, /* 10 */ 320, 320, 320, 320, 320, 418, 639, 639, 737, 639, /* 20 */ 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, /* 30 */ 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, - /* 40 */ 639, 639, 639, 639, 639, 639, 639, 639, 177, 497, - /* 50 */ 553, 246, 405, 333, 344, 333, 246, 246, 1302, 1302, - /* 60 */ 1302, 333, 1302, 1302, 592, 333, 39, 542, 73, 73, - /* 70 */ 542, 7, 7, 34, 145, 366, 366, 73, 73, 73, - /* 80 */ 73, 73, 73, 73, 93, 73, 73, 65, 39, 73, - /* 90 */ 73, 164, 73, 39, 73, 93, 73, 93, 39, 73, - /* 100 */ 73, 39, 73, 39, 39, 39, 73, 136, 953, 285, - /* 110 */ 285, 150, 493, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + /* 40 */ 639, 639, 639, 639, 639, 639, 639, 639, 28, 30, + /* 50 */ 939, 17, 509, 380, 420, 380, 17, 17, 1302, 1302, + /* 60 */ 1302, 380, 1302, 1302, 190, 380, 87, 323, 186, 186, + /* 70 */ 323, 89, 89, 315, 145, 14, 14, 186, 186, 186, + /* 80 */ 186, 186, 186, 186, 221, 186, 186, 226, 87, 186, + /* 90 */ 186, 289, 186, 87, 186, 221, 186, 221, 87, 186, + /* 100 */ 186, 87, 186, 87, 87, 87, 186, 281, 953, 285, + /* 110 */ 285, 331, 150, 1047, 1047, 1047, 1047, 1047, 1047, 1047, /* 120 */ 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - /* 130 */ 1047, 1047, 1104, 95, 34, 145, 720, 110, 110, 110, - /* 140 */ 829, 769, 769, 720, 276, 276, 276, 65, 156, 271, - /* 150 */ 39, 463, 39, 463, 463, 452, 517, 244, 244, 244, - /* 160 */ 244, 244, 244, 244, 244, 1624, 374, 490, 260, 433, - /* 170 */ 457, 401, 35, 404, 423, 827, 588, 894, 1031, 1050, - /* 180 */ 728, 877, 83, 728, 1161, 567, 852, 1119, 1324, 1197, - /* 190 */ 1349, 1373, 1349, 1241, 1391, 1391, 1349, 1241, 1241, 1325, - /* 200 */ 1329, 1391, 1335, 1391, 1391, 1391, 1411, 1411, 1417, 65, - /* 210 */ 1429, 65, 1432, 1438, 65, 1432, 65, 65, 65, 1391, - /* 220 */ 65, 1425, 1425, 1411, 39, 39, 39, 39, 39, 39, - /* 230 */ 39, 39, 39, 39, 39, 1391, 1411, 463, 463, 463, - /* 240 */ 1292, 1401, 1417, 136, 1328, 1429, 136, 1391, 1373, 1373, - /* 250 */ 463, 1268, 1279, 463, 1268, 1279, 463, 463, 39, 1297, - /* 260 */ 1379, 1268, 1300, 1303, 1317, 1119, 1304, 1309, 1308, 1336, - /* 270 */ 276, 1563, 1391, 1432, 136, 136, 1570, 1279, 463, 463, - /* 280 */ 463, 463, 463, 1279, 463, 1440, 136, 452, 136, 276, - /* 290 */ 1534, 1535, 463, 517, 1391, 136, 1605, 1411, 2669, 2669, - /* 300 */ 2669, 2669, 2669, 2669, 2669, 2669, 2669, 170, 1310, 471, - /* 310 */ 15, 586, 686, 719, 379, 139, 601, 905, 1016, 1340, - /* 320 */ 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 173, 157, - /* 330 */ 178, 178, 203, 611, 832, 317, 6, 531, 571, 528, - /* 340 */ 280, 280, 690, 45, 688, 690, 690, 690, 1134, 975, - /* 350 */ 813, 1162, 1041, 1188, 1110, 1135, 1140, 1142, 494, 1248, - /* 360 */ 1250, 1054, 1211, 1212, 1155, 1218, 1219, 1220, 1139, 1124, - /* 370 */ 345, 580, 1225, 1227, 1229, 1233, 1235, 1246, 1012, 1258, - /* 380 */ 1092, 1173, 1053, 1273, 1240, 1301, 1306, 1307, 1318, 1319, - /* 390 */ 1334, 1121, 1254, 1290, 1118, 1327, 1658, 1659, 1660, 1619, - /* 400 */ 1664, 1630, 1460, 1632, 1633, 1634, 1465, 1684, 1641, 1650, - /* 410 */ 1480, 1688, 1492, 1699, 1665, 1701, 1680, 1703, 1670, 1514, - /* 420 */ 1520, 1526, 1719, 1721, 1724, 1543, 1547, 1729, 1731, 1686, - /* 430 */ 1734, 1736, 1738, 1697, 1741, 1745, 1746, 1755, 1756, 1757, - /* 440 */ 1767, 1768, 1604, 1725, 1761, 1607, 1763, 1764, 1765, 1769, - /* 450 */ 1771, 1772, 1779, 1781, 1782, 1783, 1784, 1787, 1788, 1790, - /* 460 */ 1791, 1792, 1753, 1796, 1797, 1800, 1802, 1803, 1804, 1785, - /* 470 */ 1805, 1806, 1808, 1672, 1809, 1812, 1793, 1717, 1798, 1723, - /* 480 */ 1821, 1766, 1794, 1822, 1770, 1823, 1774, 1825, 1827, 1807, - /* 490 */ 1811, 1801, 1789, 1833, 1799, 1838, 1810, 1835, 1813, 1815, - /* 500 */ 1855, 1860, 1861, 1824, 1687, 1865, 1867, 1868, 1814, 1877, - /* 510 */ 1880, 1846, 1834, 1844, 1884, 1850, 1840, 1847, 1889, 1858, - /* 520 */ 1854, 1864, 1904, 1871, 1862, 1870, 1911, 1912, 1917, 1918, - /* 530 */ 1816, 1819, 1879, 1893, 1919, 1885, 1887, 1892, 1894, 1886, - /* 540 */ 1888, 1896, 1899, 1906, 1900, 1933, 1915, 1938, 1920, 1901, - /* 550 */ 1939, 1927, 1932, 1953, 1934, 1954, 1936, 1955, 1946, 1956, - /* 560 */ 1940, 1942, 1943, 1872, 1881, 1979, 1817, 1883, 1945, 1984, - /* 570 */ 1828, 1964, 1820, 1826, 1990, 1992, 1829, 1818, 1991, 1951, - /* 580 */ 1747, 1902, 1897, 1903, 1923, 1916, 1924, 1921, 1930, 1977, - /* 590 */ 1980, 1935, 1937, 1950, 1952, 1957, 1989, 1987, 2004, 1959, - /* 600 */ 1994, 1830, 1960, 1961, 2051, 2013, 1848, 2025, 2028, 2030, - /* 610 */ 2031, 2032, 2033, 1969, 1971, 2026, 1831, 2035, 2029, 2075, - /* 620 */ 2077, 2080, 2081, 1985, 2047, 1789, 2050, 1999, 2001, 2002, - /* 630 */ 2005, 2015, 1948, 2016, 2113, 2078, 1965, 2020, 2011, 1789, - /* 640 */ 2086, 2091, 2039, 1890, 2042, 2139, 2120, 1931, 2044, 2045, - /* 650 */ 2048, 2049, 2053, 2054, 2098, 2056, 2057, 2102, 2058, 2129, - /* 660 */ 1944, 2060, 2055, 2061, 2126, 2130, 2064, 2067, 2134, 2070, - /* 670 */ 2071, 2138, 2082, 2084, 2149, 2088, 2085, 2154, 2099, 2079, - /* 680 */ 2087, 2089, 2092, 2176, 2093, 2100, 2157, 2103, 2171, 2107, - /* 690 */ 2157, 2157, 2186, 2151, 2150, 2182, 2183, 2184, 2185, 2187, - /* 700 */ 2188, 2189, 2190, 2192, 2195, 2160, 2140, 2191, 2199, 2201, - /* 710 */ 2202, 2210, 2203, 2204, 2206, 2172, 1886, 2207, 1888, 2211, - /* 720 */ 2218, 2220, 2221, 2236, 2224, 2260, 2228, 2225, 2233, 2274, - /* 730 */ 2241, 2231, 2242, 2280, 2247, 2235, 2245, 2285, 2252, 2240, - /* 740 */ 2250, 2290, 2257, 2261, 2295, 2275, 2277, 2278, 2279, 2281, - /* 750 */ 2283, + /* 130 */ 1047, 1047, 890, 594, 315, 145, 162, 171, 171, 171, + /* 140 */ 1013, 783, 783, 162, 372, 372, 372, 226, 274, 508, + /* 150 */ 87, 485, 87, 485, 485, 488, 703, 244, 244, 244, + /* 160 */ 244, 244, 244, 244, 244, 1624, 334, 473, 260, 100, + /* 170 */ 183, 25, 179, 828, 833, 326, 1021, 1116, 352, 1036, + /* 180 */ 916, 894, 934, 916, 1139, 978, 999, 1120, 1326, 1192, + /* 190 */ 1339, 1371, 1339, 1230, 1386, 1386, 1339, 1230, 1230, 1318, + /* 200 */ 1322, 1386, 1329, 1386, 1386, 1386, 1411, 1411, 1415, 226, + /* 210 */ 1416, 226, 1427, 1431, 226, 1427, 226, 226, 226, 1386, + /* 220 */ 226, 1423, 1423, 1411, 87, 87, 87, 87, 87, 87, + /* 230 */ 87, 87, 87, 87, 87, 1386, 1411, 485, 485, 485, + /* 240 */ 1306, 1417, 1415, 281, 1331, 1416, 281, 1386, 1371, 1371, + /* 250 */ 485, 1279, 1285, 485, 1279, 1285, 485, 485, 87, 1292, + /* 260 */ 1368, 1279, 1301, 1303, 1325, 1120, 1308, 1309, 1314, 1330, + /* 270 */ 372, 1566, 1386, 1427, 281, 281, 1571, 1285, 485, 485, + /* 280 */ 485, 485, 485, 1285, 485, 1435, 281, 488, 281, 372, + /* 290 */ 1517, 1538, 485, 703, 1386, 281, 1609, 1411, 2669, 2669, + /* 300 */ 2669, 2669, 2669, 2669, 2669, 2669, 2669, 170, 1310, 534, + /* 310 */ 687, 561, 580, 904, 379, 139, 374, 926, 621, 699, + /* 320 */ 699, 699, 699, 699, 699, 699, 699, 699, 173, 597, + /* 330 */ 27, 27, 439, 451, 823, 294, 419, 969, 856, 387, + /* 340 */ 791, 791, 710, 1066, 909, 710, 710, 710, 31, 1089, + /* 350 */ 1172, 1157, 588, 1168, 1101, 1102, 1106, 1107, 1073, 1196, + /* 360 */ 1242, 1039, 1156, 1188, 1163, 1202, 1211, 1212, 1080, 1077, + /* 370 */ 1138, 1151, 1219, 1225, 1226, 1227, 1228, 1229, 1247, 1231, + /* 380 */ 1209, 1241, 1190, 1233, 1240, 1235, 1246, 1248, 1250, 1252, + /* 390 */ 1258, 101, 1245, 1328, 1290, 1321, 1661, 1664, 1665, 1625, + /* 400 */ 1668, 1634, 1465, 1638, 1639, 1641, 1478, 1685, 1651, 1653, + /* 410 */ 1492, 1699, 1494, 1701, 1667, 1703, 1683, 1707, 1673, 1519, + /* 420 */ 1531, 1535, 1724, 1725, 1728, 1547, 1550, 1733, 1734, 1689, + /* 430 */ 1738, 1739, 1741, 1704, 1745, 1755, 1756, 1757, 1767, 1768, + /* 440 */ 1769, 1771, 1604, 1726, 1760, 1607, 1763, 1764, 1765, 1772, + /* 450 */ 1779, 1781, 1782, 1783, 1784, 1787, 1788, 1790, 1791, 1792, + /* 460 */ 1795, 1796, 1758, 1797, 1802, 1803, 1804, 1805, 1806, 1785, + /* 470 */ 1808, 1809, 1811, 1674, 1812, 1815, 1798, 1723, 1799, 1727, + /* 480 */ 1822, 1766, 1793, 1825, 1774, 1827, 1777, 1829, 1836, 1807, + /* 490 */ 1813, 1801, 1800, 1839, 1810, 1840, 1814, 1846, 1820, 1816, + /* 500 */ 1850, 1863, 1864, 1826, 1690, 1868, 1877, 1879, 1817, 1880, + /* 510 */ 1881, 1848, 1837, 1845, 1886, 1853, 1841, 1854, 1902, 1869, + /* 520 */ 1855, 1867, 1909, 1875, 1866, 1872, 1912, 1915, 1917, 1918, + /* 530 */ 1818, 1819, 1884, 1900, 1920, 1890, 1893, 1894, 1895, 1896, + /* 540 */ 1888, 1889, 1899, 1903, 1913, 1904, 1937, 1927, 1942, 1929, + /* 550 */ 1905, 1953, 1932, 1933, 1967, 1934, 1971, 1938, 1975, 1954, + /* 560 */ 1957, 1943, 1944, 1945, 1882, 1885, 1981, 1824, 1897, 1949, + /* 570 */ 1986, 1828, 1966, 1830, 1823, 1990, 1994, 1834, 1821, 1992, + /* 580 */ 1956, 1750, 1916, 1919, 1921, 1923, 1926, 1935, 1939, 1936, + /* 590 */ 1970, 1989, 1950, 1952, 1958, 1959, 1960, 2006, 1991, 2007, + /* 600 */ 1962, 2013, 1833, 1964, 1965, 2033, 2016, 1844, 2028, 2032, + /* 610 */ 2035, 2037, 2038, 2040, 1976, 1977, 2021, 1838, 2036, 2029, + /* 620 */ 2079, 2081, 2099, 2101, 1983, 2063, 1800, 2056, 2005, 2014, + /* 630 */ 2015, 2017, 2019, 1969, 2020, 2113, 2082, 1955, 2034, 2023, + /* 640 */ 1800, 2088, 2093, 2043, 1908, 2045, 2142, 2123, 1941, 2046, + /* 650 */ 2047, 2049, 2050, 2055, 2057, 2103, 2059, 2060, 2109, 2061, + /* 660 */ 2135, 1947, 2064, 2054, 2065, 2133, 2134, 2070, 2071, 2138, + /* 670 */ 2084, 2085, 2147, 2089, 2087, 2150, 2098, 2100, 2164, 2102, + /* 680 */ 2077, 2080, 2091, 2092, 2183, 2094, 2107, 2166, 2108, 2177, + /* 690 */ 2116, 2166, 2166, 2195, 2153, 2155, 2185, 2187, 2188, 2189, + /* 700 */ 2190, 2192, 2196, 2198, 2199, 2200, 2159, 2139, 2193, 2201, + /* 710 */ 2203, 2204, 2219, 2207, 2208, 2211, 2182, 1888, 2220, 1889, + /* 720 */ 2221, 2223, 2224, 2225, 2241, 2237, 2273, 2239, 2228, 2240, + /* 730 */ 2280, 2247, 2233, 2244, 2284, 2250, 2242, 2248, 2288, 2254, + /* 740 */ 2249, 2253, 2295, 2261, 2263, 2299, 2278, 2281, 2279, 2282, + /* 750 */ 2286, 2283, }; #define YY_REDUCE_COUNT (306) -#define YY_REDUCE_MIN (-435) +#define YY_REDUCE_MIN (-436) #define YY_REDUCE_MAX (2246) static const short yy_reduce_ofst[] = { /* 0 */ -258, -328, 50, 248, 613, 758, 807, 866, 889, 467, @@ -845,110 +845,110 @@ static const short yy_reduce_ofst[] = { /* 20 */ 1358, 1422, 643, 1454, 1479, 1544, 1528, 1593, 1610, 1627, /* 30 */ 1676, 1692, 1710, 1759, 1775, 1832, 1849, 1898, 1914, 1963, /* 40 */ 1988, 2012, 2083, 2105, 2132, 2181, 2197, 2246, -316, -302, - /* 50 */ -53, 247, -256, -6, 358, 695, 504, 556, -337, 210, - /* 60 */ 525, -435, -345, -29, 300, 302, -356, -352, -260, -60, - /* 70 */ -334, -333, -203, -348, -271, -179, -1, 318, 354, 414, - /* 80 */ 454, 458, 461, 633, -3, 645, 671, 64, -299, 435, - /* 90 */ 684, 209, 699, 291, 672, 372, 787, 450, -355, 790, - /* 100 */ 826, 430, 828, 415, 526, 472, 856, 121, -257, -54, - /* 110 */ -54, -275, -237, -163, -90, 142, 143, 381, 465, 473, - /* 120 */ 549, 550, 574, 602, 604, 647, 660, 668, 710, 736, - /* 130 */ 743, 754, -280, 311, -153, 18, 548, 311, 338, 508, - /* 140 */ 118, 608, 640, 131, 308, 711, 712, -36, 726, 487, - /* 150 */ 760, 780, 759, 795, 816, 839, 738, -358, 259, 264, - /* 160 */ 343, 348, 512, 617, 348, 687, 657, 656, 734, 689, - /* 170 */ 705, 853, 806, 927, 927, 951, 907, 958, 956, 942, - /* 180 */ 895, 895, 879, 895, 934, 896, 927, 961, 968, 990, - /* 190 */ 1008, 1010, 1020, 1028, 1075, 1076, 1032, 1035, 1036, 1073, - /* 200 */ 1077, 1088, 1083, 1093, 1094, 1097, 1106, 1107, 1044, 1105, - /* 210 */ 1072, 1109, 1116, 1066, 1125, 1132, 1128, 1129, 1130, 1137, - /* 220 */ 1136, 1143, 1145, 1156, 1127, 1133, 1141, 1148, 1149, 1152, - /* 230 */ 1153, 1154, 1157, 1158, 1159, 1160, 1163, 1115, 1117, 1123, - /* 240 */ 1091, 1099, 1103, 1164, 1122, 1146, 1166, 1181, 1150, 1151, - /* 250 */ 1165, 1084, 1169, 1168, 1089, 1170, 1177, 1178, 927, 1087, - /* 260 */ 1113, 1120, 1108, 1138, 1126, 1167, 1102, 1112, 1144, 895, - /* 270 */ 1201, 1171, 1247, 1249, 1251, 1260, 1214, 1199, 1216, 1224, - /* 280 */ 1228, 1231, 1239, 1236, 1253, 1223, 1274, 1271, 1289, 1261, - /* 290 */ 1204, 1269, 1263, 1284, 1305, 1299, 1311, 1313, 1252, 1244, - /* 300 */ 1256, 1257, 1295, 1315, 1316, 1312, 1326, + /* 50 */ 157, 247, -256, 257, 375, 1031, 362, 391, -359, -345, + /* 60 */ -339, -436, -75, 402, -380, -178, -354, -195, 318, 332, + /* 70 */ -379, -145, 88, -282, -218, -44, 232, 116, 135, 337, + /* 80 */ 366, 388, 392, 454, -333, 542, 642, 91, -26, 645, + /* 90 */ 671, 241, 672, 236, 715, 377, 774, 427, 405, 781, + /* 100 */ 784, 535, 786, 446, 608, 572, 788, 8, -335, -19, + /* 110 */ -19, -251, -234, -163, -65, 72, 369, 461, 466, 514, + /* 120 */ 518, 547, 571, 574, 612, 706, 707, 714, 740, 754, + /* 130 */ 755, 757, 252, 23, -240, 300, 596, 23, 279, 436, + /* 140 */ 13, 182, 664, 625, 435, 768, 776, 256, 787, -417, + /* 150 */ 214, 780, -305, 795, 821, 792, 682, -364, 423, 507, + /* 160 */ 515, 533, 644, 659, 533, 727, 878, 918, 865, 793, + /* 170 */ 809, 950, 886, 981, 981, 976, 955, 1012, 979, 965, + /* 180 */ 911, 911, 900, 911, 921, 923, 981, 962, 968, 980, + /* 190 */ 1004, 1005, 1009, 1022, 1068, 1069, 1030, 1028, 1033, 1070, + /* 200 */ 1072, 1079, 1075, 1085, 1086, 1091, 1099, 1100, 1034, 1094, + /* 210 */ 1061, 1104, 1110, 1055, 1109, 1118, 1111, 1125, 1128, 1124, + /* 220 */ 1129, 1135, 1143, 1148, 1123, 1130, 1134, 1136, 1137, 1140, + /* 230 */ 1141, 1142, 1145, 1149, 1152, 1150, 1160, 1122, 1144, 1146, + /* 240 */ 1105, 1113, 1117, 1176, 1133, 1147, 1181, 1186, 1153, 1154, + /* 250 */ 1159, 1087, 1162, 1178, 1112, 1164, 1184, 1185, 981, 1114, + /* 260 */ 1119, 1115, 1121, 1127, 1126, 1169, 1103, 1166, 1165, 911, + /* 270 */ 1213, 1173, 1251, 1249, 1260, 1261, 1204, 1201, 1224, 1239, + /* 280 */ 1254, 1255, 1256, 1215, 1257, 1221, 1265, 1276, 1269, 1263, + /* 290 */ 1205, 1272, 1264, 1288, 1305, 1307, 1312, 1315, 1259, 1262, + /* 300 */ 1266, 1267, 1291, 1293, 1295, 1311, 1327, }; static const YYACTIONTYPE yy_default[] = { - /* 0 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 10 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 20 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 30 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 40 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 50 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 60 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 70 */ 1687, 1687, 1687, 1953, 1687, 1687, 1687, 1687, 1687, 1687, - /* 80 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1766, 1687, 1687, - /* 90 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 100 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1764, 1946, 2162, - /* 110 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 120 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 130 */ 1687, 1687, 1687, 2174, 1687, 1687, 1687, 2174, 2174, 2174, - /* 140 */ 1764, 2134, 2134, 1687, 1687, 1687, 1687, 1766, 2007, 1687, - /* 150 */ 1687, 1687, 1687, 1687, 1687, 1881, 1687, 1687, 1687, 1687, - /* 160 */ 1687, 1905, 1687, 1687, 1687, 1999, 1687, 1687, 2199, 2255, - /* 170 */ 1687, 1687, 2202, 1687, 1687, 1687, 1958, 1687, 1834, 2189, - /* 180 */ 2166, 2180, 2239, 2167, 2164, 2183, 1687, 2193, 1687, 1992, - /* 190 */ 1951, 1687, 1951, 1948, 1687, 1687, 1951, 1948, 1948, 1823, - /* 200 */ 1819, 1687, 1817, 1687, 1687, 1687, 1687, 1687, 1687, 1766, - /* 210 */ 1687, 1766, 1687, 1687, 1766, 1687, 1766, 1766, 1766, 1687, - /* 220 */ 1766, 1744, 1744, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 230 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 240 */ 2019, 2005, 1687, 1764, 2001, 1687, 1764, 1687, 1687, 1687, - /* 250 */ 1687, 2210, 2208, 1687, 2210, 2208, 1687, 1687, 1687, 2224, - /* 260 */ 2220, 2210, 2228, 2226, 2195, 2193, 2258, 2245, 2241, 2180, - /* 270 */ 1687, 1687, 1687, 1687, 1764, 1764, 1687, 2208, 1687, 1687, - /* 280 */ 1687, 1687, 1687, 2208, 1687, 1687, 1764, 1687, 1764, 1687, - /* 290 */ 1687, 1850, 1687, 1687, 1687, 1764, 1719, 1687, 1994, 2010, - /* 300 */ 1976, 1976, 1884, 1884, 1884, 1767, 1692, 1687, 1687, 1687, - /* 310 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2223, - /* 320 */ 2222, 2089, 1687, 2138, 2137, 2136, 2127, 2088, 1846, 1687, - /* 330 */ 2087, 2086, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 340 */ 1967, 1966, 2080, 1687, 1687, 2081, 2079, 2078, 1687, 1687, - /* 350 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 360 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2242, - /* 370 */ 2246, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2163, 1687, - /* 380 */ 1687, 1687, 1687, 1687, 2062, 1687, 1687, 1687, 1687, 1687, - /* 390 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 400 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 410 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 420 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 430 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 440 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 450 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 460 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 470 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 480 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 490 */ 1687, 1724, 2067, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 500 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 510 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 520 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 530 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1805, - /* 540 */ 1804, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 550 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 560 */ 1687, 1687, 1687, 2071, 1687, 1687, 1687, 1687, 1687, 1687, - /* 570 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2238, 2196, - /* 580 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 590 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2062, 1687, - /* 600 */ 2221, 1687, 1687, 2236, 1687, 2240, 1687, 1687, 1687, 1687, - /* 610 */ 1687, 1687, 1687, 2173, 2169, 1687, 1687, 2165, 1687, 1687, - /* 620 */ 1687, 1687, 1687, 1687, 1687, 2070, 1687, 1687, 1687, 1687, - /* 630 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2061, - /* 640 */ 1687, 2124, 1687, 1687, 1687, 2158, 1687, 1687, 2109, 1687, - /* 650 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 2071, 1687, - /* 660 */ 2074, 1687, 1687, 1687, 1687, 1687, 1878, 1687, 1687, 1687, - /* 670 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1863, - /* 680 */ 1861, 1860, 1859, 1687, 1856, 1687, 1891, 1687, 1687, 1687, - /* 690 */ 1887, 1886, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 700 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1785, 1687, 1687, - /* 710 */ 1687, 1687, 1687, 1687, 1687, 1687, 1777, 1687, 1776, 1687, - /* 720 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 730 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 740 */ 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, - /* 750 */ 1687, + /* 0 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 10 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 20 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 30 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 40 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 50 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 60 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 70 */ 1690, 1690, 1690, 1957, 1690, 1690, 1690, 1690, 1690, 1690, + /* 80 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1769, 1690, 1690, + /* 90 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 100 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1767, 1950, 2166, + /* 110 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 120 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 130 */ 1690, 1690, 1690, 2178, 1690, 1690, 1690, 2178, 2178, 2178, + /* 140 */ 1767, 2138, 2138, 1690, 1690, 1690, 1690, 1769, 2011, 1690, + /* 150 */ 1690, 1690, 1690, 1690, 1690, 1885, 1690, 1690, 1690, 1690, + /* 160 */ 1690, 1909, 1690, 1690, 1690, 2003, 1690, 1690, 2203, 2259, + /* 170 */ 1690, 1690, 2206, 1690, 1690, 1690, 1962, 1690, 1838, 2193, + /* 180 */ 2170, 2184, 2243, 2171, 2168, 2187, 1690, 2197, 1690, 1996, + /* 190 */ 1955, 1690, 1955, 1952, 1690, 1690, 1955, 1952, 1952, 1827, + /* 200 */ 1823, 1690, 1821, 1690, 1690, 1690, 1690, 1690, 1690, 1769, + /* 210 */ 1690, 1769, 1690, 1690, 1769, 1690, 1769, 1769, 1769, 1690, + /* 220 */ 1769, 1747, 1747, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 230 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 240 */ 2023, 2009, 1690, 1767, 2005, 1690, 1767, 1690, 1690, 1690, + /* 250 */ 1690, 2214, 2212, 1690, 2214, 2212, 1690, 1690, 1690, 2228, + /* 260 */ 2224, 2214, 2232, 2230, 2199, 2197, 2262, 2249, 2245, 2184, + /* 270 */ 1690, 1690, 1690, 1690, 1767, 1767, 1690, 2212, 1690, 1690, + /* 280 */ 1690, 1690, 1690, 2212, 1690, 1690, 1767, 1690, 1767, 1690, + /* 290 */ 1690, 1854, 1690, 1690, 1690, 1767, 1722, 1690, 1998, 2014, + /* 300 */ 1980, 1980, 1888, 1888, 1888, 1770, 1695, 1690, 1690, 1690, + /* 310 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2227, + /* 320 */ 2226, 2093, 1690, 2142, 2141, 2140, 2131, 2092, 1850, 1690, + /* 330 */ 2091, 2090, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 340 */ 1971, 1970, 2084, 1690, 1690, 2085, 2083, 2082, 1690, 1690, + /* 350 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 360 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2246, + /* 370 */ 2250, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2167, 1690, + /* 380 */ 1690, 1690, 1690, 1690, 2066, 1690, 1690, 1690, 1690, 1690, + /* 390 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 400 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 410 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 420 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 430 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 440 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 450 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 460 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 470 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 480 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 490 */ 1690, 1727, 2071, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 500 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 510 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 520 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 530 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 540 */ 1808, 1807, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 550 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 560 */ 1690, 1690, 1690, 1690, 2075, 1690, 1690, 1690, 1690, 1690, + /* 570 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2242, + /* 580 */ 2200, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 590 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2066, + /* 600 */ 1690, 2225, 1690, 1690, 2240, 1690, 2244, 1690, 1690, 1690, + /* 610 */ 1690, 1690, 1690, 1690, 2177, 2173, 1690, 1690, 2169, 1690, + /* 620 */ 1690, 1690, 1690, 1690, 1690, 1690, 2074, 1690, 1690, 1690, + /* 630 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 640 */ 2065, 1690, 2128, 1690, 1690, 1690, 2162, 1690, 1690, 2113, + /* 650 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 2075, + /* 660 */ 1690, 2078, 1690, 1690, 1690, 1690, 1690, 1882, 1690, 1690, + /* 670 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 680 */ 1867, 1865, 1864, 1863, 1690, 1860, 1690, 1895, 1690, 1690, + /* 690 */ 1690, 1891, 1890, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 700 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1788, 1690, + /* 710 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1780, 1690, 1779, + /* 720 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 730 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 740 */ 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + /* 750 */ 1690, 1690, }; /********** End of lemon-generated parsing tables *****************************/ @@ -1981,457 +1981,458 @@ static const char *const yyRuleName[] = { /* 117 */ "alter_db_option ::= REPLICA NK_INTEGER", /* 118 */ "alter_db_option ::= WAL_LEVEL NK_INTEGER", /* 119 */ "alter_db_option ::= STT_TRIGGER NK_INTEGER", - /* 120 */ "integer_list ::= NK_INTEGER", - /* 121 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", - /* 122 */ "variable_list ::= NK_VARIABLE", - /* 123 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", - /* 124 */ "retention_list ::= retention", - /* 125 */ "retention_list ::= retention_list NK_COMMA retention", - /* 126 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", - /* 127 */ "speed_opt ::=", - /* 128 */ "speed_opt ::= MAX_SPEED NK_INTEGER", - /* 129 */ "start_opt ::=", - /* 130 */ "start_opt ::= START WITH NK_INTEGER", - /* 131 */ "start_opt ::= START WITH NK_STRING", - /* 132 */ "start_opt ::= START WITH TIMESTAMP NK_STRING", - /* 133 */ "end_opt ::=", - /* 134 */ "end_opt ::= END WITH NK_INTEGER", - /* 135 */ "end_opt ::= END WITH NK_STRING", - /* 136 */ "end_opt ::= END WITH TIMESTAMP NK_STRING", - /* 137 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", - /* 138 */ "cmd ::= CREATE TABLE multi_create_clause", - /* 139 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", - /* 140 */ "cmd ::= DROP TABLE multi_drop_clause", - /* 141 */ "cmd ::= DROP STABLE exists_opt full_table_name", - /* 142 */ "cmd ::= ALTER TABLE alter_table_clause", - /* 143 */ "cmd ::= ALTER STABLE alter_table_clause", - /* 144 */ "alter_table_clause ::= full_table_name alter_table_options", - /* 145 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", - /* 146 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", - /* 147 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", - /* 148 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", - /* 149 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", - /* 150 */ "alter_table_clause ::= full_table_name DROP TAG column_name", - /* 151 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", - /* 152 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", - /* 153 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal", - /* 154 */ "multi_create_clause ::= create_subtable_clause", - /* 155 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", - /* 156 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options", - /* 157 */ "multi_drop_clause ::= drop_table_clause", - /* 158 */ "multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause", - /* 159 */ "drop_table_clause ::= exists_opt full_table_name", - /* 160 */ "specific_cols_opt ::=", - /* 161 */ "specific_cols_opt ::= NK_LP col_name_list NK_RP", - /* 162 */ "full_table_name ::= table_name", - /* 163 */ "full_table_name ::= db_name NK_DOT table_name", - /* 164 */ "column_def_list ::= column_def", - /* 165 */ "column_def_list ::= column_def_list NK_COMMA column_def", - /* 166 */ "column_def ::= column_name type_name", - /* 167 */ "column_def ::= column_name type_name COMMENT NK_STRING", - /* 168 */ "type_name ::= BOOL", - /* 169 */ "type_name ::= TINYINT", - /* 170 */ "type_name ::= SMALLINT", - /* 171 */ "type_name ::= INT", - /* 172 */ "type_name ::= INTEGER", - /* 173 */ "type_name ::= BIGINT", - /* 174 */ "type_name ::= FLOAT", - /* 175 */ "type_name ::= DOUBLE", - /* 176 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", - /* 177 */ "type_name ::= TIMESTAMP", - /* 178 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", - /* 179 */ "type_name ::= TINYINT UNSIGNED", - /* 180 */ "type_name ::= SMALLINT UNSIGNED", - /* 181 */ "type_name ::= INT UNSIGNED", - /* 182 */ "type_name ::= BIGINT UNSIGNED", - /* 183 */ "type_name ::= JSON", - /* 184 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", - /* 185 */ "type_name ::= MEDIUMBLOB", - /* 186 */ "type_name ::= BLOB", - /* 187 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", - /* 188 */ "type_name ::= DECIMAL", - /* 189 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", - /* 190 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", - /* 191 */ "tags_def_opt ::=", - /* 192 */ "tags_def_opt ::= tags_def", - /* 193 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", - /* 194 */ "table_options ::=", - /* 195 */ "table_options ::= table_options COMMENT NK_STRING", - /* 196 */ "table_options ::= table_options MAX_DELAY duration_list", - /* 197 */ "table_options ::= table_options WATERMARK duration_list", - /* 198 */ "table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP", - /* 199 */ "table_options ::= table_options TTL NK_INTEGER", - /* 200 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", - /* 201 */ "table_options ::= table_options DELETE_MARK duration_list", - /* 202 */ "alter_table_options ::= alter_table_option", - /* 203 */ "alter_table_options ::= alter_table_options alter_table_option", - /* 204 */ "alter_table_option ::= COMMENT NK_STRING", - /* 205 */ "alter_table_option ::= TTL NK_INTEGER", - /* 206 */ "duration_list ::= duration_literal", - /* 207 */ "duration_list ::= duration_list NK_COMMA duration_literal", - /* 208 */ "rollup_func_list ::= rollup_func_name", - /* 209 */ "rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name", - /* 210 */ "rollup_func_name ::= function_name", - /* 211 */ "rollup_func_name ::= FIRST", - /* 212 */ "rollup_func_name ::= LAST", - /* 213 */ "col_name_list ::= col_name", - /* 214 */ "col_name_list ::= col_name_list NK_COMMA col_name", - /* 215 */ "col_name ::= column_name", - /* 216 */ "cmd ::= SHOW DNODES", - /* 217 */ "cmd ::= SHOW USERS", - /* 218 */ "cmd ::= SHOW USER PRIVILEGES", - /* 219 */ "cmd ::= SHOW DATABASES", - /* 220 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", - /* 221 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", - /* 222 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", - /* 223 */ "cmd ::= SHOW MNODES", - /* 224 */ "cmd ::= SHOW QNODES", - /* 225 */ "cmd ::= SHOW FUNCTIONS", - /* 226 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", - /* 227 */ "cmd ::= SHOW STREAMS", - /* 228 */ "cmd ::= SHOW ACCOUNTS", - /* 229 */ "cmd ::= SHOW APPS", - /* 230 */ "cmd ::= SHOW CONNECTIONS", - /* 231 */ "cmd ::= SHOW LICENCES", - /* 232 */ "cmd ::= SHOW GRANTS", - /* 233 */ "cmd ::= SHOW CREATE DATABASE db_name", - /* 234 */ "cmd ::= SHOW CREATE TABLE full_table_name", - /* 235 */ "cmd ::= SHOW CREATE STABLE full_table_name", - /* 236 */ "cmd ::= SHOW QUERIES", - /* 237 */ "cmd ::= SHOW SCORES", - /* 238 */ "cmd ::= SHOW TOPICS", - /* 239 */ "cmd ::= SHOW VARIABLES", - /* 240 */ "cmd ::= SHOW CLUSTER VARIABLES", - /* 241 */ "cmd ::= SHOW LOCAL VARIABLES", - /* 242 */ "cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt", - /* 243 */ "cmd ::= SHOW BNODES", - /* 244 */ "cmd ::= SHOW SNODES", - /* 245 */ "cmd ::= SHOW CLUSTER", - /* 246 */ "cmd ::= SHOW TRANSACTIONS", - /* 247 */ "cmd ::= SHOW TABLE DISTRIBUTED full_table_name", - /* 248 */ "cmd ::= SHOW CONSUMERS", - /* 249 */ "cmd ::= SHOW SUBSCRIPTIONS", - /* 250 */ "cmd ::= SHOW TAGS FROM table_name_cond from_db_opt", - /* 251 */ "cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt", - /* 252 */ "cmd ::= SHOW VNODES NK_INTEGER", - /* 253 */ "cmd ::= SHOW VNODES NK_STRING", - /* 254 */ "cmd ::= SHOW db_name_cond_opt ALIVE", - /* 255 */ "cmd ::= SHOW CLUSTER ALIVE", - /* 256 */ "db_name_cond_opt ::=", - /* 257 */ "db_name_cond_opt ::= db_name NK_DOT", - /* 258 */ "like_pattern_opt ::=", - /* 259 */ "like_pattern_opt ::= LIKE NK_STRING", - /* 260 */ "table_name_cond ::= table_name", - /* 261 */ "from_db_opt ::=", - /* 262 */ "from_db_opt ::= FROM db_name", - /* 263 */ "tag_list_opt ::=", - /* 264 */ "tag_list_opt ::= tag_item", - /* 265 */ "tag_list_opt ::= tag_list_opt NK_COMMA tag_item", - /* 266 */ "tag_item ::= TBNAME", - /* 267 */ "tag_item ::= QTAGS", - /* 268 */ "tag_item ::= column_name", - /* 269 */ "tag_item ::= column_name column_alias", - /* 270 */ "tag_item ::= column_name AS column_alias", - /* 271 */ "cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options", - /* 272 */ "cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP", - /* 273 */ "cmd ::= DROP INDEX exists_opt full_index_name", - /* 274 */ "full_index_name ::= index_name", - /* 275 */ "full_index_name ::= db_name NK_DOT index_name", - /* 276 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt", - /* 277 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt", - /* 278 */ "func_list ::= func", - /* 279 */ "func_list ::= func_list NK_COMMA func", - /* 280 */ "func ::= sma_func_name NK_LP expression_list NK_RP", - /* 281 */ "sma_func_name ::= function_name", - /* 282 */ "sma_func_name ::= COUNT", - /* 283 */ "sma_func_name ::= FIRST", - /* 284 */ "sma_func_name ::= LAST", - /* 285 */ "sma_func_name ::= LAST_ROW", - /* 286 */ "sma_stream_opt ::=", - /* 287 */ "sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal", - /* 288 */ "sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal", - /* 289 */ "sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal", - /* 290 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery", - /* 291 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name", - /* 292 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name", - /* 293 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name", - /* 294 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name", - /* 295 */ "cmd ::= DROP TOPIC exists_opt topic_name", - /* 296 */ "cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name", - /* 297 */ "cmd ::= DESC full_table_name", - /* 298 */ "cmd ::= DESCRIBE full_table_name", - /* 299 */ "cmd ::= RESET QUERY CACHE", - /* 300 */ "cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery", - /* 301 */ "cmd ::= EXPLAIN analyze_opt explain_options insert_query", - /* 302 */ "analyze_opt ::=", - /* 303 */ "analyze_opt ::= ANALYZE", - /* 304 */ "explain_options ::=", - /* 305 */ "explain_options ::= explain_options VERBOSE NK_BOOL", - /* 306 */ "explain_options ::= explain_options RATIO NK_FLOAT", - /* 307 */ "cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", - /* 308 */ "cmd ::= DROP FUNCTION exists_opt function_name", - /* 309 */ "agg_func_opt ::=", - /* 310 */ "agg_func_opt ::= AGGREGATE", - /* 311 */ "bufsize_opt ::=", - /* 312 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", - /* 313 */ "cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery", - /* 314 */ "cmd ::= DROP STREAM exists_opt stream_name", - /* 315 */ "col_list_opt ::=", - /* 316 */ "col_list_opt ::= NK_LP col_name_list NK_RP", - /* 317 */ "tag_def_or_ref_opt ::=", - /* 318 */ "tag_def_or_ref_opt ::= tags_def", - /* 319 */ "tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP", - /* 320 */ "stream_options ::=", - /* 321 */ "stream_options ::= stream_options TRIGGER AT_ONCE", - /* 322 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", - /* 323 */ "stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal", - /* 324 */ "stream_options ::= stream_options WATERMARK duration_literal", - /* 325 */ "stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER", - /* 326 */ "stream_options ::= stream_options FILL_HISTORY NK_INTEGER", - /* 327 */ "stream_options ::= stream_options DELETE_MARK duration_literal", - /* 328 */ "stream_options ::= stream_options IGNORE UPDATE NK_INTEGER", - /* 329 */ "subtable_opt ::=", - /* 330 */ "subtable_opt ::= SUBTABLE NK_LP expression NK_RP", - /* 331 */ "cmd ::= KILL CONNECTION NK_INTEGER", - /* 332 */ "cmd ::= KILL QUERY NK_STRING", - /* 333 */ "cmd ::= KILL TRANSACTION NK_INTEGER", - /* 334 */ "cmd ::= BALANCE VGROUP", - /* 335 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", - /* 336 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", - /* 337 */ "cmd ::= SPLIT VGROUP NK_INTEGER", - /* 338 */ "dnode_list ::= DNODE NK_INTEGER", - /* 339 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", - /* 340 */ "cmd ::= DELETE FROM full_table_name where_clause_opt", - /* 341 */ "cmd ::= query_or_subquery", - /* 342 */ "cmd ::= insert_query", - /* 343 */ "insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery", - /* 344 */ "insert_query ::= INSERT INTO full_table_name query_or_subquery", - /* 345 */ "literal ::= NK_INTEGER", - /* 346 */ "literal ::= NK_FLOAT", - /* 347 */ "literal ::= NK_STRING", - /* 348 */ "literal ::= NK_BOOL", - /* 349 */ "literal ::= TIMESTAMP NK_STRING", - /* 350 */ "literal ::= duration_literal", - /* 351 */ "literal ::= NULL", - /* 352 */ "literal ::= NK_QUESTION", - /* 353 */ "duration_literal ::= NK_VARIABLE", - /* 354 */ "signed ::= NK_INTEGER", - /* 355 */ "signed ::= NK_PLUS NK_INTEGER", - /* 356 */ "signed ::= NK_MINUS NK_INTEGER", - /* 357 */ "signed ::= NK_FLOAT", - /* 358 */ "signed ::= NK_PLUS NK_FLOAT", - /* 359 */ "signed ::= NK_MINUS NK_FLOAT", - /* 360 */ "signed_literal ::= signed", - /* 361 */ "signed_literal ::= NK_STRING", - /* 362 */ "signed_literal ::= NK_BOOL", - /* 363 */ "signed_literal ::= TIMESTAMP NK_STRING", - /* 364 */ "signed_literal ::= duration_literal", - /* 365 */ "signed_literal ::= NULL", - /* 366 */ "signed_literal ::= literal_func", - /* 367 */ "signed_literal ::= NK_QUESTION", - /* 368 */ "literal_list ::= signed_literal", - /* 369 */ "literal_list ::= literal_list NK_COMMA signed_literal", - /* 370 */ "db_name ::= NK_ID", - /* 371 */ "table_name ::= NK_ID", - /* 372 */ "column_name ::= NK_ID", - /* 373 */ "function_name ::= NK_ID", - /* 374 */ "table_alias ::= NK_ID", - /* 375 */ "column_alias ::= NK_ID", - /* 376 */ "user_name ::= NK_ID", - /* 377 */ "topic_name ::= NK_ID", - /* 378 */ "stream_name ::= NK_ID", - /* 379 */ "cgroup_name ::= NK_ID", - /* 380 */ "index_name ::= NK_ID", - /* 381 */ "expr_or_subquery ::= expression", - /* 382 */ "expression ::= literal", - /* 383 */ "expression ::= pseudo_column", - /* 384 */ "expression ::= column_reference", - /* 385 */ "expression ::= function_expression", - /* 386 */ "expression ::= case_when_expression", - /* 387 */ "expression ::= NK_LP expression NK_RP", - /* 388 */ "expression ::= NK_PLUS expr_or_subquery", - /* 389 */ "expression ::= NK_MINUS expr_or_subquery", - /* 390 */ "expression ::= expr_or_subquery NK_PLUS expr_or_subquery", - /* 391 */ "expression ::= expr_or_subquery NK_MINUS expr_or_subquery", - /* 392 */ "expression ::= expr_or_subquery NK_STAR expr_or_subquery", - /* 393 */ "expression ::= expr_or_subquery NK_SLASH expr_or_subquery", - /* 394 */ "expression ::= expr_or_subquery NK_REM expr_or_subquery", - /* 395 */ "expression ::= column_reference NK_ARROW NK_STRING", - /* 396 */ "expression ::= expr_or_subquery NK_BITAND expr_or_subquery", - /* 397 */ "expression ::= expr_or_subquery NK_BITOR expr_or_subquery", - /* 398 */ "expression_list ::= expr_or_subquery", - /* 399 */ "expression_list ::= expression_list NK_COMMA expr_or_subquery", - /* 400 */ "column_reference ::= column_name", - /* 401 */ "column_reference ::= table_name NK_DOT column_name", - /* 402 */ "pseudo_column ::= ROWTS", - /* 403 */ "pseudo_column ::= TBNAME", - /* 404 */ "pseudo_column ::= table_name NK_DOT TBNAME", - /* 405 */ "pseudo_column ::= QSTART", - /* 406 */ "pseudo_column ::= QEND", - /* 407 */ "pseudo_column ::= QDURATION", - /* 408 */ "pseudo_column ::= WSTART", - /* 409 */ "pseudo_column ::= WEND", - /* 410 */ "pseudo_column ::= WDURATION", - /* 411 */ "pseudo_column ::= IROWTS", - /* 412 */ "pseudo_column ::= ISFILLED", - /* 413 */ "pseudo_column ::= QTAGS", - /* 414 */ "function_expression ::= function_name NK_LP expression_list NK_RP", - /* 415 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", - /* 416 */ "function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP", - /* 417 */ "function_expression ::= literal_func", - /* 418 */ "literal_func ::= noarg_func NK_LP NK_RP", - /* 419 */ "literal_func ::= NOW", - /* 420 */ "noarg_func ::= NOW", - /* 421 */ "noarg_func ::= TODAY", - /* 422 */ "noarg_func ::= TIMEZONE", - /* 423 */ "noarg_func ::= DATABASE", - /* 424 */ "noarg_func ::= CLIENT_VERSION", - /* 425 */ "noarg_func ::= SERVER_VERSION", - /* 426 */ "noarg_func ::= SERVER_STATUS", - /* 427 */ "noarg_func ::= CURRENT_USER", - /* 428 */ "noarg_func ::= USER", - /* 429 */ "star_func ::= COUNT", - /* 430 */ "star_func ::= FIRST", - /* 431 */ "star_func ::= LAST", - /* 432 */ "star_func ::= LAST_ROW", - /* 433 */ "star_func_para_list ::= NK_STAR", - /* 434 */ "star_func_para_list ::= other_para_list", - /* 435 */ "other_para_list ::= star_func_para", - /* 436 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", - /* 437 */ "star_func_para ::= expr_or_subquery", - /* 438 */ "star_func_para ::= table_name NK_DOT NK_STAR", - /* 439 */ "case_when_expression ::= CASE when_then_list case_when_else_opt END", - /* 440 */ "case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END", - /* 441 */ "when_then_list ::= when_then_expr", - /* 442 */ "when_then_list ::= when_then_list when_then_expr", - /* 443 */ "when_then_expr ::= WHEN common_expression THEN common_expression", - /* 444 */ "case_when_else_opt ::=", - /* 445 */ "case_when_else_opt ::= ELSE common_expression", - /* 446 */ "predicate ::= expr_or_subquery compare_op expr_or_subquery", - /* 447 */ "predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery", - /* 448 */ "predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery", - /* 449 */ "predicate ::= expr_or_subquery IS NULL", - /* 450 */ "predicate ::= expr_or_subquery IS NOT NULL", - /* 451 */ "predicate ::= expr_or_subquery in_op in_predicate_value", - /* 452 */ "compare_op ::= NK_LT", - /* 453 */ "compare_op ::= NK_GT", - /* 454 */ "compare_op ::= NK_LE", - /* 455 */ "compare_op ::= NK_GE", - /* 456 */ "compare_op ::= NK_NE", - /* 457 */ "compare_op ::= NK_EQ", - /* 458 */ "compare_op ::= LIKE", - /* 459 */ "compare_op ::= NOT LIKE", - /* 460 */ "compare_op ::= MATCH", - /* 461 */ "compare_op ::= NMATCH", - /* 462 */ "compare_op ::= CONTAINS", - /* 463 */ "in_op ::= IN", - /* 464 */ "in_op ::= NOT IN", - /* 465 */ "in_predicate_value ::= NK_LP literal_list NK_RP", - /* 466 */ "boolean_value_expression ::= boolean_primary", - /* 467 */ "boolean_value_expression ::= NOT boolean_primary", - /* 468 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", - /* 469 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", - /* 470 */ "boolean_primary ::= predicate", - /* 471 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", - /* 472 */ "common_expression ::= expr_or_subquery", - /* 473 */ "common_expression ::= boolean_value_expression", - /* 474 */ "from_clause_opt ::=", - /* 475 */ "from_clause_opt ::= FROM table_reference_list", - /* 476 */ "table_reference_list ::= table_reference", - /* 477 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", - /* 478 */ "table_reference ::= table_primary", - /* 479 */ "table_reference ::= joined_table", - /* 480 */ "table_primary ::= table_name alias_opt", - /* 481 */ "table_primary ::= db_name NK_DOT table_name alias_opt", - /* 482 */ "table_primary ::= subquery alias_opt", - /* 483 */ "table_primary ::= parenthesized_joined_table", - /* 484 */ "alias_opt ::=", - /* 485 */ "alias_opt ::= table_alias", - /* 486 */ "alias_opt ::= AS table_alias", - /* 487 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", - /* 488 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", - /* 489 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", - /* 490 */ "join_type ::=", - /* 491 */ "join_type ::= INNER", - /* 492 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt", - /* 493 */ "set_quantifier_opt ::=", - /* 494 */ "set_quantifier_opt ::= DISTINCT", - /* 495 */ "set_quantifier_opt ::= ALL", - /* 496 */ "select_list ::= select_item", - /* 497 */ "select_list ::= select_list NK_COMMA select_item", - /* 498 */ "select_item ::= NK_STAR", - /* 499 */ "select_item ::= common_expression", - /* 500 */ "select_item ::= common_expression column_alias", - /* 501 */ "select_item ::= common_expression AS column_alias", - /* 502 */ "select_item ::= table_name NK_DOT NK_STAR", - /* 503 */ "where_clause_opt ::=", - /* 504 */ "where_clause_opt ::= WHERE search_condition", - /* 505 */ "partition_by_clause_opt ::=", - /* 506 */ "partition_by_clause_opt ::= PARTITION BY partition_list", - /* 507 */ "partition_list ::= partition_item", - /* 508 */ "partition_list ::= partition_list NK_COMMA partition_item", - /* 509 */ "partition_item ::= expr_or_subquery", - /* 510 */ "partition_item ::= expr_or_subquery column_alias", - /* 511 */ "partition_item ::= expr_or_subquery AS column_alias", - /* 512 */ "twindow_clause_opt ::=", - /* 513 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", - /* 514 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP", - /* 515 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", - /* 516 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", - /* 517 */ "twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition", - /* 518 */ "sliding_opt ::=", - /* 519 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", - /* 520 */ "fill_opt ::=", - /* 521 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", - /* 522 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", - /* 523 */ "fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP", - /* 524 */ "fill_mode ::= NONE", - /* 525 */ "fill_mode ::= PREV", - /* 526 */ "fill_mode ::= NULL", - /* 527 */ "fill_mode ::= NULL_F", - /* 528 */ "fill_mode ::= LINEAR", - /* 529 */ "fill_mode ::= NEXT", - /* 530 */ "group_by_clause_opt ::=", - /* 531 */ "group_by_clause_opt ::= GROUP BY group_by_list", - /* 532 */ "group_by_list ::= expr_or_subquery", - /* 533 */ "group_by_list ::= group_by_list NK_COMMA expr_or_subquery", - /* 534 */ "having_clause_opt ::=", - /* 535 */ "having_clause_opt ::= HAVING search_condition", - /* 536 */ "range_opt ::=", - /* 537 */ "range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP", - /* 538 */ "every_opt ::=", - /* 539 */ "every_opt ::= EVERY NK_LP duration_literal NK_RP", - /* 540 */ "query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt", - /* 541 */ "query_simple ::= query_specification", - /* 542 */ "query_simple ::= union_query_expression", - /* 543 */ "union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery", - /* 544 */ "union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery", - /* 545 */ "query_simple_or_subquery ::= query_simple", - /* 546 */ "query_simple_or_subquery ::= subquery", - /* 547 */ "query_or_subquery ::= query_expression", - /* 548 */ "query_or_subquery ::= subquery", - /* 549 */ "order_by_clause_opt ::=", - /* 550 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", - /* 551 */ "slimit_clause_opt ::=", - /* 552 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", - /* 553 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", - /* 554 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", - /* 555 */ "limit_clause_opt ::=", - /* 556 */ "limit_clause_opt ::= LIMIT NK_INTEGER", - /* 557 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", - /* 558 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", - /* 559 */ "subquery ::= NK_LP query_expression NK_RP", - /* 560 */ "subquery ::= NK_LP subquery NK_RP", - /* 561 */ "search_condition ::= common_expression", - /* 562 */ "sort_specification_list ::= sort_specification", - /* 563 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", - /* 564 */ "sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt", - /* 565 */ "ordering_specification_opt ::=", - /* 566 */ "ordering_specification_opt ::= ASC", - /* 567 */ "ordering_specification_opt ::= DESC", - /* 568 */ "null_ordering_opt ::=", - /* 569 */ "null_ordering_opt ::= NULLS FIRST", - /* 570 */ "null_ordering_opt ::= NULLS LAST", + /* 120 */ "alter_db_option ::= MINROWS NK_INTEGER", + /* 121 */ "integer_list ::= NK_INTEGER", + /* 122 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", + /* 123 */ "variable_list ::= NK_VARIABLE", + /* 124 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", + /* 125 */ "retention_list ::= retention", + /* 126 */ "retention_list ::= retention_list NK_COMMA retention", + /* 127 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", + /* 128 */ "speed_opt ::=", + /* 129 */ "speed_opt ::= MAX_SPEED NK_INTEGER", + /* 130 */ "start_opt ::=", + /* 131 */ "start_opt ::= START WITH NK_INTEGER", + /* 132 */ "start_opt ::= START WITH NK_STRING", + /* 133 */ "start_opt ::= START WITH TIMESTAMP NK_STRING", + /* 134 */ "end_opt ::=", + /* 135 */ "end_opt ::= END WITH NK_INTEGER", + /* 136 */ "end_opt ::= END WITH NK_STRING", + /* 137 */ "end_opt ::= END WITH TIMESTAMP NK_STRING", + /* 138 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", + /* 139 */ "cmd ::= CREATE TABLE multi_create_clause", + /* 140 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", + /* 141 */ "cmd ::= DROP TABLE multi_drop_clause", + /* 142 */ "cmd ::= DROP STABLE exists_opt full_table_name", + /* 143 */ "cmd ::= ALTER TABLE alter_table_clause", + /* 144 */ "cmd ::= ALTER STABLE alter_table_clause", + /* 145 */ "alter_table_clause ::= full_table_name alter_table_options", + /* 146 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", + /* 147 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", + /* 148 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", + /* 149 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", + /* 150 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", + /* 151 */ "alter_table_clause ::= full_table_name DROP TAG column_name", + /* 152 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", + /* 153 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", + /* 154 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal", + /* 155 */ "multi_create_clause ::= create_subtable_clause", + /* 156 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", + /* 157 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options", + /* 158 */ "multi_drop_clause ::= drop_table_clause", + /* 159 */ "multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause", + /* 160 */ "drop_table_clause ::= exists_opt full_table_name", + /* 161 */ "specific_cols_opt ::=", + /* 162 */ "specific_cols_opt ::= NK_LP col_name_list NK_RP", + /* 163 */ "full_table_name ::= table_name", + /* 164 */ "full_table_name ::= db_name NK_DOT table_name", + /* 165 */ "column_def_list ::= column_def", + /* 166 */ "column_def_list ::= column_def_list NK_COMMA column_def", + /* 167 */ "column_def ::= column_name type_name", + /* 168 */ "column_def ::= column_name type_name COMMENT NK_STRING", + /* 169 */ "type_name ::= BOOL", + /* 170 */ "type_name ::= TINYINT", + /* 171 */ "type_name ::= SMALLINT", + /* 172 */ "type_name ::= INT", + /* 173 */ "type_name ::= INTEGER", + /* 174 */ "type_name ::= BIGINT", + /* 175 */ "type_name ::= FLOAT", + /* 176 */ "type_name ::= DOUBLE", + /* 177 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", + /* 178 */ "type_name ::= TIMESTAMP", + /* 179 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", + /* 180 */ "type_name ::= TINYINT UNSIGNED", + /* 181 */ "type_name ::= SMALLINT UNSIGNED", + /* 182 */ "type_name ::= INT UNSIGNED", + /* 183 */ "type_name ::= BIGINT UNSIGNED", + /* 184 */ "type_name ::= JSON", + /* 185 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", + /* 186 */ "type_name ::= MEDIUMBLOB", + /* 187 */ "type_name ::= BLOB", + /* 188 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", + /* 189 */ "type_name ::= DECIMAL", + /* 190 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", + /* 191 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", + /* 192 */ "tags_def_opt ::=", + /* 193 */ "tags_def_opt ::= tags_def", + /* 194 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", + /* 195 */ "table_options ::=", + /* 196 */ "table_options ::= table_options COMMENT NK_STRING", + /* 197 */ "table_options ::= table_options MAX_DELAY duration_list", + /* 198 */ "table_options ::= table_options WATERMARK duration_list", + /* 199 */ "table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP", + /* 200 */ "table_options ::= table_options TTL NK_INTEGER", + /* 201 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", + /* 202 */ "table_options ::= table_options DELETE_MARK duration_list", + /* 203 */ "alter_table_options ::= alter_table_option", + /* 204 */ "alter_table_options ::= alter_table_options alter_table_option", + /* 205 */ "alter_table_option ::= COMMENT NK_STRING", + /* 206 */ "alter_table_option ::= TTL NK_INTEGER", + /* 207 */ "duration_list ::= duration_literal", + /* 208 */ "duration_list ::= duration_list NK_COMMA duration_literal", + /* 209 */ "rollup_func_list ::= rollup_func_name", + /* 210 */ "rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name", + /* 211 */ "rollup_func_name ::= function_name", + /* 212 */ "rollup_func_name ::= FIRST", + /* 213 */ "rollup_func_name ::= LAST", + /* 214 */ "col_name_list ::= col_name", + /* 215 */ "col_name_list ::= col_name_list NK_COMMA col_name", + /* 216 */ "col_name ::= column_name", + /* 217 */ "cmd ::= SHOW DNODES", + /* 218 */ "cmd ::= SHOW USERS", + /* 219 */ "cmd ::= SHOW USER PRIVILEGES", + /* 220 */ "cmd ::= SHOW DATABASES", + /* 221 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", + /* 222 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", + /* 223 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", + /* 224 */ "cmd ::= SHOW MNODES", + /* 225 */ "cmd ::= SHOW QNODES", + /* 226 */ "cmd ::= SHOW FUNCTIONS", + /* 227 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", + /* 228 */ "cmd ::= SHOW STREAMS", + /* 229 */ "cmd ::= SHOW ACCOUNTS", + /* 230 */ "cmd ::= SHOW APPS", + /* 231 */ "cmd ::= SHOW CONNECTIONS", + /* 232 */ "cmd ::= SHOW LICENCES", + /* 233 */ "cmd ::= SHOW GRANTS", + /* 234 */ "cmd ::= SHOW CREATE DATABASE db_name", + /* 235 */ "cmd ::= SHOW CREATE TABLE full_table_name", + /* 236 */ "cmd ::= SHOW CREATE STABLE full_table_name", + /* 237 */ "cmd ::= SHOW QUERIES", + /* 238 */ "cmd ::= SHOW SCORES", + /* 239 */ "cmd ::= SHOW TOPICS", + /* 240 */ "cmd ::= SHOW VARIABLES", + /* 241 */ "cmd ::= SHOW CLUSTER VARIABLES", + /* 242 */ "cmd ::= SHOW LOCAL VARIABLES", + /* 243 */ "cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt", + /* 244 */ "cmd ::= SHOW BNODES", + /* 245 */ "cmd ::= SHOW SNODES", + /* 246 */ "cmd ::= SHOW CLUSTER", + /* 247 */ "cmd ::= SHOW TRANSACTIONS", + /* 248 */ "cmd ::= SHOW TABLE DISTRIBUTED full_table_name", + /* 249 */ "cmd ::= SHOW CONSUMERS", + /* 250 */ "cmd ::= SHOW SUBSCRIPTIONS", + /* 251 */ "cmd ::= SHOW TAGS FROM table_name_cond from_db_opt", + /* 252 */ "cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt", + /* 253 */ "cmd ::= SHOW VNODES NK_INTEGER", + /* 254 */ "cmd ::= SHOW VNODES NK_STRING", + /* 255 */ "cmd ::= SHOW db_name_cond_opt ALIVE", + /* 256 */ "cmd ::= SHOW CLUSTER ALIVE", + /* 257 */ "db_name_cond_opt ::=", + /* 258 */ "db_name_cond_opt ::= db_name NK_DOT", + /* 259 */ "like_pattern_opt ::=", + /* 260 */ "like_pattern_opt ::= LIKE NK_STRING", + /* 261 */ "table_name_cond ::= table_name", + /* 262 */ "from_db_opt ::=", + /* 263 */ "from_db_opt ::= FROM db_name", + /* 264 */ "tag_list_opt ::=", + /* 265 */ "tag_list_opt ::= tag_item", + /* 266 */ "tag_list_opt ::= tag_list_opt NK_COMMA tag_item", + /* 267 */ "tag_item ::= TBNAME", + /* 268 */ "tag_item ::= QTAGS", + /* 269 */ "tag_item ::= column_name", + /* 270 */ "tag_item ::= column_name column_alias", + /* 271 */ "tag_item ::= column_name AS column_alias", + /* 272 */ "cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options", + /* 273 */ "cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP", + /* 274 */ "cmd ::= DROP INDEX exists_opt full_index_name", + /* 275 */ "full_index_name ::= index_name", + /* 276 */ "full_index_name ::= db_name NK_DOT index_name", + /* 277 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt", + /* 278 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt", + /* 279 */ "func_list ::= func", + /* 280 */ "func_list ::= func_list NK_COMMA func", + /* 281 */ "func ::= sma_func_name NK_LP expression_list NK_RP", + /* 282 */ "sma_func_name ::= function_name", + /* 283 */ "sma_func_name ::= COUNT", + /* 284 */ "sma_func_name ::= FIRST", + /* 285 */ "sma_func_name ::= LAST", + /* 286 */ "sma_func_name ::= LAST_ROW", + /* 287 */ "sma_stream_opt ::=", + /* 288 */ "sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal", + /* 289 */ "sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal", + /* 290 */ "sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal", + /* 291 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery", + /* 292 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name", + /* 293 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name", + /* 294 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name", + /* 295 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name", + /* 296 */ "cmd ::= DROP TOPIC exists_opt topic_name", + /* 297 */ "cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name", + /* 298 */ "cmd ::= DESC full_table_name", + /* 299 */ "cmd ::= DESCRIBE full_table_name", + /* 300 */ "cmd ::= RESET QUERY CACHE", + /* 301 */ "cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery", + /* 302 */ "cmd ::= EXPLAIN analyze_opt explain_options insert_query", + /* 303 */ "analyze_opt ::=", + /* 304 */ "analyze_opt ::= ANALYZE", + /* 305 */ "explain_options ::=", + /* 306 */ "explain_options ::= explain_options VERBOSE NK_BOOL", + /* 307 */ "explain_options ::= explain_options RATIO NK_FLOAT", + /* 308 */ "cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", + /* 309 */ "cmd ::= DROP FUNCTION exists_opt function_name", + /* 310 */ "agg_func_opt ::=", + /* 311 */ "agg_func_opt ::= AGGREGATE", + /* 312 */ "bufsize_opt ::=", + /* 313 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", + /* 314 */ "cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery", + /* 315 */ "cmd ::= DROP STREAM exists_opt stream_name", + /* 316 */ "col_list_opt ::=", + /* 317 */ "col_list_opt ::= NK_LP col_name_list NK_RP", + /* 318 */ "tag_def_or_ref_opt ::=", + /* 319 */ "tag_def_or_ref_opt ::= tags_def", + /* 320 */ "tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP", + /* 321 */ "stream_options ::=", + /* 322 */ "stream_options ::= stream_options TRIGGER AT_ONCE", + /* 323 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", + /* 324 */ "stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal", + /* 325 */ "stream_options ::= stream_options WATERMARK duration_literal", + /* 326 */ "stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER", + /* 327 */ "stream_options ::= stream_options FILL_HISTORY NK_INTEGER", + /* 328 */ "stream_options ::= stream_options DELETE_MARK duration_literal", + /* 329 */ "stream_options ::= stream_options IGNORE UPDATE NK_INTEGER", + /* 330 */ "subtable_opt ::=", + /* 331 */ "subtable_opt ::= SUBTABLE NK_LP expression NK_RP", + /* 332 */ "cmd ::= KILL CONNECTION NK_INTEGER", + /* 333 */ "cmd ::= KILL QUERY NK_STRING", + /* 334 */ "cmd ::= KILL TRANSACTION NK_INTEGER", + /* 335 */ "cmd ::= BALANCE VGROUP", + /* 336 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", + /* 337 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", + /* 338 */ "cmd ::= SPLIT VGROUP NK_INTEGER", + /* 339 */ "dnode_list ::= DNODE NK_INTEGER", + /* 340 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", + /* 341 */ "cmd ::= DELETE FROM full_table_name where_clause_opt", + /* 342 */ "cmd ::= query_or_subquery", + /* 343 */ "cmd ::= insert_query", + /* 344 */ "insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery", + /* 345 */ "insert_query ::= INSERT INTO full_table_name query_or_subquery", + /* 346 */ "literal ::= NK_INTEGER", + /* 347 */ "literal ::= NK_FLOAT", + /* 348 */ "literal ::= NK_STRING", + /* 349 */ "literal ::= NK_BOOL", + /* 350 */ "literal ::= TIMESTAMP NK_STRING", + /* 351 */ "literal ::= duration_literal", + /* 352 */ "literal ::= NULL", + /* 353 */ "literal ::= NK_QUESTION", + /* 354 */ "duration_literal ::= NK_VARIABLE", + /* 355 */ "signed ::= NK_INTEGER", + /* 356 */ "signed ::= NK_PLUS NK_INTEGER", + /* 357 */ "signed ::= NK_MINUS NK_INTEGER", + /* 358 */ "signed ::= NK_FLOAT", + /* 359 */ "signed ::= NK_PLUS NK_FLOAT", + /* 360 */ "signed ::= NK_MINUS NK_FLOAT", + /* 361 */ "signed_literal ::= signed", + /* 362 */ "signed_literal ::= NK_STRING", + /* 363 */ "signed_literal ::= NK_BOOL", + /* 364 */ "signed_literal ::= TIMESTAMP NK_STRING", + /* 365 */ "signed_literal ::= duration_literal", + /* 366 */ "signed_literal ::= NULL", + /* 367 */ "signed_literal ::= literal_func", + /* 368 */ "signed_literal ::= NK_QUESTION", + /* 369 */ "literal_list ::= signed_literal", + /* 370 */ "literal_list ::= literal_list NK_COMMA signed_literal", + /* 371 */ "db_name ::= NK_ID", + /* 372 */ "table_name ::= NK_ID", + /* 373 */ "column_name ::= NK_ID", + /* 374 */ "function_name ::= NK_ID", + /* 375 */ "table_alias ::= NK_ID", + /* 376 */ "column_alias ::= NK_ID", + /* 377 */ "user_name ::= NK_ID", + /* 378 */ "topic_name ::= NK_ID", + /* 379 */ "stream_name ::= NK_ID", + /* 380 */ "cgroup_name ::= NK_ID", + /* 381 */ "index_name ::= NK_ID", + /* 382 */ "expr_or_subquery ::= expression", + /* 383 */ "expression ::= literal", + /* 384 */ "expression ::= pseudo_column", + /* 385 */ "expression ::= column_reference", + /* 386 */ "expression ::= function_expression", + /* 387 */ "expression ::= case_when_expression", + /* 388 */ "expression ::= NK_LP expression NK_RP", + /* 389 */ "expression ::= NK_PLUS expr_or_subquery", + /* 390 */ "expression ::= NK_MINUS expr_or_subquery", + /* 391 */ "expression ::= expr_or_subquery NK_PLUS expr_or_subquery", + /* 392 */ "expression ::= expr_or_subquery NK_MINUS expr_or_subquery", + /* 393 */ "expression ::= expr_or_subquery NK_STAR expr_or_subquery", + /* 394 */ "expression ::= expr_or_subquery NK_SLASH expr_or_subquery", + /* 395 */ "expression ::= expr_or_subquery NK_REM expr_or_subquery", + /* 396 */ "expression ::= column_reference NK_ARROW NK_STRING", + /* 397 */ "expression ::= expr_or_subquery NK_BITAND expr_or_subquery", + /* 398 */ "expression ::= expr_or_subquery NK_BITOR expr_or_subquery", + /* 399 */ "expression_list ::= expr_or_subquery", + /* 400 */ "expression_list ::= expression_list NK_COMMA expr_or_subquery", + /* 401 */ "column_reference ::= column_name", + /* 402 */ "column_reference ::= table_name NK_DOT column_name", + /* 403 */ "pseudo_column ::= ROWTS", + /* 404 */ "pseudo_column ::= TBNAME", + /* 405 */ "pseudo_column ::= table_name NK_DOT TBNAME", + /* 406 */ "pseudo_column ::= QSTART", + /* 407 */ "pseudo_column ::= QEND", + /* 408 */ "pseudo_column ::= QDURATION", + /* 409 */ "pseudo_column ::= WSTART", + /* 410 */ "pseudo_column ::= WEND", + /* 411 */ "pseudo_column ::= WDURATION", + /* 412 */ "pseudo_column ::= IROWTS", + /* 413 */ "pseudo_column ::= ISFILLED", + /* 414 */ "pseudo_column ::= QTAGS", + /* 415 */ "function_expression ::= function_name NK_LP expression_list NK_RP", + /* 416 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", + /* 417 */ "function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP", + /* 418 */ "function_expression ::= literal_func", + /* 419 */ "literal_func ::= noarg_func NK_LP NK_RP", + /* 420 */ "literal_func ::= NOW", + /* 421 */ "noarg_func ::= NOW", + /* 422 */ "noarg_func ::= TODAY", + /* 423 */ "noarg_func ::= TIMEZONE", + /* 424 */ "noarg_func ::= DATABASE", + /* 425 */ "noarg_func ::= CLIENT_VERSION", + /* 426 */ "noarg_func ::= SERVER_VERSION", + /* 427 */ "noarg_func ::= SERVER_STATUS", + /* 428 */ "noarg_func ::= CURRENT_USER", + /* 429 */ "noarg_func ::= USER", + /* 430 */ "star_func ::= COUNT", + /* 431 */ "star_func ::= FIRST", + /* 432 */ "star_func ::= LAST", + /* 433 */ "star_func ::= LAST_ROW", + /* 434 */ "star_func_para_list ::= NK_STAR", + /* 435 */ "star_func_para_list ::= other_para_list", + /* 436 */ "other_para_list ::= star_func_para", + /* 437 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", + /* 438 */ "star_func_para ::= expr_or_subquery", + /* 439 */ "star_func_para ::= table_name NK_DOT NK_STAR", + /* 440 */ "case_when_expression ::= CASE when_then_list case_when_else_opt END", + /* 441 */ "case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END", + /* 442 */ "when_then_list ::= when_then_expr", + /* 443 */ "when_then_list ::= when_then_list when_then_expr", + /* 444 */ "when_then_expr ::= WHEN common_expression THEN common_expression", + /* 445 */ "case_when_else_opt ::=", + /* 446 */ "case_when_else_opt ::= ELSE common_expression", + /* 447 */ "predicate ::= expr_or_subquery compare_op expr_or_subquery", + /* 448 */ "predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery", + /* 449 */ "predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery", + /* 450 */ "predicate ::= expr_or_subquery IS NULL", + /* 451 */ "predicate ::= expr_or_subquery IS NOT NULL", + /* 452 */ "predicate ::= expr_or_subquery in_op in_predicate_value", + /* 453 */ "compare_op ::= NK_LT", + /* 454 */ "compare_op ::= NK_GT", + /* 455 */ "compare_op ::= NK_LE", + /* 456 */ "compare_op ::= NK_GE", + /* 457 */ "compare_op ::= NK_NE", + /* 458 */ "compare_op ::= NK_EQ", + /* 459 */ "compare_op ::= LIKE", + /* 460 */ "compare_op ::= NOT LIKE", + /* 461 */ "compare_op ::= MATCH", + /* 462 */ "compare_op ::= NMATCH", + /* 463 */ "compare_op ::= CONTAINS", + /* 464 */ "in_op ::= IN", + /* 465 */ "in_op ::= NOT IN", + /* 466 */ "in_predicate_value ::= NK_LP literal_list NK_RP", + /* 467 */ "boolean_value_expression ::= boolean_primary", + /* 468 */ "boolean_value_expression ::= NOT boolean_primary", + /* 469 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", + /* 470 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", + /* 471 */ "boolean_primary ::= predicate", + /* 472 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", + /* 473 */ "common_expression ::= expr_or_subquery", + /* 474 */ "common_expression ::= boolean_value_expression", + /* 475 */ "from_clause_opt ::=", + /* 476 */ "from_clause_opt ::= FROM table_reference_list", + /* 477 */ "table_reference_list ::= table_reference", + /* 478 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", + /* 479 */ "table_reference ::= table_primary", + /* 480 */ "table_reference ::= joined_table", + /* 481 */ "table_primary ::= table_name alias_opt", + /* 482 */ "table_primary ::= db_name NK_DOT table_name alias_opt", + /* 483 */ "table_primary ::= subquery alias_opt", + /* 484 */ "table_primary ::= parenthesized_joined_table", + /* 485 */ "alias_opt ::=", + /* 486 */ "alias_opt ::= table_alias", + /* 487 */ "alias_opt ::= AS table_alias", + /* 488 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", + /* 489 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", + /* 490 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", + /* 491 */ "join_type ::=", + /* 492 */ "join_type ::= INNER", + /* 493 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt", + /* 494 */ "set_quantifier_opt ::=", + /* 495 */ "set_quantifier_opt ::= DISTINCT", + /* 496 */ "set_quantifier_opt ::= ALL", + /* 497 */ "select_list ::= select_item", + /* 498 */ "select_list ::= select_list NK_COMMA select_item", + /* 499 */ "select_item ::= NK_STAR", + /* 500 */ "select_item ::= common_expression", + /* 501 */ "select_item ::= common_expression column_alias", + /* 502 */ "select_item ::= common_expression AS column_alias", + /* 503 */ "select_item ::= table_name NK_DOT NK_STAR", + /* 504 */ "where_clause_opt ::=", + /* 505 */ "where_clause_opt ::= WHERE search_condition", + /* 506 */ "partition_by_clause_opt ::=", + /* 507 */ "partition_by_clause_opt ::= PARTITION BY partition_list", + /* 508 */ "partition_list ::= partition_item", + /* 509 */ "partition_list ::= partition_list NK_COMMA partition_item", + /* 510 */ "partition_item ::= expr_or_subquery", + /* 511 */ "partition_item ::= expr_or_subquery column_alias", + /* 512 */ "partition_item ::= expr_or_subquery AS column_alias", + /* 513 */ "twindow_clause_opt ::=", + /* 514 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", + /* 515 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP", + /* 516 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", + /* 517 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", + /* 518 */ "twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition", + /* 519 */ "sliding_opt ::=", + /* 520 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", + /* 521 */ "fill_opt ::=", + /* 522 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", + /* 523 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", + /* 524 */ "fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP", + /* 525 */ "fill_mode ::= NONE", + /* 526 */ "fill_mode ::= PREV", + /* 527 */ "fill_mode ::= NULL", + /* 528 */ "fill_mode ::= NULL_F", + /* 529 */ "fill_mode ::= LINEAR", + /* 530 */ "fill_mode ::= NEXT", + /* 531 */ "group_by_clause_opt ::=", + /* 532 */ "group_by_clause_opt ::= GROUP BY group_by_list", + /* 533 */ "group_by_list ::= expr_or_subquery", + /* 534 */ "group_by_list ::= group_by_list NK_COMMA expr_or_subquery", + /* 535 */ "having_clause_opt ::=", + /* 536 */ "having_clause_opt ::= HAVING search_condition", + /* 537 */ "range_opt ::=", + /* 538 */ "range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP", + /* 539 */ "every_opt ::=", + /* 540 */ "every_opt ::= EVERY NK_LP duration_literal NK_RP", + /* 541 */ "query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt", + /* 542 */ "query_simple ::= query_specification", + /* 543 */ "query_simple ::= union_query_expression", + /* 544 */ "union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery", + /* 545 */ "union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery", + /* 546 */ "query_simple_or_subquery ::= query_simple", + /* 547 */ "query_simple_or_subquery ::= subquery", + /* 548 */ "query_or_subquery ::= query_expression", + /* 549 */ "query_or_subquery ::= subquery", + /* 550 */ "order_by_clause_opt ::=", + /* 551 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", + /* 552 */ "slimit_clause_opt ::=", + /* 553 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", + /* 554 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", + /* 555 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", + /* 556 */ "limit_clause_opt ::=", + /* 557 */ "limit_clause_opt ::= LIMIT NK_INTEGER", + /* 558 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", + /* 559 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", + /* 560 */ "subquery ::= NK_LP query_expression NK_RP", + /* 561 */ "subquery ::= NK_LP subquery NK_RP", + /* 562 */ "search_condition ::= common_expression", + /* 563 */ "sort_specification_list ::= sort_specification", + /* 564 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", + /* 565 */ "sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt", + /* 566 */ "ordering_specification_opt ::=", + /* 567 */ "ordering_specification_opt ::= ASC", + /* 568 */ "ordering_specification_opt ::= DESC", + /* 569 */ "null_ordering_opt ::=", + /* 570 */ "null_ordering_opt ::= NULLS FIRST", + /* 571 */ "null_ordering_opt ::= NULLS LAST", }; #endif /* NDEBUG */ @@ -3171,457 +3172,458 @@ static const struct { { 353, -2 }, /* (117) alter_db_option ::= REPLICA NK_INTEGER */ { 353, -2 }, /* (118) alter_db_option ::= WAL_LEVEL NK_INTEGER */ { 353, -2 }, /* (119) alter_db_option ::= STT_TRIGGER NK_INTEGER */ - { 350, -1 }, /* (120) integer_list ::= NK_INTEGER */ - { 350, -3 }, /* (121) integer_list ::= integer_list NK_COMMA NK_INTEGER */ - { 351, -1 }, /* (122) variable_list ::= NK_VARIABLE */ - { 351, -3 }, /* (123) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ - { 352, -1 }, /* (124) retention_list ::= retention */ - { 352, -3 }, /* (125) retention_list ::= retention_list NK_COMMA retention */ - { 354, -3 }, /* (126) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ - { 347, 0 }, /* (127) speed_opt ::= */ - { 347, -2 }, /* (128) speed_opt ::= MAX_SPEED NK_INTEGER */ - { 348, 0 }, /* (129) start_opt ::= */ - { 348, -3 }, /* (130) start_opt ::= START WITH NK_INTEGER */ - { 348, -3 }, /* (131) start_opt ::= START WITH NK_STRING */ - { 348, -4 }, /* (132) start_opt ::= START WITH TIMESTAMP NK_STRING */ - { 349, 0 }, /* (133) end_opt ::= */ - { 349, -3 }, /* (134) end_opt ::= END WITH NK_INTEGER */ - { 349, -3 }, /* (135) end_opt ::= END WITH NK_STRING */ - { 349, -4 }, /* (136) end_opt ::= END WITH TIMESTAMP NK_STRING */ - { 328, -9 }, /* (137) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ - { 328, -3 }, /* (138) cmd ::= CREATE TABLE multi_create_clause */ - { 328, -9 }, /* (139) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ - { 328, -3 }, /* (140) cmd ::= DROP TABLE multi_drop_clause */ - { 328, -4 }, /* (141) cmd ::= DROP STABLE exists_opt full_table_name */ - { 328, -3 }, /* (142) cmd ::= ALTER TABLE alter_table_clause */ - { 328, -3 }, /* (143) cmd ::= ALTER STABLE alter_table_clause */ - { 362, -2 }, /* (144) alter_table_clause ::= full_table_name alter_table_options */ - { 362, -5 }, /* (145) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ - { 362, -4 }, /* (146) alter_table_clause ::= full_table_name DROP COLUMN column_name */ - { 362, -5 }, /* (147) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ - { 362, -5 }, /* (148) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ - { 362, -5 }, /* (149) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ - { 362, -4 }, /* (150) alter_table_clause ::= full_table_name DROP TAG column_name */ - { 362, -5 }, /* (151) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ - { 362, -5 }, /* (152) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ - { 362, -6 }, /* (153) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ - { 359, -1 }, /* (154) multi_create_clause ::= create_subtable_clause */ - { 359, -2 }, /* (155) multi_create_clause ::= multi_create_clause create_subtable_clause */ - { 367, -10 }, /* (156) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ - { 361, -1 }, /* (157) multi_drop_clause ::= drop_table_clause */ - { 361, -3 }, /* (158) multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ - { 370, -2 }, /* (159) drop_table_clause ::= exists_opt full_table_name */ - { 368, 0 }, /* (160) specific_cols_opt ::= */ - { 368, -3 }, /* (161) specific_cols_opt ::= NK_LP col_name_list NK_RP */ - { 355, -1 }, /* (162) full_table_name ::= table_name */ - { 355, -3 }, /* (163) full_table_name ::= db_name NK_DOT table_name */ - { 356, -1 }, /* (164) column_def_list ::= column_def */ - { 356, -3 }, /* (165) column_def_list ::= column_def_list NK_COMMA column_def */ - { 373, -2 }, /* (166) column_def ::= column_name type_name */ - { 373, -4 }, /* (167) column_def ::= column_name type_name COMMENT NK_STRING */ - { 365, -1 }, /* (168) type_name ::= BOOL */ - { 365, -1 }, /* (169) type_name ::= TINYINT */ - { 365, -1 }, /* (170) type_name ::= SMALLINT */ - { 365, -1 }, /* (171) type_name ::= INT */ - { 365, -1 }, /* (172) type_name ::= INTEGER */ - { 365, -1 }, /* (173) type_name ::= BIGINT */ - { 365, -1 }, /* (174) type_name ::= FLOAT */ - { 365, -1 }, /* (175) type_name ::= DOUBLE */ - { 365, -4 }, /* (176) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ - { 365, -1 }, /* (177) type_name ::= TIMESTAMP */ - { 365, -4 }, /* (178) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ - { 365, -2 }, /* (179) type_name ::= TINYINT UNSIGNED */ - { 365, -2 }, /* (180) type_name ::= SMALLINT UNSIGNED */ - { 365, -2 }, /* (181) type_name ::= INT UNSIGNED */ - { 365, -2 }, /* (182) type_name ::= BIGINT UNSIGNED */ - { 365, -1 }, /* (183) type_name ::= JSON */ - { 365, -4 }, /* (184) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ - { 365, -1 }, /* (185) type_name ::= MEDIUMBLOB */ - { 365, -1 }, /* (186) type_name ::= BLOB */ - { 365, -4 }, /* (187) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ - { 365, -1 }, /* (188) type_name ::= DECIMAL */ - { 365, -4 }, /* (189) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ - { 365, -6 }, /* (190) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ - { 357, 0 }, /* (191) tags_def_opt ::= */ - { 357, -1 }, /* (192) tags_def_opt ::= tags_def */ - { 360, -4 }, /* (193) tags_def ::= TAGS NK_LP column_def_list NK_RP */ - { 358, 0 }, /* (194) table_options ::= */ - { 358, -3 }, /* (195) table_options ::= table_options COMMENT NK_STRING */ - { 358, -3 }, /* (196) table_options ::= table_options MAX_DELAY duration_list */ - { 358, -3 }, /* (197) table_options ::= table_options WATERMARK duration_list */ - { 358, -5 }, /* (198) table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ - { 358, -3 }, /* (199) table_options ::= table_options TTL NK_INTEGER */ - { 358, -5 }, /* (200) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ - { 358, -3 }, /* (201) table_options ::= table_options DELETE_MARK duration_list */ - { 363, -1 }, /* (202) alter_table_options ::= alter_table_option */ - { 363, -2 }, /* (203) alter_table_options ::= alter_table_options alter_table_option */ - { 376, -2 }, /* (204) alter_table_option ::= COMMENT NK_STRING */ - { 376, -2 }, /* (205) alter_table_option ::= TTL NK_INTEGER */ - { 374, -1 }, /* (206) duration_list ::= duration_literal */ - { 374, -3 }, /* (207) duration_list ::= duration_list NK_COMMA duration_literal */ - { 375, -1 }, /* (208) rollup_func_list ::= rollup_func_name */ - { 375, -3 }, /* (209) rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ - { 378, -1 }, /* (210) rollup_func_name ::= function_name */ - { 378, -1 }, /* (211) rollup_func_name ::= FIRST */ - { 378, -1 }, /* (212) rollup_func_name ::= LAST */ - { 371, -1 }, /* (213) col_name_list ::= col_name */ - { 371, -3 }, /* (214) col_name_list ::= col_name_list NK_COMMA col_name */ - { 380, -1 }, /* (215) col_name ::= column_name */ - { 328, -2 }, /* (216) cmd ::= SHOW DNODES */ - { 328, -2 }, /* (217) cmd ::= SHOW USERS */ - { 328, -3 }, /* (218) cmd ::= SHOW USER PRIVILEGES */ - { 328, -2 }, /* (219) cmd ::= SHOW DATABASES */ - { 328, -4 }, /* (220) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ - { 328, -4 }, /* (221) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ - { 328, -3 }, /* (222) cmd ::= SHOW db_name_cond_opt VGROUPS */ - { 328, -2 }, /* (223) cmd ::= SHOW MNODES */ - { 328, -2 }, /* (224) cmd ::= SHOW QNODES */ - { 328, -2 }, /* (225) cmd ::= SHOW FUNCTIONS */ - { 328, -5 }, /* (226) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ - { 328, -2 }, /* (227) cmd ::= SHOW STREAMS */ - { 328, -2 }, /* (228) cmd ::= SHOW ACCOUNTS */ - { 328, -2 }, /* (229) cmd ::= SHOW APPS */ - { 328, -2 }, /* (230) cmd ::= SHOW CONNECTIONS */ - { 328, -2 }, /* (231) cmd ::= SHOW LICENCES */ - { 328, -2 }, /* (232) cmd ::= SHOW GRANTS */ - { 328, -4 }, /* (233) cmd ::= SHOW CREATE DATABASE db_name */ - { 328, -4 }, /* (234) cmd ::= SHOW CREATE TABLE full_table_name */ - { 328, -4 }, /* (235) cmd ::= SHOW CREATE STABLE full_table_name */ - { 328, -2 }, /* (236) cmd ::= SHOW QUERIES */ - { 328, -2 }, /* (237) cmd ::= SHOW SCORES */ - { 328, -2 }, /* (238) cmd ::= SHOW TOPICS */ - { 328, -2 }, /* (239) cmd ::= SHOW VARIABLES */ - { 328, -3 }, /* (240) cmd ::= SHOW CLUSTER VARIABLES */ - { 328, -3 }, /* (241) cmd ::= SHOW LOCAL VARIABLES */ - { 328, -5 }, /* (242) cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ - { 328, -2 }, /* (243) cmd ::= SHOW BNODES */ - { 328, -2 }, /* (244) cmd ::= SHOW SNODES */ - { 328, -2 }, /* (245) cmd ::= SHOW CLUSTER */ - { 328, -2 }, /* (246) cmd ::= SHOW TRANSACTIONS */ - { 328, -4 }, /* (247) cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ - { 328, -2 }, /* (248) cmd ::= SHOW CONSUMERS */ - { 328, -2 }, /* (249) cmd ::= SHOW SUBSCRIPTIONS */ - { 328, -5 }, /* (250) cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ - { 328, -7 }, /* (251) cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ - { 328, -3 }, /* (252) cmd ::= SHOW VNODES NK_INTEGER */ - { 328, -3 }, /* (253) cmd ::= SHOW VNODES NK_STRING */ - { 328, -3 }, /* (254) cmd ::= SHOW db_name_cond_opt ALIVE */ - { 328, -3 }, /* (255) cmd ::= SHOW CLUSTER ALIVE */ - { 381, 0 }, /* (256) db_name_cond_opt ::= */ - { 381, -2 }, /* (257) db_name_cond_opt ::= db_name NK_DOT */ - { 382, 0 }, /* (258) like_pattern_opt ::= */ - { 382, -2 }, /* (259) like_pattern_opt ::= LIKE NK_STRING */ - { 383, -1 }, /* (260) table_name_cond ::= table_name */ - { 384, 0 }, /* (261) from_db_opt ::= */ - { 384, -2 }, /* (262) from_db_opt ::= FROM db_name */ - { 385, 0 }, /* (263) tag_list_opt ::= */ - { 385, -1 }, /* (264) tag_list_opt ::= tag_item */ - { 385, -3 }, /* (265) tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ - { 386, -1 }, /* (266) tag_item ::= TBNAME */ - { 386, -1 }, /* (267) tag_item ::= QTAGS */ - { 386, -1 }, /* (268) tag_item ::= column_name */ - { 386, -2 }, /* (269) tag_item ::= column_name column_alias */ - { 386, -3 }, /* (270) tag_item ::= column_name AS column_alias */ - { 328, -8 }, /* (271) cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ - { 328, -9 }, /* (272) cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ - { 328, -4 }, /* (273) cmd ::= DROP INDEX exists_opt full_index_name */ - { 388, -1 }, /* (274) full_index_name ::= index_name */ - { 388, -3 }, /* (275) full_index_name ::= db_name NK_DOT index_name */ - { 389, -10 }, /* (276) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ - { 389, -12 }, /* (277) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ - { 391, -1 }, /* (278) func_list ::= func */ - { 391, -3 }, /* (279) func_list ::= func_list NK_COMMA func */ - { 394, -4 }, /* (280) func ::= sma_func_name NK_LP expression_list NK_RP */ - { 395, -1 }, /* (281) sma_func_name ::= function_name */ - { 395, -1 }, /* (282) sma_func_name ::= COUNT */ - { 395, -1 }, /* (283) sma_func_name ::= FIRST */ - { 395, -1 }, /* (284) sma_func_name ::= LAST */ - { 395, -1 }, /* (285) sma_func_name ::= LAST_ROW */ - { 393, 0 }, /* (286) sma_stream_opt ::= */ - { 393, -3 }, /* (287) sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ - { 393, -3 }, /* (288) sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ - { 393, -3 }, /* (289) sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ - { 328, -6 }, /* (290) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ - { 328, -7 }, /* (291) cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ - { 328, -9 }, /* (292) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ - { 328, -7 }, /* (293) cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ - { 328, -9 }, /* (294) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ - { 328, -4 }, /* (295) cmd ::= DROP TOPIC exists_opt topic_name */ - { 328, -7 }, /* (296) cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ - { 328, -2 }, /* (297) cmd ::= DESC full_table_name */ - { 328, -2 }, /* (298) cmd ::= DESCRIBE full_table_name */ - { 328, -3 }, /* (299) cmd ::= RESET QUERY CACHE */ - { 328, -4 }, /* (300) cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ - { 328, -4 }, /* (301) cmd ::= EXPLAIN analyze_opt explain_options insert_query */ - { 398, 0 }, /* (302) analyze_opt ::= */ - { 398, -1 }, /* (303) analyze_opt ::= ANALYZE */ - { 399, 0 }, /* (304) explain_options ::= */ - { 399, -3 }, /* (305) explain_options ::= explain_options VERBOSE NK_BOOL */ - { 399, -3 }, /* (306) explain_options ::= explain_options RATIO NK_FLOAT */ - { 328, -10 }, /* (307) cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ - { 328, -4 }, /* (308) cmd ::= DROP FUNCTION exists_opt function_name */ - { 401, 0 }, /* (309) agg_func_opt ::= */ - { 401, -1 }, /* (310) agg_func_opt ::= AGGREGATE */ - { 402, 0 }, /* (311) bufsize_opt ::= */ - { 402, -2 }, /* (312) bufsize_opt ::= BUFSIZE NK_INTEGER */ - { 328, -12 }, /* (313) cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ - { 328, -4 }, /* (314) cmd ::= DROP STREAM exists_opt stream_name */ - { 405, 0 }, /* (315) col_list_opt ::= */ - { 405, -3 }, /* (316) col_list_opt ::= NK_LP col_name_list NK_RP */ - { 406, 0 }, /* (317) tag_def_or_ref_opt ::= */ - { 406, -1 }, /* (318) tag_def_or_ref_opt ::= tags_def */ - { 406, -4 }, /* (319) tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ - { 404, 0 }, /* (320) stream_options ::= */ - { 404, -3 }, /* (321) stream_options ::= stream_options TRIGGER AT_ONCE */ - { 404, -3 }, /* (322) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ - { 404, -4 }, /* (323) stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ - { 404, -3 }, /* (324) stream_options ::= stream_options WATERMARK duration_literal */ - { 404, -4 }, /* (325) stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ - { 404, -3 }, /* (326) stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ - { 404, -3 }, /* (327) stream_options ::= stream_options DELETE_MARK duration_literal */ - { 404, -4 }, /* (328) stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ - { 407, 0 }, /* (329) subtable_opt ::= */ - { 407, -4 }, /* (330) subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ - { 328, -3 }, /* (331) cmd ::= KILL CONNECTION NK_INTEGER */ - { 328, -3 }, /* (332) cmd ::= KILL QUERY NK_STRING */ - { 328, -3 }, /* (333) cmd ::= KILL TRANSACTION NK_INTEGER */ - { 328, -2 }, /* (334) cmd ::= BALANCE VGROUP */ - { 328, -4 }, /* (335) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ - { 328, -4 }, /* (336) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ - { 328, -3 }, /* (337) cmd ::= SPLIT VGROUP NK_INTEGER */ - { 409, -2 }, /* (338) dnode_list ::= DNODE NK_INTEGER */ - { 409, -3 }, /* (339) dnode_list ::= dnode_list DNODE NK_INTEGER */ - { 328, -4 }, /* (340) cmd ::= DELETE FROM full_table_name where_clause_opt */ - { 328, -1 }, /* (341) cmd ::= query_or_subquery */ - { 328, -1 }, /* (342) cmd ::= insert_query */ - { 400, -7 }, /* (343) insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ - { 400, -4 }, /* (344) insert_query ::= INSERT INTO full_table_name query_or_subquery */ - { 331, -1 }, /* (345) literal ::= NK_INTEGER */ - { 331, -1 }, /* (346) literal ::= NK_FLOAT */ - { 331, -1 }, /* (347) literal ::= NK_STRING */ - { 331, -1 }, /* (348) literal ::= NK_BOOL */ - { 331, -2 }, /* (349) literal ::= TIMESTAMP NK_STRING */ - { 331, -1 }, /* (350) literal ::= duration_literal */ - { 331, -1 }, /* (351) literal ::= NULL */ - { 331, -1 }, /* (352) literal ::= NK_QUESTION */ - { 377, -1 }, /* (353) duration_literal ::= NK_VARIABLE */ - { 411, -1 }, /* (354) signed ::= NK_INTEGER */ - { 411, -2 }, /* (355) signed ::= NK_PLUS NK_INTEGER */ - { 411, -2 }, /* (356) signed ::= NK_MINUS NK_INTEGER */ - { 411, -1 }, /* (357) signed ::= NK_FLOAT */ - { 411, -2 }, /* (358) signed ::= NK_PLUS NK_FLOAT */ - { 411, -2 }, /* (359) signed ::= NK_MINUS NK_FLOAT */ - { 366, -1 }, /* (360) signed_literal ::= signed */ - { 366, -1 }, /* (361) signed_literal ::= NK_STRING */ - { 366, -1 }, /* (362) signed_literal ::= NK_BOOL */ - { 366, -2 }, /* (363) signed_literal ::= TIMESTAMP NK_STRING */ - { 366, -1 }, /* (364) signed_literal ::= duration_literal */ - { 366, -1 }, /* (365) signed_literal ::= NULL */ - { 366, -1 }, /* (366) signed_literal ::= literal_func */ - { 366, -1 }, /* (367) signed_literal ::= NK_QUESTION */ - { 413, -1 }, /* (368) literal_list ::= signed_literal */ - { 413, -3 }, /* (369) literal_list ::= literal_list NK_COMMA signed_literal */ - { 339, -1 }, /* (370) db_name ::= NK_ID */ - { 372, -1 }, /* (371) table_name ::= NK_ID */ - { 364, -1 }, /* (372) column_name ::= NK_ID */ - { 379, -1 }, /* (373) function_name ::= NK_ID */ - { 414, -1 }, /* (374) table_alias ::= NK_ID */ - { 387, -1 }, /* (375) column_alias ::= NK_ID */ - { 333, -1 }, /* (376) user_name ::= NK_ID */ - { 340, -1 }, /* (377) topic_name ::= NK_ID */ - { 403, -1 }, /* (378) stream_name ::= NK_ID */ - { 397, -1 }, /* (379) cgroup_name ::= NK_ID */ - { 390, -1 }, /* (380) index_name ::= NK_ID */ - { 415, -1 }, /* (381) expr_or_subquery ::= expression */ - { 408, -1 }, /* (382) expression ::= literal */ - { 408, -1 }, /* (383) expression ::= pseudo_column */ - { 408, -1 }, /* (384) expression ::= column_reference */ - { 408, -1 }, /* (385) expression ::= function_expression */ - { 408, -1 }, /* (386) expression ::= case_when_expression */ - { 408, -3 }, /* (387) expression ::= NK_LP expression NK_RP */ - { 408, -2 }, /* (388) expression ::= NK_PLUS expr_or_subquery */ - { 408, -2 }, /* (389) expression ::= NK_MINUS expr_or_subquery */ - { 408, -3 }, /* (390) expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ - { 408, -3 }, /* (391) expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ - { 408, -3 }, /* (392) expression ::= expr_or_subquery NK_STAR expr_or_subquery */ - { 408, -3 }, /* (393) expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ - { 408, -3 }, /* (394) expression ::= expr_or_subquery NK_REM expr_or_subquery */ - { 408, -3 }, /* (395) expression ::= column_reference NK_ARROW NK_STRING */ - { 408, -3 }, /* (396) expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ - { 408, -3 }, /* (397) expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ - { 369, -1 }, /* (398) expression_list ::= expr_or_subquery */ - { 369, -3 }, /* (399) expression_list ::= expression_list NK_COMMA expr_or_subquery */ - { 417, -1 }, /* (400) column_reference ::= column_name */ - { 417, -3 }, /* (401) column_reference ::= table_name NK_DOT column_name */ - { 416, -1 }, /* (402) pseudo_column ::= ROWTS */ - { 416, -1 }, /* (403) pseudo_column ::= TBNAME */ - { 416, -3 }, /* (404) pseudo_column ::= table_name NK_DOT TBNAME */ - { 416, -1 }, /* (405) pseudo_column ::= QSTART */ - { 416, -1 }, /* (406) pseudo_column ::= QEND */ - { 416, -1 }, /* (407) pseudo_column ::= QDURATION */ - { 416, -1 }, /* (408) pseudo_column ::= WSTART */ - { 416, -1 }, /* (409) pseudo_column ::= WEND */ - { 416, -1 }, /* (410) pseudo_column ::= WDURATION */ - { 416, -1 }, /* (411) pseudo_column ::= IROWTS */ - { 416, -1 }, /* (412) pseudo_column ::= ISFILLED */ - { 416, -1 }, /* (413) pseudo_column ::= QTAGS */ - { 418, -4 }, /* (414) function_expression ::= function_name NK_LP expression_list NK_RP */ - { 418, -4 }, /* (415) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ - { 418, -6 }, /* (416) function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ - { 418, -1 }, /* (417) function_expression ::= literal_func */ - { 412, -3 }, /* (418) literal_func ::= noarg_func NK_LP NK_RP */ - { 412, -1 }, /* (419) literal_func ::= NOW */ - { 422, -1 }, /* (420) noarg_func ::= NOW */ - { 422, -1 }, /* (421) noarg_func ::= TODAY */ - { 422, -1 }, /* (422) noarg_func ::= TIMEZONE */ - { 422, -1 }, /* (423) noarg_func ::= DATABASE */ - { 422, -1 }, /* (424) noarg_func ::= CLIENT_VERSION */ - { 422, -1 }, /* (425) noarg_func ::= SERVER_VERSION */ - { 422, -1 }, /* (426) noarg_func ::= SERVER_STATUS */ - { 422, -1 }, /* (427) noarg_func ::= CURRENT_USER */ - { 422, -1 }, /* (428) noarg_func ::= USER */ - { 420, -1 }, /* (429) star_func ::= COUNT */ - { 420, -1 }, /* (430) star_func ::= FIRST */ - { 420, -1 }, /* (431) star_func ::= LAST */ - { 420, -1 }, /* (432) star_func ::= LAST_ROW */ - { 421, -1 }, /* (433) star_func_para_list ::= NK_STAR */ - { 421, -1 }, /* (434) star_func_para_list ::= other_para_list */ - { 423, -1 }, /* (435) other_para_list ::= star_func_para */ - { 423, -3 }, /* (436) other_para_list ::= other_para_list NK_COMMA star_func_para */ - { 424, -1 }, /* (437) star_func_para ::= expr_or_subquery */ - { 424, -3 }, /* (438) star_func_para ::= table_name NK_DOT NK_STAR */ - { 419, -4 }, /* (439) case_when_expression ::= CASE when_then_list case_when_else_opt END */ - { 419, -5 }, /* (440) case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ - { 425, -1 }, /* (441) when_then_list ::= when_then_expr */ - { 425, -2 }, /* (442) when_then_list ::= when_then_list when_then_expr */ - { 428, -4 }, /* (443) when_then_expr ::= WHEN common_expression THEN common_expression */ - { 426, 0 }, /* (444) case_when_else_opt ::= */ - { 426, -2 }, /* (445) case_when_else_opt ::= ELSE common_expression */ - { 429, -3 }, /* (446) predicate ::= expr_or_subquery compare_op expr_or_subquery */ - { 429, -5 }, /* (447) predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ - { 429, -6 }, /* (448) predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ - { 429, -3 }, /* (449) predicate ::= expr_or_subquery IS NULL */ - { 429, -4 }, /* (450) predicate ::= expr_or_subquery IS NOT NULL */ - { 429, -3 }, /* (451) predicate ::= expr_or_subquery in_op in_predicate_value */ - { 430, -1 }, /* (452) compare_op ::= NK_LT */ - { 430, -1 }, /* (453) compare_op ::= NK_GT */ - { 430, -1 }, /* (454) compare_op ::= NK_LE */ - { 430, -1 }, /* (455) compare_op ::= NK_GE */ - { 430, -1 }, /* (456) compare_op ::= NK_NE */ - { 430, -1 }, /* (457) compare_op ::= NK_EQ */ - { 430, -1 }, /* (458) compare_op ::= LIKE */ - { 430, -2 }, /* (459) compare_op ::= NOT LIKE */ - { 430, -1 }, /* (460) compare_op ::= MATCH */ - { 430, -1 }, /* (461) compare_op ::= NMATCH */ - { 430, -1 }, /* (462) compare_op ::= CONTAINS */ - { 431, -1 }, /* (463) in_op ::= IN */ - { 431, -2 }, /* (464) in_op ::= NOT IN */ - { 432, -3 }, /* (465) in_predicate_value ::= NK_LP literal_list NK_RP */ - { 433, -1 }, /* (466) boolean_value_expression ::= boolean_primary */ - { 433, -2 }, /* (467) boolean_value_expression ::= NOT boolean_primary */ - { 433, -3 }, /* (468) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ - { 433, -3 }, /* (469) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ - { 434, -1 }, /* (470) boolean_primary ::= predicate */ - { 434, -3 }, /* (471) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ - { 427, -1 }, /* (472) common_expression ::= expr_or_subquery */ - { 427, -1 }, /* (473) common_expression ::= boolean_value_expression */ - { 435, 0 }, /* (474) from_clause_opt ::= */ - { 435, -2 }, /* (475) from_clause_opt ::= FROM table_reference_list */ - { 436, -1 }, /* (476) table_reference_list ::= table_reference */ - { 436, -3 }, /* (477) table_reference_list ::= table_reference_list NK_COMMA table_reference */ - { 437, -1 }, /* (478) table_reference ::= table_primary */ - { 437, -1 }, /* (479) table_reference ::= joined_table */ - { 438, -2 }, /* (480) table_primary ::= table_name alias_opt */ - { 438, -4 }, /* (481) table_primary ::= db_name NK_DOT table_name alias_opt */ - { 438, -2 }, /* (482) table_primary ::= subquery alias_opt */ - { 438, -1 }, /* (483) table_primary ::= parenthesized_joined_table */ - { 440, 0 }, /* (484) alias_opt ::= */ - { 440, -1 }, /* (485) alias_opt ::= table_alias */ - { 440, -2 }, /* (486) alias_opt ::= AS table_alias */ - { 442, -3 }, /* (487) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ - { 442, -3 }, /* (488) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ - { 439, -6 }, /* (489) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ - { 443, 0 }, /* (490) join_type ::= */ - { 443, -1 }, /* (491) join_type ::= INNER */ - { 445, -12 }, /* (492) query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ - { 446, 0 }, /* (493) set_quantifier_opt ::= */ - { 446, -1 }, /* (494) set_quantifier_opt ::= DISTINCT */ - { 446, -1 }, /* (495) set_quantifier_opt ::= ALL */ - { 447, -1 }, /* (496) select_list ::= select_item */ - { 447, -3 }, /* (497) select_list ::= select_list NK_COMMA select_item */ - { 455, -1 }, /* (498) select_item ::= NK_STAR */ - { 455, -1 }, /* (499) select_item ::= common_expression */ - { 455, -2 }, /* (500) select_item ::= common_expression column_alias */ - { 455, -3 }, /* (501) select_item ::= common_expression AS column_alias */ - { 455, -3 }, /* (502) select_item ::= table_name NK_DOT NK_STAR */ - { 410, 0 }, /* (503) where_clause_opt ::= */ - { 410, -2 }, /* (504) where_clause_opt ::= WHERE search_condition */ - { 448, 0 }, /* (505) partition_by_clause_opt ::= */ - { 448, -3 }, /* (506) partition_by_clause_opt ::= PARTITION BY partition_list */ - { 456, -1 }, /* (507) partition_list ::= partition_item */ - { 456, -3 }, /* (508) partition_list ::= partition_list NK_COMMA partition_item */ - { 457, -1 }, /* (509) partition_item ::= expr_or_subquery */ - { 457, -2 }, /* (510) partition_item ::= expr_or_subquery column_alias */ - { 457, -3 }, /* (511) partition_item ::= expr_or_subquery AS column_alias */ - { 452, 0 }, /* (512) twindow_clause_opt ::= */ - { 452, -6 }, /* (513) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ - { 452, -4 }, /* (514) twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ - { 452, -6 }, /* (515) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ - { 452, -8 }, /* (516) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ - { 452, -7 }, /* (517) twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ - { 392, 0 }, /* (518) sliding_opt ::= */ - { 392, -4 }, /* (519) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ - { 451, 0 }, /* (520) fill_opt ::= */ - { 451, -4 }, /* (521) fill_opt ::= FILL NK_LP fill_mode NK_RP */ - { 451, -6 }, /* (522) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ - { 451, -6 }, /* (523) fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ - { 458, -1 }, /* (524) fill_mode ::= NONE */ - { 458, -1 }, /* (525) fill_mode ::= PREV */ - { 458, -1 }, /* (526) fill_mode ::= NULL */ - { 458, -1 }, /* (527) fill_mode ::= NULL_F */ - { 458, -1 }, /* (528) fill_mode ::= LINEAR */ - { 458, -1 }, /* (529) fill_mode ::= NEXT */ - { 453, 0 }, /* (530) group_by_clause_opt ::= */ - { 453, -3 }, /* (531) group_by_clause_opt ::= GROUP BY group_by_list */ - { 459, -1 }, /* (532) group_by_list ::= expr_or_subquery */ - { 459, -3 }, /* (533) group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ - { 454, 0 }, /* (534) having_clause_opt ::= */ - { 454, -2 }, /* (535) having_clause_opt ::= HAVING search_condition */ - { 449, 0 }, /* (536) range_opt ::= */ - { 449, -6 }, /* (537) range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ - { 450, 0 }, /* (538) every_opt ::= */ - { 450, -4 }, /* (539) every_opt ::= EVERY NK_LP duration_literal NK_RP */ - { 460, -4 }, /* (540) query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ - { 461, -1 }, /* (541) query_simple ::= query_specification */ - { 461, -1 }, /* (542) query_simple ::= union_query_expression */ - { 465, -4 }, /* (543) union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ - { 465, -3 }, /* (544) union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ - { 466, -1 }, /* (545) query_simple_or_subquery ::= query_simple */ - { 466, -1 }, /* (546) query_simple_or_subquery ::= subquery */ - { 396, -1 }, /* (547) query_or_subquery ::= query_expression */ - { 396, -1 }, /* (548) query_or_subquery ::= subquery */ - { 462, 0 }, /* (549) order_by_clause_opt ::= */ - { 462, -3 }, /* (550) order_by_clause_opt ::= ORDER BY sort_specification_list */ - { 463, 0 }, /* (551) slimit_clause_opt ::= */ - { 463, -2 }, /* (552) slimit_clause_opt ::= SLIMIT NK_INTEGER */ - { 463, -4 }, /* (553) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ - { 463, -4 }, /* (554) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - { 464, 0 }, /* (555) limit_clause_opt ::= */ - { 464, -2 }, /* (556) limit_clause_opt ::= LIMIT NK_INTEGER */ - { 464, -4 }, /* (557) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ - { 464, -4 }, /* (558) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - { 441, -3 }, /* (559) subquery ::= NK_LP query_expression NK_RP */ - { 441, -3 }, /* (560) subquery ::= NK_LP subquery NK_RP */ - { 444, -1 }, /* (561) search_condition ::= common_expression */ - { 467, -1 }, /* (562) sort_specification_list ::= sort_specification */ - { 467, -3 }, /* (563) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ - { 468, -3 }, /* (564) sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ - { 469, 0 }, /* (565) ordering_specification_opt ::= */ - { 469, -1 }, /* (566) ordering_specification_opt ::= ASC */ - { 469, -1 }, /* (567) ordering_specification_opt ::= DESC */ - { 470, 0 }, /* (568) null_ordering_opt ::= */ - { 470, -2 }, /* (569) null_ordering_opt ::= NULLS FIRST */ - { 470, -2 }, /* (570) null_ordering_opt ::= NULLS LAST */ + { 353, -2 }, /* (120) alter_db_option ::= MINROWS NK_INTEGER */ + { 350, -1 }, /* (121) integer_list ::= NK_INTEGER */ + { 350, -3 }, /* (122) integer_list ::= integer_list NK_COMMA NK_INTEGER */ + { 351, -1 }, /* (123) variable_list ::= NK_VARIABLE */ + { 351, -3 }, /* (124) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ + { 352, -1 }, /* (125) retention_list ::= retention */ + { 352, -3 }, /* (126) retention_list ::= retention_list NK_COMMA retention */ + { 354, -3 }, /* (127) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ + { 347, 0 }, /* (128) speed_opt ::= */ + { 347, -2 }, /* (129) speed_opt ::= MAX_SPEED NK_INTEGER */ + { 348, 0 }, /* (130) start_opt ::= */ + { 348, -3 }, /* (131) start_opt ::= START WITH NK_INTEGER */ + { 348, -3 }, /* (132) start_opt ::= START WITH NK_STRING */ + { 348, -4 }, /* (133) start_opt ::= START WITH TIMESTAMP NK_STRING */ + { 349, 0 }, /* (134) end_opt ::= */ + { 349, -3 }, /* (135) end_opt ::= END WITH NK_INTEGER */ + { 349, -3 }, /* (136) end_opt ::= END WITH NK_STRING */ + { 349, -4 }, /* (137) end_opt ::= END WITH TIMESTAMP NK_STRING */ + { 328, -9 }, /* (138) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ + { 328, -3 }, /* (139) cmd ::= CREATE TABLE multi_create_clause */ + { 328, -9 }, /* (140) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ + { 328, -3 }, /* (141) cmd ::= DROP TABLE multi_drop_clause */ + { 328, -4 }, /* (142) cmd ::= DROP STABLE exists_opt full_table_name */ + { 328, -3 }, /* (143) cmd ::= ALTER TABLE alter_table_clause */ + { 328, -3 }, /* (144) cmd ::= ALTER STABLE alter_table_clause */ + { 362, -2 }, /* (145) alter_table_clause ::= full_table_name alter_table_options */ + { 362, -5 }, /* (146) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ + { 362, -4 }, /* (147) alter_table_clause ::= full_table_name DROP COLUMN column_name */ + { 362, -5 }, /* (148) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ + { 362, -5 }, /* (149) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ + { 362, -5 }, /* (150) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ + { 362, -4 }, /* (151) alter_table_clause ::= full_table_name DROP TAG column_name */ + { 362, -5 }, /* (152) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ + { 362, -5 }, /* (153) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ + { 362, -6 }, /* (154) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ + { 359, -1 }, /* (155) multi_create_clause ::= create_subtable_clause */ + { 359, -2 }, /* (156) multi_create_clause ::= multi_create_clause create_subtable_clause */ + { 367, -10 }, /* (157) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ + { 361, -1 }, /* (158) multi_drop_clause ::= drop_table_clause */ + { 361, -3 }, /* (159) multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ + { 370, -2 }, /* (160) drop_table_clause ::= exists_opt full_table_name */ + { 368, 0 }, /* (161) specific_cols_opt ::= */ + { 368, -3 }, /* (162) specific_cols_opt ::= NK_LP col_name_list NK_RP */ + { 355, -1 }, /* (163) full_table_name ::= table_name */ + { 355, -3 }, /* (164) full_table_name ::= db_name NK_DOT table_name */ + { 356, -1 }, /* (165) column_def_list ::= column_def */ + { 356, -3 }, /* (166) column_def_list ::= column_def_list NK_COMMA column_def */ + { 373, -2 }, /* (167) column_def ::= column_name type_name */ + { 373, -4 }, /* (168) column_def ::= column_name type_name COMMENT NK_STRING */ + { 365, -1 }, /* (169) type_name ::= BOOL */ + { 365, -1 }, /* (170) type_name ::= TINYINT */ + { 365, -1 }, /* (171) type_name ::= SMALLINT */ + { 365, -1 }, /* (172) type_name ::= INT */ + { 365, -1 }, /* (173) type_name ::= INTEGER */ + { 365, -1 }, /* (174) type_name ::= BIGINT */ + { 365, -1 }, /* (175) type_name ::= FLOAT */ + { 365, -1 }, /* (176) type_name ::= DOUBLE */ + { 365, -4 }, /* (177) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ + { 365, -1 }, /* (178) type_name ::= TIMESTAMP */ + { 365, -4 }, /* (179) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ + { 365, -2 }, /* (180) type_name ::= TINYINT UNSIGNED */ + { 365, -2 }, /* (181) type_name ::= SMALLINT UNSIGNED */ + { 365, -2 }, /* (182) type_name ::= INT UNSIGNED */ + { 365, -2 }, /* (183) type_name ::= BIGINT UNSIGNED */ + { 365, -1 }, /* (184) type_name ::= JSON */ + { 365, -4 }, /* (185) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ + { 365, -1 }, /* (186) type_name ::= MEDIUMBLOB */ + { 365, -1 }, /* (187) type_name ::= BLOB */ + { 365, -4 }, /* (188) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ + { 365, -1 }, /* (189) type_name ::= DECIMAL */ + { 365, -4 }, /* (190) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ + { 365, -6 }, /* (191) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ + { 357, 0 }, /* (192) tags_def_opt ::= */ + { 357, -1 }, /* (193) tags_def_opt ::= tags_def */ + { 360, -4 }, /* (194) tags_def ::= TAGS NK_LP column_def_list NK_RP */ + { 358, 0 }, /* (195) table_options ::= */ + { 358, -3 }, /* (196) table_options ::= table_options COMMENT NK_STRING */ + { 358, -3 }, /* (197) table_options ::= table_options MAX_DELAY duration_list */ + { 358, -3 }, /* (198) table_options ::= table_options WATERMARK duration_list */ + { 358, -5 }, /* (199) table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ + { 358, -3 }, /* (200) table_options ::= table_options TTL NK_INTEGER */ + { 358, -5 }, /* (201) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ + { 358, -3 }, /* (202) table_options ::= table_options DELETE_MARK duration_list */ + { 363, -1 }, /* (203) alter_table_options ::= alter_table_option */ + { 363, -2 }, /* (204) alter_table_options ::= alter_table_options alter_table_option */ + { 376, -2 }, /* (205) alter_table_option ::= COMMENT NK_STRING */ + { 376, -2 }, /* (206) alter_table_option ::= TTL NK_INTEGER */ + { 374, -1 }, /* (207) duration_list ::= duration_literal */ + { 374, -3 }, /* (208) duration_list ::= duration_list NK_COMMA duration_literal */ + { 375, -1 }, /* (209) rollup_func_list ::= rollup_func_name */ + { 375, -3 }, /* (210) rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ + { 378, -1 }, /* (211) rollup_func_name ::= function_name */ + { 378, -1 }, /* (212) rollup_func_name ::= FIRST */ + { 378, -1 }, /* (213) rollup_func_name ::= LAST */ + { 371, -1 }, /* (214) col_name_list ::= col_name */ + { 371, -3 }, /* (215) col_name_list ::= col_name_list NK_COMMA col_name */ + { 380, -1 }, /* (216) col_name ::= column_name */ + { 328, -2 }, /* (217) cmd ::= SHOW DNODES */ + { 328, -2 }, /* (218) cmd ::= SHOW USERS */ + { 328, -3 }, /* (219) cmd ::= SHOW USER PRIVILEGES */ + { 328, -2 }, /* (220) cmd ::= SHOW DATABASES */ + { 328, -4 }, /* (221) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ + { 328, -4 }, /* (222) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ + { 328, -3 }, /* (223) cmd ::= SHOW db_name_cond_opt VGROUPS */ + { 328, -2 }, /* (224) cmd ::= SHOW MNODES */ + { 328, -2 }, /* (225) cmd ::= SHOW QNODES */ + { 328, -2 }, /* (226) cmd ::= SHOW FUNCTIONS */ + { 328, -5 }, /* (227) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ + { 328, -2 }, /* (228) cmd ::= SHOW STREAMS */ + { 328, -2 }, /* (229) cmd ::= SHOW ACCOUNTS */ + { 328, -2 }, /* (230) cmd ::= SHOW APPS */ + { 328, -2 }, /* (231) cmd ::= SHOW CONNECTIONS */ + { 328, -2 }, /* (232) cmd ::= SHOW LICENCES */ + { 328, -2 }, /* (233) cmd ::= SHOW GRANTS */ + { 328, -4 }, /* (234) cmd ::= SHOW CREATE DATABASE db_name */ + { 328, -4 }, /* (235) cmd ::= SHOW CREATE TABLE full_table_name */ + { 328, -4 }, /* (236) cmd ::= SHOW CREATE STABLE full_table_name */ + { 328, -2 }, /* (237) cmd ::= SHOW QUERIES */ + { 328, -2 }, /* (238) cmd ::= SHOW SCORES */ + { 328, -2 }, /* (239) cmd ::= SHOW TOPICS */ + { 328, -2 }, /* (240) cmd ::= SHOW VARIABLES */ + { 328, -3 }, /* (241) cmd ::= SHOW CLUSTER VARIABLES */ + { 328, -3 }, /* (242) cmd ::= SHOW LOCAL VARIABLES */ + { 328, -5 }, /* (243) cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ + { 328, -2 }, /* (244) cmd ::= SHOW BNODES */ + { 328, -2 }, /* (245) cmd ::= SHOW SNODES */ + { 328, -2 }, /* (246) cmd ::= SHOW CLUSTER */ + { 328, -2 }, /* (247) cmd ::= SHOW TRANSACTIONS */ + { 328, -4 }, /* (248) cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ + { 328, -2 }, /* (249) cmd ::= SHOW CONSUMERS */ + { 328, -2 }, /* (250) cmd ::= SHOW SUBSCRIPTIONS */ + { 328, -5 }, /* (251) cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ + { 328, -7 }, /* (252) cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ + { 328, -3 }, /* (253) cmd ::= SHOW VNODES NK_INTEGER */ + { 328, -3 }, /* (254) cmd ::= SHOW VNODES NK_STRING */ + { 328, -3 }, /* (255) cmd ::= SHOW db_name_cond_opt ALIVE */ + { 328, -3 }, /* (256) cmd ::= SHOW CLUSTER ALIVE */ + { 381, 0 }, /* (257) db_name_cond_opt ::= */ + { 381, -2 }, /* (258) db_name_cond_opt ::= db_name NK_DOT */ + { 382, 0 }, /* (259) like_pattern_opt ::= */ + { 382, -2 }, /* (260) like_pattern_opt ::= LIKE NK_STRING */ + { 383, -1 }, /* (261) table_name_cond ::= table_name */ + { 384, 0 }, /* (262) from_db_opt ::= */ + { 384, -2 }, /* (263) from_db_opt ::= FROM db_name */ + { 385, 0 }, /* (264) tag_list_opt ::= */ + { 385, -1 }, /* (265) tag_list_opt ::= tag_item */ + { 385, -3 }, /* (266) tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ + { 386, -1 }, /* (267) tag_item ::= TBNAME */ + { 386, -1 }, /* (268) tag_item ::= QTAGS */ + { 386, -1 }, /* (269) tag_item ::= column_name */ + { 386, -2 }, /* (270) tag_item ::= column_name column_alias */ + { 386, -3 }, /* (271) tag_item ::= column_name AS column_alias */ + { 328, -8 }, /* (272) cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ + { 328, -9 }, /* (273) cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ + { 328, -4 }, /* (274) cmd ::= DROP INDEX exists_opt full_index_name */ + { 388, -1 }, /* (275) full_index_name ::= index_name */ + { 388, -3 }, /* (276) full_index_name ::= db_name NK_DOT index_name */ + { 389, -10 }, /* (277) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ + { 389, -12 }, /* (278) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ + { 391, -1 }, /* (279) func_list ::= func */ + { 391, -3 }, /* (280) func_list ::= func_list NK_COMMA func */ + { 394, -4 }, /* (281) func ::= sma_func_name NK_LP expression_list NK_RP */ + { 395, -1 }, /* (282) sma_func_name ::= function_name */ + { 395, -1 }, /* (283) sma_func_name ::= COUNT */ + { 395, -1 }, /* (284) sma_func_name ::= FIRST */ + { 395, -1 }, /* (285) sma_func_name ::= LAST */ + { 395, -1 }, /* (286) sma_func_name ::= LAST_ROW */ + { 393, 0 }, /* (287) sma_stream_opt ::= */ + { 393, -3 }, /* (288) sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ + { 393, -3 }, /* (289) sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ + { 393, -3 }, /* (290) sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ + { 328, -6 }, /* (291) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ + { 328, -7 }, /* (292) cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ + { 328, -9 }, /* (293) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ + { 328, -7 }, /* (294) cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ + { 328, -9 }, /* (295) cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ + { 328, -4 }, /* (296) cmd ::= DROP TOPIC exists_opt topic_name */ + { 328, -7 }, /* (297) cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ + { 328, -2 }, /* (298) cmd ::= DESC full_table_name */ + { 328, -2 }, /* (299) cmd ::= DESCRIBE full_table_name */ + { 328, -3 }, /* (300) cmd ::= RESET QUERY CACHE */ + { 328, -4 }, /* (301) cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ + { 328, -4 }, /* (302) cmd ::= EXPLAIN analyze_opt explain_options insert_query */ + { 398, 0 }, /* (303) analyze_opt ::= */ + { 398, -1 }, /* (304) analyze_opt ::= ANALYZE */ + { 399, 0 }, /* (305) explain_options ::= */ + { 399, -3 }, /* (306) explain_options ::= explain_options VERBOSE NK_BOOL */ + { 399, -3 }, /* (307) explain_options ::= explain_options RATIO NK_FLOAT */ + { 328, -10 }, /* (308) cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ + { 328, -4 }, /* (309) cmd ::= DROP FUNCTION exists_opt function_name */ + { 401, 0 }, /* (310) agg_func_opt ::= */ + { 401, -1 }, /* (311) agg_func_opt ::= AGGREGATE */ + { 402, 0 }, /* (312) bufsize_opt ::= */ + { 402, -2 }, /* (313) bufsize_opt ::= BUFSIZE NK_INTEGER */ + { 328, -12 }, /* (314) cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ + { 328, -4 }, /* (315) cmd ::= DROP STREAM exists_opt stream_name */ + { 405, 0 }, /* (316) col_list_opt ::= */ + { 405, -3 }, /* (317) col_list_opt ::= NK_LP col_name_list NK_RP */ + { 406, 0 }, /* (318) tag_def_or_ref_opt ::= */ + { 406, -1 }, /* (319) tag_def_or_ref_opt ::= tags_def */ + { 406, -4 }, /* (320) tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ + { 404, 0 }, /* (321) stream_options ::= */ + { 404, -3 }, /* (322) stream_options ::= stream_options TRIGGER AT_ONCE */ + { 404, -3 }, /* (323) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ + { 404, -4 }, /* (324) stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ + { 404, -3 }, /* (325) stream_options ::= stream_options WATERMARK duration_literal */ + { 404, -4 }, /* (326) stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ + { 404, -3 }, /* (327) stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ + { 404, -3 }, /* (328) stream_options ::= stream_options DELETE_MARK duration_literal */ + { 404, -4 }, /* (329) stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ + { 407, 0 }, /* (330) subtable_opt ::= */ + { 407, -4 }, /* (331) subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ + { 328, -3 }, /* (332) cmd ::= KILL CONNECTION NK_INTEGER */ + { 328, -3 }, /* (333) cmd ::= KILL QUERY NK_STRING */ + { 328, -3 }, /* (334) cmd ::= KILL TRANSACTION NK_INTEGER */ + { 328, -2 }, /* (335) cmd ::= BALANCE VGROUP */ + { 328, -4 }, /* (336) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ + { 328, -4 }, /* (337) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ + { 328, -3 }, /* (338) cmd ::= SPLIT VGROUP NK_INTEGER */ + { 409, -2 }, /* (339) dnode_list ::= DNODE NK_INTEGER */ + { 409, -3 }, /* (340) dnode_list ::= dnode_list DNODE NK_INTEGER */ + { 328, -4 }, /* (341) cmd ::= DELETE FROM full_table_name where_clause_opt */ + { 328, -1 }, /* (342) cmd ::= query_or_subquery */ + { 328, -1 }, /* (343) cmd ::= insert_query */ + { 400, -7 }, /* (344) insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ + { 400, -4 }, /* (345) insert_query ::= INSERT INTO full_table_name query_or_subquery */ + { 331, -1 }, /* (346) literal ::= NK_INTEGER */ + { 331, -1 }, /* (347) literal ::= NK_FLOAT */ + { 331, -1 }, /* (348) literal ::= NK_STRING */ + { 331, -1 }, /* (349) literal ::= NK_BOOL */ + { 331, -2 }, /* (350) literal ::= TIMESTAMP NK_STRING */ + { 331, -1 }, /* (351) literal ::= duration_literal */ + { 331, -1 }, /* (352) literal ::= NULL */ + { 331, -1 }, /* (353) literal ::= NK_QUESTION */ + { 377, -1 }, /* (354) duration_literal ::= NK_VARIABLE */ + { 411, -1 }, /* (355) signed ::= NK_INTEGER */ + { 411, -2 }, /* (356) signed ::= NK_PLUS NK_INTEGER */ + { 411, -2 }, /* (357) signed ::= NK_MINUS NK_INTEGER */ + { 411, -1 }, /* (358) signed ::= NK_FLOAT */ + { 411, -2 }, /* (359) signed ::= NK_PLUS NK_FLOAT */ + { 411, -2 }, /* (360) signed ::= NK_MINUS NK_FLOAT */ + { 366, -1 }, /* (361) signed_literal ::= signed */ + { 366, -1 }, /* (362) signed_literal ::= NK_STRING */ + { 366, -1 }, /* (363) signed_literal ::= NK_BOOL */ + { 366, -2 }, /* (364) signed_literal ::= TIMESTAMP NK_STRING */ + { 366, -1 }, /* (365) signed_literal ::= duration_literal */ + { 366, -1 }, /* (366) signed_literal ::= NULL */ + { 366, -1 }, /* (367) signed_literal ::= literal_func */ + { 366, -1 }, /* (368) signed_literal ::= NK_QUESTION */ + { 413, -1 }, /* (369) literal_list ::= signed_literal */ + { 413, -3 }, /* (370) literal_list ::= literal_list NK_COMMA signed_literal */ + { 339, -1 }, /* (371) db_name ::= NK_ID */ + { 372, -1 }, /* (372) table_name ::= NK_ID */ + { 364, -1 }, /* (373) column_name ::= NK_ID */ + { 379, -1 }, /* (374) function_name ::= NK_ID */ + { 414, -1 }, /* (375) table_alias ::= NK_ID */ + { 387, -1 }, /* (376) column_alias ::= NK_ID */ + { 333, -1 }, /* (377) user_name ::= NK_ID */ + { 340, -1 }, /* (378) topic_name ::= NK_ID */ + { 403, -1 }, /* (379) stream_name ::= NK_ID */ + { 397, -1 }, /* (380) cgroup_name ::= NK_ID */ + { 390, -1 }, /* (381) index_name ::= NK_ID */ + { 415, -1 }, /* (382) expr_or_subquery ::= expression */ + { 408, -1 }, /* (383) expression ::= literal */ + { 408, -1 }, /* (384) expression ::= pseudo_column */ + { 408, -1 }, /* (385) expression ::= column_reference */ + { 408, -1 }, /* (386) expression ::= function_expression */ + { 408, -1 }, /* (387) expression ::= case_when_expression */ + { 408, -3 }, /* (388) expression ::= NK_LP expression NK_RP */ + { 408, -2 }, /* (389) expression ::= NK_PLUS expr_or_subquery */ + { 408, -2 }, /* (390) expression ::= NK_MINUS expr_or_subquery */ + { 408, -3 }, /* (391) expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ + { 408, -3 }, /* (392) expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ + { 408, -3 }, /* (393) expression ::= expr_or_subquery NK_STAR expr_or_subquery */ + { 408, -3 }, /* (394) expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ + { 408, -3 }, /* (395) expression ::= expr_or_subquery NK_REM expr_or_subquery */ + { 408, -3 }, /* (396) expression ::= column_reference NK_ARROW NK_STRING */ + { 408, -3 }, /* (397) expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ + { 408, -3 }, /* (398) expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ + { 369, -1 }, /* (399) expression_list ::= expr_or_subquery */ + { 369, -3 }, /* (400) expression_list ::= expression_list NK_COMMA expr_or_subquery */ + { 417, -1 }, /* (401) column_reference ::= column_name */ + { 417, -3 }, /* (402) column_reference ::= table_name NK_DOT column_name */ + { 416, -1 }, /* (403) pseudo_column ::= ROWTS */ + { 416, -1 }, /* (404) pseudo_column ::= TBNAME */ + { 416, -3 }, /* (405) pseudo_column ::= table_name NK_DOT TBNAME */ + { 416, -1 }, /* (406) pseudo_column ::= QSTART */ + { 416, -1 }, /* (407) pseudo_column ::= QEND */ + { 416, -1 }, /* (408) pseudo_column ::= QDURATION */ + { 416, -1 }, /* (409) pseudo_column ::= WSTART */ + { 416, -1 }, /* (410) pseudo_column ::= WEND */ + { 416, -1 }, /* (411) pseudo_column ::= WDURATION */ + { 416, -1 }, /* (412) pseudo_column ::= IROWTS */ + { 416, -1 }, /* (413) pseudo_column ::= ISFILLED */ + { 416, -1 }, /* (414) pseudo_column ::= QTAGS */ + { 418, -4 }, /* (415) function_expression ::= function_name NK_LP expression_list NK_RP */ + { 418, -4 }, /* (416) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ + { 418, -6 }, /* (417) function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ + { 418, -1 }, /* (418) function_expression ::= literal_func */ + { 412, -3 }, /* (419) literal_func ::= noarg_func NK_LP NK_RP */ + { 412, -1 }, /* (420) literal_func ::= NOW */ + { 422, -1 }, /* (421) noarg_func ::= NOW */ + { 422, -1 }, /* (422) noarg_func ::= TODAY */ + { 422, -1 }, /* (423) noarg_func ::= TIMEZONE */ + { 422, -1 }, /* (424) noarg_func ::= DATABASE */ + { 422, -1 }, /* (425) noarg_func ::= CLIENT_VERSION */ + { 422, -1 }, /* (426) noarg_func ::= SERVER_VERSION */ + { 422, -1 }, /* (427) noarg_func ::= SERVER_STATUS */ + { 422, -1 }, /* (428) noarg_func ::= CURRENT_USER */ + { 422, -1 }, /* (429) noarg_func ::= USER */ + { 420, -1 }, /* (430) star_func ::= COUNT */ + { 420, -1 }, /* (431) star_func ::= FIRST */ + { 420, -1 }, /* (432) star_func ::= LAST */ + { 420, -1 }, /* (433) star_func ::= LAST_ROW */ + { 421, -1 }, /* (434) star_func_para_list ::= NK_STAR */ + { 421, -1 }, /* (435) star_func_para_list ::= other_para_list */ + { 423, -1 }, /* (436) other_para_list ::= star_func_para */ + { 423, -3 }, /* (437) other_para_list ::= other_para_list NK_COMMA star_func_para */ + { 424, -1 }, /* (438) star_func_para ::= expr_or_subquery */ + { 424, -3 }, /* (439) star_func_para ::= table_name NK_DOT NK_STAR */ + { 419, -4 }, /* (440) case_when_expression ::= CASE when_then_list case_when_else_opt END */ + { 419, -5 }, /* (441) case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ + { 425, -1 }, /* (442) when_then_list ::= when_then_expr */ + { 425, -2 }, /* (443) when_then_list ::= when_then_list when_then_expr */ + { 428, -4 }, /* (444) when_then_expr ::= WHEN common_expression THEN common_expression */ + { 426, 0 }, /* (445) case_when_else_opt ::= */ + { 426, -2 }, /* (446) case_when_else_opt ::= ELSE common_expression */ + { 429, -3 }, /* (447) predicate ::= expr_or_subquery compare_op expr_or_subquery */ + { 429, -5 }, /* (448) predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ + { 429, -6 }, /* (449) predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ + { 429, -3 }, /* (450) predicate ::= expr_or_subquery IS NULL */ + { 429, -4 }, /* (451) predicate ::= expr_or_subquery IS NOT NULL */ + { 429, -3 }, /* (452) predicate ::= expr_or_subquery in_op in_predicate_value */ + { 430, -1 }, /* (453) compare_op ::= NK_LT */ + { 430, -1 }, /* (454) compare_op ::= NK_GT */ + { 430, -1 }, /* (455) compare_op ::= NK_LE */ + { 430, -1 }, /* (456) compare_op ::= NK_GE */ + { 430, -1 }, /* (457) compare_op ::= NK_NE */ + { 430, -1 }, /* (458) compare_op ::= NK_EQ */ + { 430, -1 }, /* (459) compare_op ::= LIKE */ + { 430, -2 }, /* (460) compare_op ::= NOT LIKE */ + { 430, -1 }, /* (461) compare_op ::= MATCH */ + { 430, -1 }, /* (462) compare_op ::= NMATCH */ + { 430, -1 }, /* (463) compare_op ::= CONTAINS */ + { 431, -1 }, /* (464) in_op ::= IN */ + { 431, -2 }, /* (465) in_op ::= NOT IN */ + { 432, -3 }, /* (466) in_predicate_value ::= NK_LP literal_list NK_RP */ + { 433, -1 }, /* (467) boolean_value_expression ::= boolean_primary */ + { 433, -2 }, /* (468) boolean_value_expression ::= NOT boolean_primary */ + { 433, -3 }, /* (469) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ + { 433, -3 }, /* (470) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ + { 434, -1 }, /* (471) boolean_primary ::= predicate */ + { 434, -3 }, /* (472) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ + { 427, -1 }, /* (473) common_expression ::= expr_or_subquery */ + { 427, -1 }, /* (474) common_expression ::= boolean_value_expression */ + { 435, 0 }, /* (475) from_clause_opt ::= */ + { 435, -2 }, /* (476) from_clause_opt ::= FROM table_reference_list */ + { 436, -1 }, /* (477) table_reference_list ::= table_reference */ + { 436, -3 }, /* (478) table_reference_list ::= table_reference_list NK_COMMA table_reference */ + { 437, -1 }, /* (479) table_reference ::= table_primary */ + { 437, -1 }, /* (480) table_reference ::= joined_table */ + { 438, -2 }, /* (481) table_primary ::= table_name alias_opt */ + { 438, -4 }, /* (482) table_primary ::= db_name NK_DOT table_name alias_opt */ + { 438, -2 }, /* (483) table_primary ::= subquery alias_opt */ + { 438, -1 }, /* (484) table_primary ::= parenthesized_joined_table */ + { 440, 0 }, /* (485) alias_opt ::= */ + { 440, -1 }, /* (486) alias_opt ::= table_alias */ + { 440, -2 }, /* (487) alias_opt ::= AS table_alias */ + { 442, -3 }, /* (488) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ + { 442, -3 }, /* (489) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ + { 439, -6 }, /* (490) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ + { 443, 0 }, /* (491) join_type ::= */ + { 443, -1 }, /* (492) join_type ::= INNER */ + { 445, -12 }, /* (493) query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ + { 446, 0 }, /* (494) set_quantifier_opt ::= */ + { 446, -1 }, /* (495) set_quantifier_opt ::= DISTINCT */ + { 446, -1 }, /* (496) set_quantifier_opt ::= ALL */ + { 447, -1 }, /* (497) select_list ::= select_item */ + { 447, -3 }, /* (498) select_list ::= select_list NK_COMMA select_item */ + { 455, -1 }, /* (499) select_item ::= NK_STAR */ + { 455, -1 }, /* (500) select_item ::= common_expression */ + { 455, -2 }, /* (501) select_item ::= common_expression column_alias */ + { 455, -3 }, /* (502) select_item ::= common_expression AS column_alias */ + { 455, -3 }, /* (503) select_item ::= table_name NK_DOT NK_STAR */ + { 410, 0 }, /* (504) where_clause_opt ::= */ + { 410, -2 }, /* (505) where_clause_opt ::= WHERE search_condition */ + { 448, 0 }, /* (506) partition_by_clause_opt ::= */ + { 448, -3 }, /* (507) partition_by_clause_opt ::= PARTITION BY partition_list */ + { 456, -1 }, /* (508) partition_list ::= partition_item */ + { 456, -3 }, /* (509) partition_list ::= partition_list NK_COMMA partition_item */ + { 457, -1 }, /* (510) partition_item ::= expr_or_subquery */ + { 457, -2 }, /* (511) partition_item ::= expr_or_subquery column_alias */ + { 457, -3 }, /* (512) partition_item ::= expr_or_subquery AS column_alias */ + { 452, 0 }, /* (513) twindow_clause_opt ::= */ + { 452, -6 }, /* (514) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ + { 452, -4 }, /* (515) twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ + { 452, -6 }, /* (516) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ + { 452, -8 }, /* (517) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ + { 452, -7 }, /* (518) twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ + { 392, 0 }, /* (519) sliding_opt ::= */ + { 392, -4 }, /* (520) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ + { 451, 0 }, /* (521) fill_opt ::= */ + { 451, -4 }, /* (522) fill_opt ::= FILL NK_LP fill_mode NK_RP */ + { 451, -6 }, /* (523) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ + { 451, -6 }, /* (524) fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ + { 458, -1 }, /* (525) fill_mode ::= NONE */ + { 458, -1 }, /* (526) fill_mode ::= PREV */ + { 458, -1 }, /* (527) fill_mode ::= NULL */ + { 458, -1 }, /* (528) fill_mode ::= NULL_F */ + { 458, -1 }, /* (529) fill_mode ::= LINEAR */ + { 458, -1 }, /* (530) fill_mode ::= NEXT */ + { 453, 0 }, /* (531) group_by_clause_opt ::= */ + { 453, -3 }, /* (532) group_by_clause_opt ::= GROUP BY group_by_list */ + { 459, -1 }, /* (533) group_by_list ::= expr_or_subquery */ + { 459, -3 }, /* (534) group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ + { 454, 0 }, /* (535) having_clause_opt ::= */ + { 454, -2 }, /* (536) having_clause_opt ::= HAVING search_condition */ + { 449, 0 }, /* (537) range_opt ::= */ + { 449, -6 }, /* (538) range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ + { 450, 0 }, /* (539) every_opt ::= */ + { 450, -4 }, /* (540) every_opt ::= EVERY NK_LP duration_literal NK_RP */ + { 460, -4 }, /* (541) query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ + { 461, -1 }, /* (542) query_simple ::= query_specification */ + { 461, -1 }, /* (543) query_simple ::= union_query_expression */ + { 465, -4 }, /* (544) union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ + { 465, -3 }, /* (545) union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ + { 466, -1 }, /* (546) query_simple_or_subquery ::= query_simple */ + { 466, -1 }, /* (547) query_simple_or_subquery ::= subquery */ + { 396, -1 }, /* (548) query_or_subquery ::= query_expression */ + { 396, -1 }, /* (549) query_or_subquery ::= subquery */ + { 462, 0 }, /* (550) order_by_clause_opt ::= */ + { 462, -3 }, /* (551) order_by_clause_opt ::= ORDER BY sort_specification_list */ + { 463, 0 }, /* (552) slimit_clause_opt ::= */ + { 463, -2 }, /* (553) slimit_clause_opt ::= SLIMIT NK_INTEGER */ + { 463, -4 }, /* (554) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ + { 463, -4 }, /* (555) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + { 464, 0 }, /* (556) limit_clause_opt ::= */ + { 464, -2 }, /* (557) limit_clause_opt ::= LIMIT NK_INTEGER */ + { 464, -4 }, /* (558) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ + { 464, -4 }, /* (559) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + { 441, -3 }, /* (560) subquery ::= NK_LP query_expression NK_RP */ + { 441, -3 }, /* (561) subquery ::= NK_LP subquery NK_RP */ + { 444, -1 }, /* (562) search_condition ::= common_expression */ + { 467, -1 }, /* (563) sort_specification_list ::= sort_specification */ + { 467, -3 }, /* (564) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ + { 468, -3 }, /* (565) sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ + { 469, 0 }, /* (566) ordering_specification_opt ::= */ + { 469, -1 }, /* (567) ordering_specification_opt ::= ASC */ + { 469, -1 }, /* (568) ordering_specification_opt ::= DESC */ + { 470, 0 }, /* (569) null_ordering_opt ::= */ + { 470, -2 }, /* (570) null_ordering_opt ::= NULLS FIRST */ + { 470, -2 }, /* (571) null_ordering_opt ::= NULLS LAST */ }; static void yy_accept(yyParser*); /* Forward Declaration */ @@ -3814,8 +3816,8 @@ static YYACTIONTYPE yy_reduce( yymsp[-2].minor.yy881 = yylhsminor.yy881; break; case 42: /* priv_level ::= topic_name */ - case 281: /* sma_func_name ::= function_name */ yytestcase(yyruleno==281); - case 485: /* alias_opt ::= table_alias */ yytestcase(yyruleno==485); + case 282: /* sma_func_name ::= function_name */ yytestcase(yyruleno==282); + case 486: /* alias_opt ::= table_alias */ yytestcase(yyruleno==486); { yylhsminor.yy881 = yymsp[0].minor.yy881; } yymsp[0].minor.yy881 = yylhsminor.yy881; break; @@ -3846,49 +3848,49 @@ static YYACTIONTYPE yy_reduce( case 51: /* dnode_endpoint ::= NK_STRING */ case 52: /* dnode_endpoint ::= NK_ID */ yytestcase(yyruleno==52); case 53: /* dnode_endpoint ::= NK_IPTOKEN */ yytestcase(yyruleno==53); - case 282: /* sma_func_name ::= COUNT */ yytestcase(yyruleno==282); - case 283: /* sma_func_name ::= FIRST */ yytestcase(yyruleno==283); - case 284: /* sma_func_name ::= LAST */ yytestcase(yyruleno==284); - case 285: /* sma_func_name ::= LAST_ROW */ yytestcase(yyruleno==285); - case 370: /* db_name ::= NK_ID */ yytestcase(yyruleno==370); - case 371: /* table_name ::= NK_ID */ yytestcase(yyruleno==371); - case 372: /* column_name ::= NK_ID */ yytestcase(yyruleno==372); - case 373: /* function_name ::= NK_ID */ yytestcase(yyruleno==373); - case 374: /* table_alias ::= NK_ID */ yytestcase(yyruleno==374); - case 375: /* column_alias ::= NK_ID */ yytestcase(yyruleno==375); - case 376: /* user_name ::= NK_ID */ yytestcase(yyruleno==376); - case 377: /* topic_name ::= NK_ID */ yytestcase(yyruleno==377); - case 378: /* stream_name ::= NK_ID */ yytestcase(yyruleno==378); - case 379: /* cgroup_name ::= NK_ID */ yytestcase(yyruleno==379); - case 380: /* index_name ::= NK_ID */ yytestcase(yyruleno==380); - case 420: /* noarg_func ::= NOW */ yytestcase(yyruleno==420); - case 421: /* noarg_func ::= TODAY */ yytestcase(yyruleno==421); - case 422: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==422); - case 423: /* noarg_func ::= DATABASE */ yytestcase(yyruleno==423); - case 424: /* noarg_func ::= CLIENT_VERSION */ yytestcase(yyruleno==424); - case 425: /* noarg_func ::= SERVER_VERSION */ yytestcase(yyruleno==425); - case 426: /* noarg_func ::= SERVER_STATUS */ yytestcase(yyruleno==426); - case 427: /* noarg_func ::= CURRENT_USER */ yytestcase(yyruleno==427); - case 428: /* noarg_func ::= USER */ yytestcase(yyruleno==428); - case 429: /* star_func ::= COUNT */ yytestcase(yyruleno==429); - case 430: /* star_func ::= FIRST */ yytestcase(yyruleno==430); - case 431: /* star_func ::= LAST */ yytestcase(yyruleno==431); - case 432: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==432); + case 283: /* sma_func_name ::= COUNT */ yytestcase(yyruleno==283); + case 284: /* sma_func_name ::= FIRST */ yytestcase(yyruleno==284); + case 285: /* sma_func_name ::= LAST */ yytestcase(yyruleno==285); + case 286: /* sma_func_name ::= LAST_ROW */ yytestcase(yyruleno==286); + case 371: /* db_name ::= NK_ID */ yytestcase(yyruleno==371); + case 372: /* table_name ::= NK_ID */ yytestcase(yyruleno==372); + case 373: /* column_name ::= NK_ID */ yytestcase(yyruleno==373); + case 374: /* function_name ::= NK_ID */ yytestcase(yyruleno==374); + case 375: /* table_alias ::= NK_ID */ yytestcase(yyruleno==375); + case 376: /* column_alias ::= NK_ID */ yytestcase(yyruleno==376); + case 377: /* user_name ::= NK_ID */ yytestcase(yyruleno==377); + case 378: /* topic_name ::= NK_ID */ yytestcase(yyruleno==378); + case 379: /* stream_name ::= NK_ID */ yytestcase(yyruleno==379); + case 380: /* cgroup_name ::= NK_ID */ yytestcase(yyruleno==380); + case 381: /* index_name ::= NK_ID */ yytestcase(yyruleno==381); + case 421: /* noarg_func ::= NOW */ yytestcase(yyruleno==421); + case 422: /* noarg_func ::= TODAY */ yytestcase(yyruleno==422); + case 423: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==423); + case 424: /* noarg_func ::= DATABASE */ yytestcase(yyruleno==424); + case 425: /* noarg_func ::= CLIENT_VERSION */ yytestcase(yyruleno==425); + case 426: /* noarg_func ::= SERVER_VERSION */ yytestcase(yyruleno==426); + case 427: /* noarg_func ::= SERVER_STATUS */ yytestcase(yyruleno==427); + case 428: /* noarg_func ::= CURRENT_USER */ yytestcase(yyruleno==428); + case 429: /* noarg_func ::= USER */ yytestcase(yyruleno==429); + case 430: /* star_func ::= COUNT */ yytestcase(yyruleno==430); + case 431: /* star_func ::= FIRST */ yytestcase(yyruleno==431); + case 432: /* star_func ::= LAST */ yytestcase(yyruleno==432); + case 433: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==433); { yylhsminor.yy881 = yymsp[0].minor.yy0; } yymsp[0].minor.yy881 = yylhsminor.yy881; break; case 54: /* force_opt ::= */ case 74: /* not_exists_opt ::= */ yytestcase(yyruleno==74); case 76: /* exists_opt ::= */ yytestcase(yyruleno==76); - case 302: /* analyze_opt ::= */ yytestcase(yyruleno==302); - case 309: /* agg_func_opt ::= */ yytestcase(yyruleno==309); - case 493: /* set_quantifier_opt ::= */ yytestcase(yyruleno==493); + case 303: /* analyze_opt ::= */ yytestcase(yyruleno==303); + case 310: /* agg_func_opt ::= */ yytestcase(yyruleno==310); + case 494: /* set_quantifier_opt ::= */ yytestcase(yyruleno==494); { yymsp[1].minor.yy587 = false; } break; case 55: /* force_opt ::= FORCE */ - case 303: /* analyze_opt ::= ANALYZE */ yytestcase(yyruleno==303); - case 310: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==310); - case 494: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==494); + case 304: /* analyze_opt ::= ANALYZE */ yytestcase(yyruleno==304); + case 311: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==311); + case 495: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==495); { yymsp[0].minor.yy587 = true; } break; case 56: /* cmd ::= ALTER LOCAL NK_STRING */ @@ -4109,722 +4111,725 @@ static YYACTIONTYPE yy_reduce( case 119: /* alter_db_option ::= STT_TRIGGER NK_INTEGER */ { yymsp[-1].minor.yy809.type = DB_OPTION_STT_TRIGGER; yymsp[-1].minor.yy809.val = yymsp[0].minor.yy0; } break; - case 120: /* integer_list ::= NK_INTEGER */ + case 120: /* alter_db_option ::= MINROWS NK_INTEGER */ +{ yymsp[-1].minor.yy809.type = DB_OPTION_MINROWS; yymsp[-1].minor.yy809.val = yymsp[0].minor.yy0; } + break; + case 121: /* integer_list ::= NK_INTEGER */ { yylhsminor.yy220 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 121: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ - case 339: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==339); + case 122: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ + case 340: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==340); { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-2].minor.yy220, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy220 = yylhsminor.yy220; break; - case 122: /* variable_list ::= NK_VARIABLE */ + case 123: /* variable_list ::= NK_VARIABLE */ { yylhsminor.yy220 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 123: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ + case 124: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-2].minor.yy220, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy220 = yylhsminor.yy220; break; - case 124: /* retention_list ::= retention */ - case 154: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==154); - case 157: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==157); - case 164: /* column_def_list ::= column_def */ yytestcase(yyruleno==164); - case 208: /* rollup_func_list ::= rollup_func_name */ yytestcase(yyruleno==208); - case 213: /* col_name_list ::= col_name */ yytestcase(yyruleno==213); - case 264: /* tag_list_opt ::= tag_item */ yytestcase(yyruleno==264); - case 278: /* func_list ::= func */ yytestcase(yyruleno==278); - case 368: /* literal_list ::= signed_literal */ yytestcase(yyruleno==368); - case 435: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==435); - case 441: /* when_then_list ::= when_then_expr */ yytestcase(yyruleno==441); - case 496: /* select_list ::= select_item */ yytestcase(yyruleno==496); - case 507: /* partition_list ::= partition_item */ yytestcase(yyruleno==507); - case 562: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==562); + case 125: /* retention_list ::= retention */ + case 155: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==155); + case 158: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==158); + case 165: /* column_def_list ::= column_def */ yytestcase(yyruleno==165); + case 209: /* rollup_func_list ::= rollup_func_name */ yytestcase(yyruleno==209); + case 214: /* col_name_list ::= col_name */ yytestcase(yyruleno==214); + case 265: /* tag_list_opt ::= tag_item */ yytestcase(yyruleno==265); + case 279: /* func_list ::= func */ yytestcase(yyruleno==279); + case 369: /* literal_list ::= signed_literal */ yytestcase(yyruleno==369); + case 436: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==436); + case 442: /* when_then_list ::= when_then_expr */ yytestcase(yyruleno==442); + case 497: /* select_list ::= select_item */ yytestcase(yyruleno==497); + case 508: /* partition_list ::= partition_item */ yytestcase(yyruleno==508); + case 563: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==563); { yylhsminor.yy220 = createNodeList(pCxt, yymsp[0].minor.yy140); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 125: /* retention_list ::= retention_list NK_COMMA retention */ - case 158: /* multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ yytestcase(yyruleno==158); - case 165: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==165); - case 209: /* rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ yytestcase(yyruleno==209); - case 214: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==214); - case 265: /* tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ yytestcase(yyruleno==265); - case 279: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==279); - case 369: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==369); - case 436: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==436); - case 497: /* select_list ::= select_list NK_COMMA select_item */ yytestcase(yyruleno==497); - case 508: /* partition_list ::= partition_list NK_COMMA partition_item */ yytestcase(yyruleno==508); - case 563: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==563); + case 126: /* retention_list ::= retention_list NK_COMMA retention */ + case 159: /* multi_drop_clause ::= multi_drop_clause NK_COMMA drop_table_clause */ yytestcase(yyruleno==159); + case 166: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==166); + case 210: /* rollup_func_list ::= rollup_func_list NK_COMMA rollup_func_name */ yytestcase(yyruleno==210); + case 215: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==215); + case 266: /* tag_list_opt ::= tag_list_opt NK_COMMA tag_item */ yytestcase(yyruleno==266); + case 280: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==280); + case 370: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==370); + case 437: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==437); + case 498: /* select_list ::= select_list NK_COMMA select_item */ yytestcase(yyruleno==498); + case 509: /* partition_list ::= partition_list NK_COMMA partition_item */ yytestcase(yyruleno==509); + case 564: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==564); { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-2].minor.yy220, yymsp[0].minor.yy140); } yymsp[-2].minor.yy220 = yylhsminor.yy220; break; - case 126: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ + case 127: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ { yylhsminor.yy140 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 127: /* speed_opt ::= */ - case 311: /* bufsize_opt ::= */ yytestcase(yyruleno==311); + case 128: /* speed_opt ::= */ + case 312: /* bufsize_opt ::= */ yytestcase(yyruleno==312); { yymsp[1].minor.yy214 = 0; } break; - case 128: /* speed_opt ::= MAX_SPEED NK_INTEGER */ - case 312: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ yytestcase(yyruleno==312); + case 129: /* speed_opt ::= MAX_SPEED NK_INTEGER */ + case 313: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ yytestcase(yyruleno==313); { yymsp[-1].minor.yy214 = taosStr2Int32(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 129: /* start_opt ::= */ - case 133: /* end_opt ::= */ yytestcase(yyruleno==133); - case 258: /* like_pattern_opt ::= */ yytestcase(yyruleno==258); - case 329: /* subtable_opt ::= */ yytestcase(yyruleno==329); - case 444: /* case_when_else_opt ::= */ yytestcase(yyruleno==444); - case 474: /* from_clause_opt ::= */ yytestcase(yyruleno==474); - case 503: /* where_clause_opt ::= */ yytestcase(yyruleno==503); - case 512: /* twindow_clause_opt ::= */ yytestcase(yyruleno==512); - case 518: /* sliding_opt ::= */ yytestcase(yyruleno==518); - case 520: /* fill_opt ::= */ yytestcase(yyruleno==520); - case 534: /* having_clause_opt ::= */ yytestcase(yyruleno==534); - case 536: /* range_opt ::= */ yytestcase(yyruleno==536); - case 538: /* every_opt ::= */ yytestcase(yyruleno==538); - case 551: /* slimit_clause_opt ::= */ yytestcase(yyruleno==551); - case 555: /* limit_clause_opt ::= */ yytestcase(yyruleno==555); + case 130: /* start_opt ::= */ + case 134: /* end_opt ::= */ yytestcase(yyruleno==134); + case 259: /* like_pattern_opt ::= */ yytestcase(yyruleno==259); + case 330: /* subtable_opt ::= */ yytestcase(yyruleno==330); + case 445: /* case_when_else_opt ::= */ yytestcase(yyruleno==445); + case 475: /* from_clause_opt ::= */ yytestcase(yyruleno==475); + case 504: /* where_clause_opt ::= */ yytestcase(yyruleno==504); + case 513: /* twindow_clause_opt ::= */ yytestcase(yyruleno==513); + case 519: /* sliding_opt ::= */ yytestcase(yyruleno==519); + case 521: /* fill_opt ::= */ yytestcase(yyruleno==521); + case 535: /* having_clause_opt ::= */ yytestcase(yyruleno==535); + case 537: /* range_opt ::= */ yytestcase(yyruleno==537); + case 539: /* every_opt ::= */ yytestcase(yyruleno==539); + case 552: /* slimit_clause_opt ::= */ yytestcase(yyruleno==552); + case 556: /* limit_clause_opt ::= */ yytestcase(yyruleno==556); { yymsp[1].minor.yy140 = NULL; } break; - case 130: /* start_opt ::= START WITH NK_INTEGER */ - case 134: /* end_opt ::= END WITH NK_INTEGER */ yytestcase(yyruleno==134); + case 131: /* start_opt ::= START WITH NK_INTEGER */ + case 135: /* end_opt ::= END WITH NK_INTEGER */ yytestcase(yyruleno==135); { yymsp[-2].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; - case 131: /* start_opt ::= START WITH NK_STRING */ - case 135: /* end_opt ::= END WITH NK_STRING */ yytestcase(yyruleno==135); + case 132: /* start_opt ::= START WITH NK_STRING */ + case 136: /* end_opt ::= END WITH NK_STRING */ yytestcase(yyruleno==136); { yymsp[-2].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; - case 132: /* start_opt ::= START WITH TIMESTAMP NK_STRING */ - case 136: /* end_opt ::= END WITH TIMESTAMP NK_STRING */ yytestcase(yyruleno==136); + case 133: /* start_opt ::= START WITH TIMESTAMP NK_STRING */ + case 137: /* end_opt ::= END WITH TIMESTAMP NK_STRING */ yytestcase(yyruleno==137); { yymsp[-3].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; - case 137: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ - case 139: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==139); + case 138: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ + case 140: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==140); { pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy587, yymsp[-5].minor.yy140, yymsp[-3].minor.yy220, yymsp[-1].minor.yy220, yymsp[0].minor.yy140); } break; - case 138: /* cmd ::= CREATE TABLE multi_create_clause */ + case 139: /* cmd ::= CREATE TABLE multi_create_clause */ { pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy220); } break; - case 140: /* cmd ::= DROP TABLE multi_drop_clause */ + case 141: /* cmd ::= DROP TABLE multi_drop_clause */ { pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy220); } break; - case 141: /* cmd ::= DROP STABLE exists_opt full_table_name */ + case 142: /* cmd ::= DROP STABLE exists_opt full_table_name */ { pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy587, yymsp[0].minor.yy140); } break; - case 142: /* cmd ::= ALTER TABLE alter_table_clause */ - case 341: /* cmd ::= query_or_subquery */ yytestcase(yyruleno==341); - case 342: /* cmd ::= insert_query */ yytestcase(yyruleno==342); + case 143: /* cmd ::= ALTER TABLE alter_table_clause */ + case 342: /* cmd ::= query_or_subquery */ yytestcase(yyruleno==342); + case 343: /* cmd ::= insert_query */ yytestcase(yyruleno==343); { pCxt->pRootNode = yymsp[0].minor.yy140; } break; - case 143: /* cmd ::= ALTER STABLE alter_table_clause */ + case 144: /* cmd ::= ALTER STABLE alter_table_clause */ { pCxt->pRootNode = setAlterSuperTableType(yymsp[0].minor.yy140); } break; - case 144: /* alter_table_clause ::= full_table_name alter_table_options */ + case 145: /* alter_table_clause ::= full_table_name alter_table_options */ { yylhsminor.yy140 = createAlterTableModifyOptions(pCxt, yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 145: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ + case 146: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ { yylhsminor.yy140 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy881, yymsp[0].minor.yy682); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 146: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ + case 147: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ { yylhsminor.yy140 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy140, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy881); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 147: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ + case 148: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ { yylhsminor.yy140 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy881, yymsp[0].minor.yy682); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 148: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ + case 149: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ { yylhsminor.yy140 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy881, &yymsp[0].minor.yy881); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 149: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ + case 150: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ { yylhsminor.yy140 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy881, yymsp[0].minor.yy682); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 150: /* alter_table_clause ::= full_table_name DROP TAG column_name */ + case 151: /* alter_table_clause ::= full_table_name DROP TAG column_name */ { yylhsminor.yy140 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy140, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy881); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 151: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ + case 152: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ { yylhsminor.yy140 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy881, yymsp[0].minor.yy682); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 152: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ + case 153: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ { yylhsminor.yy140 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy140, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy881, &yymsp[0].minor.yy881); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 153: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ + case 154: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ signed_literal */ { yylhsminor.yy140 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy140, &yymsp[-2].minor.yy881, yymsp[0].minor.yy140); } yymsp[-5].minor.yy140 = yylhsminor.yy140; break; - case 155: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ - case 442: /* when_then_list ::= when_then_list when_then_expr */ yytestcase(yyruleno==442); + case 156: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ + case 443: /* when_then_list ::= when_then_list when_then_expr */ yytestcase(yyruleno==443); { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-1].minor.yy220, yymsp[0].minor.yy140); } yymsp[-1].minor.yy220 = yylhsminor.yy220; break; - case 156: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ + case 157: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_cols_opt TAGS NK_LP expression_list NK_RP table_options */ { yylhsminor.yy140 = createCreateSubTableClause(pCxt, yymsp[-9].minor.yy587, yymsp[-8].minor.yy140, yymsp[-6].minor.yy140, yymsp[-5].minor.yy220, yymsp[-2].minor.yy220, yymsp[0].minor.yy140); } yymsp[-9].minor.yy140 = yylhsminor.yy140; break; - case 159: /* drop_table_clause ::= exists_opt full_table_name */ + case 160: /* drop_table_clause ::= exists_opt full_table_name */ { yylhsminor.yy140 = createDropTableClause(pCxt, yymsp[-1].minor.yy587, yymsp[0].minor.yy140); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 160: /* specific_cols_opt ::= */ - case 191: /* tags_def_opt ::= */ yytestcase(yyruleno==191); - case 263: /* tag_list_opt ::= */ yytestcase(yyruleno==263); - case 315: /* col_list_opt ::= */ yytestcase(yyruleno==315); - case 317: /* tag_def_or_ref_opt ::= */ yytestcase(yyruleno==317); - case 505: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==505); - case 530: /* group_by_clause_opt ::= */ yytestcase(yyruleno==530); - case 549: /* order_by_clause_opt ::= */ yytestcase(yyruleno==549); + case 161: /* specific_cols_opt ::= */ + case 192: /* tags_def_opt ::= */ yytestcase(yyruleno==192); + case 264: /* tag_list_opt ::= */ yytestcase(yyruleno==264); + case 316: /* col_list_opt ::= */ yytestcase(yyruleno==316); + case 318: /* tag_def_or_ref_opt ::= */ yytestcase(yyruleno==318); + case 506: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==506); + case 531: /* group_by_clause_opt ::= */ yytestcase(yyruleno==531); + case 550: /* order_by_clause_opt ::= */ yytestcase(yyruleno==550); { yymsp[1].minor.yy220 = NULL; } break; - case 161: /* specific_cols_opt ::= NK_LP col_name_list NK_RP */ - case 316: /* col_list_opt ::= NK_LP col_name_list NK_RP */ yytestcase(yyruleno==316); + case 162: /* specific_cols_opt ::= NK_LP col_name_list NK_RP */ + case 317: /* col_list_opt ::= NK_LP col_name_list NK_RP */ yytestcase(yyruleno==317); { yymsp[-2].minor.yy220 = yymsp[-1].minor.yy220; } break; - case 162: /* full_table_name ::= table_name */ + case 163: /* full_table_name ::= table_name */ { yylhsminor.yy140 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy881, NULL); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 163: /* full_table_name ::= db_name NK_DOT table_name */ + case 164: /* full_table_name ::= db_name NK_DOT table_name */ { yylhsminor.yy140 = createRealTableNode(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy881, NULL); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 166: /* column_def ::= column_name type_name */ + case 167: /* column_def ::= column_name type_name */ { yylhsminor.yy140 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy881, yymsp[0].minor.yy682, NULL); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 167: /* column_def ::= column_name type_name COMMENT NK_STRING */ + case 168: /* column_def ::= column_name type_name COMMENT NK_STRING */ { yylhsminor.yy140 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy881, yymsp[-2].minor.yy682, &yymsp[0].minor.yy0); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 168: /* type_name ::= BOOL */ + case 169: /* type_name ::= BOOL */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_BOOL); } break; - case 169: /* type_name ::= TINYINT */ + case 170: /* type_name ::= TINYINT */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_TINYINT); } break; - case 170: /* type_name ::= SMALLINT */ + case 171: /* type_name ::= SMALLINT */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_SMALLINT); } break; - case 171: /* type_name ::= INT */ - case 172: /* type_name ::= INTEGER */ yytestcase(yyruleno==172); + case 172: /* type_name ::= INT */ + case 173: /* type_name ::= INTEGER */ yytestcase(yyruleno==173); { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_INT); } break; - case 173: /* type_name ::= BIGINT */ + case 174: /* type_name ::= BIGINT */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_BIGINT); } break; - case 174: /* type_name ::= FLOAT */ + case 175: /* type_name ::= FLOAT */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_FLOAT); } break; - case 175: /* type_name ::= DOUBLE */ + case 176: /* type_name ::= DOUBLE */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_DOUBLE); } break; - case 176: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ + case 177: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy682 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } break; - case 177: /* type_name ::= TIMESTAMP */ + case 178: /* type_name ::= TIMESTAMP */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } break; - case 178: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ + case 179: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy682 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } break; - case 179: /* type_name ::= TINYINT UNSIGNED */ + case 180: /* type_name ::= TINYINT UNSIGNED */ { yymsp[-1].minor.yy682 = createDataType(TSDB_DATA_TYPE_UTINYINT); } break; - case 180: /* type_name ::= SMALLINT UNSIGNED */ + case 181: /* type_name ::= SMALLINT UNSIGNED */ { yymsp[-1].minor.yy682 = createDataType(TSDB_DATA_TYPE_USMALLINT); } break; - case 181: /* type_name ::= INT UNSIGNED */ + case 182: /* type_name ::= INT UNSIGNED */ { yymsp[-1].minor.yy682 = createDataType(TSDB_DATA_TYPE_UINT); } break; - case 182: /* type_name ::= BIGINT UNSIGNED */ + case 183: /* type_name ::= BIGINT UNSIGNED */ { yymsp[-1].minor.yy682 = createDataType(TSDB_DATA_TYPE_UBIGINT); } break; - case 183: /* type_name ::= JSON */ + case 184: /* type_name ::= JSON */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_JSON); } break; - case 184: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ + case 185: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy682 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } break; - case 185: /* type_name ::= MEDIUMBLOB */ + case 186: /* type_name ::= MEDIUMBLOB */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } break; - case 186: /* type_name ::= BLOB */ + case 187: /* type_name ::= BLOB */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_BLOB); } break; - case 187: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ + case 188: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy682 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } break; - case 188: /* type_name ::= DECIMAL */ + case 189: /* type_name ::= DECIMAL */ { yymsp[0].minor.yy682 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 189: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ + case 190: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ { yymsp[-3].minor.yy682 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 190: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ + case 191: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ { yymsp[-5].minor.yy682 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 192: /* tags_def_opt ::= tags_def */ - case 318: /* tag_def_or_ref_opt ::= tags_def */ yytestcase(yyruleno==318); - case 434: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==434); + case 193: /* tags_def_opt ::= tags_def */ + case 319: /* tag_def_or_ref_opt ::= tags_def */ yytestcase(yyruleno==319); + case 435: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==435); { yylhsminor.yy220 = yymsp[0].minor.yy220; } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 193: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ - case 319: /* tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ yytestcase(yyruleno==319); + case 194: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ + case 320: /* tag_def_or_ref_opt ::= TAGS NK_LP col_name_list NK_RP */ yytestcase(yyruleno==320); { yymsp[-3].minor.yy220 = yymsp[-1].minor.yy220; } break; - case 194: /* table_options ::= */ + case 195: /* table_options ::= */ { yymsp[1].minor.yy140 = createDefaultTableOptions(pCxt); } break; - case 195: /* table_options ::= table_options COMMENT NK_STRING */ + case 196: /* table_options ::= table_options COMMENT NK_STRING */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-2].minor.yy140, TABLE_OPTION_COMMENT, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 196: /* table_options ::= table_options MAX_DELAY duration_list */ + case 197: /* table_options ::= table_options MAX_DELAY duration_list */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-2].minor.yy140, TABLE_OPTION_MAXDELAY, yymsp[0].minor.yy220); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 197: /* table_options ::= table_options WATERMARK duration_list */ + case 198: /* table_options ::= table_options WATERMARK duration_list */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-2].minor.yy140, TABLE_OPTION_WATERMARK, yymsp[0].minor.yy220); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 198: /* table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ + case 199: /* table_options ::= table_options ROLLUP NK_LP rollup_func_list NK_RP */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-4].minor.yy140, TABLE_OPTION_ROLLUP, yymsp[-1].minor.yy220); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 199: /* table_options ::= table_options TTL NK_INTEGER */ + case 200: /* table_options ::= table_options TTL NK_INTEGER */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-2].minor.yy140, TABLE_OPTION_TTL, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 200: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ + case 201: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-4].minor.yy140, TABLE_OPTION_SMA, yymsp[-1].minor.yy220); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 201: /* table_options ::= table_options DELETE_MARK duration_list */ + case 202: /* table_options ::= table_options DELETE_MARK duration_list */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-2].minor.yy140, TABLE_OPTION_DELETE_MARK, yymsp[0].minor.yy220); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 202: /* alter_table_options ::= alter_table_option */ + case 203: /* alter_table_options ::= alter_table_option */ { yylhsminor.yy140 = createAlterTableOptions(pCxt); yylhsminor.yy140 = setTableOption(pCxt, yylhsminor.yy140, yymsp[0].minor.yy809.type, &yymsp[0].minor.yy809.val); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 203: /* alter_table_options ::= alter_table_options alter_table_option */ + case 204: /* alter_table_options ::= alter_table_options alter_table_option */ { yylhsminor.yy140 = setTableOption(pCxt, yymsp[-1].minor.yy140, yymsp[0].minor.yy809.type, &yymsp[0].minor.yy809.val); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 204: /* alter_table_option ::= COMMENT NK_STRING */ + case 205: /* alter_table_option ::= COMMENT NK_STRING */ { yymsp[-1].minor.yy809.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy809.val = yymsp[0].minor.yy0; } break; - case 205: /* alter_table_option ::= TTL NK_INTEGER */ + case 206: /* alter_table_option ::= TTL NK_INTEGER */ { yymsp[-1].minor.yy809.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy809.val = yymsp[0].minor.yy0; } break; - case 206: /* duration_list ::= duration_literal */ - case 398: /* expression_list ::= expr_or_subquery */ yytestcase(yyruleno==398); + case 207: /* duration_list ::= duration_literal */ + case 399: /* expression_list ::= expr_or_subquery */ yytestcase(yyruleno==399); { yylhsminor.yy220 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 207: /* duration_list ::= duration_list NK_COMMA duration_literal */ - case 399: /* expression_list ::= expression_list NK_COMMA expr_or_subquery */ yytestcase(yyruleno==399); + case 208: /* duration_list ::= duration_list NK_COMMA duration_literal */ + case 400: /* expression_list ::= expression_list NK_COMMA expr_or_subquery */ yytestcase(yyruleno==400); { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-2].minor.yy220, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[-2].minor.yy220 = yylhsminor.yy220; break; - case 210: /* rollup_func_name ::= function_name */ + case 211: /* rollup_func_name ::= function_name */ { yylhsminor.yy140 = createFunctionNode(pCxt, &yymsp[0].minor.yy881, NULL); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 211: /* rollup_func_name ::= FIRST */ - case 212: /* rollup_func_name ::= LAST */ yytestcase(yyruleno==212); - case 267: /* tag_item ::= QTAGS */ yytestcase(yyruleno==267); + case 212: /* rollup_func_name ::= FIRST */ + case 213: /* rollup_func_name ::= LAST */ yytestcase(yyruleno==213); + case 268: /* tag_item ::= QTAGS */ yytestcase(yyruleno==268); { yylhsminor.yy140 = createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 215: /* col_name ::= column_name */ - case 268: /* tag_item ::= column_name */ yytestcase(yyruleno==268); + case 216: /* col_name ::= column_name */ + case 269: /* tag_item ::= column_name */ yytestcase(yyruleno==269); { yylhsminor.yy140 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy881); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 216: /* cmd ::= SHOW DNODES */ + case 217: /* cmd ::= SHOW DNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT); } break; - case 217: /* cmd ::= SHOW USERS */ + case 218: /* cmd ::= SHOW USERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT); } break; - case 218: /* cmd ::= SHOW USER PRIVILEGES */ + case 219: /* cmd ::= SHOW USER PRIVILEGES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USER_PRIVILEGES_STMT); } break; - case 219: /* cmd ::= SHOW DATABASES */ + case 220: /* cmd ::= SHOW DATABASES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT); } break; - case 220: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ + case 221: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy140, yymsp[0].minor.yy140, OP_TYPE_LIKE); } break; - case 221: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ + case 222: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy140, yymsp[0].minor.yy140, OP_TYPE_LIKE); } break; - case 222: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ + case 223: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy140, NULL, OP_TYPE_LIKE); } break; - case 223: /* cmd ::= SHOW MNODES */ + case 224: /* cmd ::= SHOW MNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT); } break; - case 224: /* cmd ::= SHOW QNODES */ + case 225: /* cmd ::= SHOW QNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT); } break; - case 225: /* cmd ::= SHOW FUNCTIONS */ + case 226: /* cmd ::= SHOW FUNCTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT); } break; - case 226: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ + case 227: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[0].minor.yy140, yymsp[-1].minor.yy140, OP_TYPE_EQUAL); } break; - case 227: /* cmd ::= SHOW STREAMS */ + case 228: /* cmd ::= SHOW STREAMS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT); } break; - case 228: /* cmd ::= SHOW ACCOUNTS */ + case 229: /* cmd ::= SHOW ACCOUNTS */ { pCxt->errCode = generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } break; - case 229: /* cmd ::= SHOW APPS */ + case 230: /* cmd ::= SHOW APPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT); } break; - case 230: /* cmd ::= SHOW CONNECTIONS */ + case 231: /* cmd ::= SHOW CONNECTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT); } break; - case 231: /* cmd ::= SHOW LICENCES */ - case 232: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==232); + case 232: /* cmd ::= SHOW LICENCES */ + case 233: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==233); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCES_STMT); } break; - case 233: /* cmd ::= SHOW CREATE DATABASE db_name */ + case 234: /* cmd ::= SHOW CREATE DATABASE db_name */ { pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy881); } break; - case 234: /* cmd ::= SHOW CREATE TABLE full_table_name */ + case 235: /* cmd ::= SHOW CREATE TABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy140); } break; - case 235: /* cmd ::= SHOW CREATE STABLE full_table_name */ + case 236: /* cmd ::= SHOW CREATE STABLE full_table_name */ { pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy140); } break; - case 236: /* cmd ::= SHOW QUERIES */ + case 237: /* cmd ::= SHOW QUERIES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT); } break; - case 237: /* cmd ::= SHOW SCORES */ + case 238: /* cmd ::= SHOW SCORES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT); } break; - case 238: /* cmd ::= SHOW TOPICS */ + case 239: /* cmd ::= SHOW TOPICS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT); } break; - case 239: /* cmd ::= SHOW VARIABLES */ - case 240: /* cmd ::= SHOW CLUSTER VARIABLES */ yytestcase(yyruleno==240); + case 240: /* cmd ::= SHOW VARIABLES */ + case 241: /* cmd ::= SHOW CLUSTER VARIABLES */ yytestcase(yyruleno==241); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLES_STMT); } break; - case 241: /* cmd ::= SHOW LOCAL VARIABLES */ + case 242: /* cmd ::= SHOW LOCAL VARIABLES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LOCAL_VARIABLES_STMT); } break; - case 242: /* cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ + case 243: /* cmd ::= SHOW DNODE NK_INTEGER VARIABLES like_pattern_opt */ { pCxt->pRootNode = createShowDnodeVariablesStmt(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[-2].minor.yy0), yymsp[0].minor.yy140); } break; - case 243: /* cmd ::= SHOW BNODES */ + case 244: /* cmd ::= SHOW BNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT); } break; - case 244: /* cmd ::= SHOW SNODES */ + case 245: /* cmd ::= SHOW SNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT); } break; - case 245: /* cmd ::= SHOW CLUSTER */ + case 246: /* cmd ::= SHOW CLUSTER */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CLUSTER_STMT); } break; - case 246: /* cmd ::= SHOW TRANSACTIONS */ + case 247: /* cmd ::= SHOW TRANSACTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TRANSACTIONS_STMT); } break; - case 247: /* cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ + case 248: /* cmd ::= SHOW TABLE DISTRIBUTED full_table_name */ { pCxt->pRootNode = createShowTableDistributedStmt(pCxt, yymsp[0].minor.yy140); } break; - case 248: /* cmd ::= SHOW CONSUMERS */ + case 249: /* cmd ::= SHOW CONSUMERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONSUMERS_STMT); } break; - case 249: /* cmd ::= SHOW SUBSCRIPTIONS */ + case 250: /* cmd ::= SHOW SUBSCRIPTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SUBSCRIPTIONS_STMT); } break; - case 250: /* cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ + case 251: /* cmd ::= SHOW TAGS FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowStmtWithCond(pCxt, QUERY_NODE_SHOW_TAGS_STMT, yymsp[0].minor.yy140, yymsp[-1].minor.yy140, OP_TYPE_EQUAL); } break; - case 251: /* cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ + case 252: /* cmd ::= SHOW TABLE TAGS tag_list_opt FROM table_name_cond from_db_opt */ { pCxt->pRootNode = createShowTableTagsStmt(pCxt, yymsp[-1].minor.yy140, yymsp[0].minor.yy140, yymsp[-3].minor.yy220); } break; - case 252: /* cmd ::= SHOW VNODES NK_INTEGER */ + case 253: /* cmd ::= SHOW VNODES NK_INTEGER */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0), NULL); } break; - case 253: /* cmd ::= SHOW VNODES NK_STRING */ + case 254: /* cmd ::= SHOW VNODES NK_STRING */ { pCxt->pRootNode = createShowVnodesStmt(pCxt, NULL, createValueNode(pCxt, TSDB_DATA_TYPE_VARCHAR, &yymsp[0].minor.yy0)); } break; - case 254: /* cmd ::= SHOW db_name_cond_opt ALIVE */ + case 255: /* cmd ::= SHOW db_name_cond_opt ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, yymsp[-1].minor.yy140, QUERY_NODE_SHOW_DB_ALIVE_STMT); } break; - case 255: /* cmd ::= SHOW CLUSTER ALIVE */ + case 256: /* cmd ::= SHOW CLUSTER ALIVE */ { pCxt->pRootNode = createShowAliveStmt(pCxt, NULL, QUERY_NODE_SHOW_CLUSTER_ALIVE_STMT); } break; - case 256: /* db_name_cond_opt ::= */ - case 261: /* from_db_opt ::= */ yytestcase(yyruleno==261); + case 257: /* db_name_cond_opt ::= */ + case 262: /* from_db_opt ::= */ yytestcase(yyruleno==262); { yymsp[1].minor.yy140 = createDefaultDatabaseCondValue(pCxt); } break; - case 257: /* db_name_cond_opt ::= db_name NK_DOT */ + case 258: /* db_name_cond_opt ::= db_name NK_DOT */ { yylhsminor.yy140 = createIdentifierValueNode(pCxt, &yymsp[-1].minor.yy881); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 259: /* like_pattern_opt ::= LIKE NK_STRING */ + case 260: /* like_pattern_opt ::= LIKE NK_STRING */ { yymsp[-1].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; - case 260: /* table_name_cond ::= table_name */ + case 261: /* table_name_cond ::= table_name */ { yylhsminor.yy140 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy881); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 262: /* from_db_opt ::= FROM db_name */ + case 263: /* from_db_opt ::= FROM db_name */ { yymsp[-1].minor.yy140 = createIdentifierValueNode(pCxt, &yymsp[0].minor.yy881); } break; - case 266: /* tag_item ::= TBNAME */ + case 267: /* tag_item ::= TBNAME */ { yylhsminor.yy140 = setProjectionAlias(pCxt, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL), &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 269: /* tag_item ::= column_name column_alias */ + case 270: /* tag_item ::= column_name column_alias */ { yylhsminor.yy140 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-1].minor.yy881), &yymsp[0].minor.yy881); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 270: /* tag_item ::= column_name AS column_alias */ + case 271: /* tag_item ::= column_name AS column_alias */ { yylhsminor.yy140 = setProjectionAlias(pCxt, createColumnNode(pCxt, NULL, &yymsp[-2].minor.yy881), &yymsp[0].minor.yy881); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 271: /* cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ + case 272: /* cmd ::= CREATE SMA INDEX not_exists_opt full_index_name ON full_table_name index_options */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy587, yymsp[-3].minor.yy140, yymsp[-1].minor.yy140, NULL, yymsp[0].minor.yy140); } break; - case 272: /* cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ + case 273: /* cmd ::= CREATE INDEX not_exists_opt full_index_name ON full_table_name NK_LP col_name_list NK_RP */ { pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_NORMAL, yymsp[-6].minor.yy587, yymsp[-5].minor.yy140, yymsp[-3].minor.yy140, yymsp[-1].minor.yy220, NULL); } break; - case 273: /* cmd ::= DROP INDEX exists_opt full_index_name */ + case 274: /* cmd ::= DROP INDEX exists_opt full_index_name */ { pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-1].minor.yy587, yymsp[0].minor.yy140); } break; - case 274: /* full_index_name ::= index_name */ + case 275: /* full_index_name ::= index_name */ { yylhsminor.yy140 = createRealTableNodeForIndexName(pCxt, NULL, &yymsp[0].minor.yy881); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 275: /* full_index_name ::= db_name NK_DOT index_name */ + case 276: /* full_index_name ::= db_name NK_DOT index_name */ { yylhsminor.yy140 = createRealTableNodeForIndexName(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy881); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 276: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ + case 277: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt sma_stream_opt */ { yymsp[-9].minor.yy140 = createIndexOption(pCxt, yymsp[-7].minor.yy220, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), NULL, yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 277: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ + case 278: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt sma_stream_opt */ { yymsp[-11].minor.yy140 = createIndexOption(pCxt, yymsp[-9].minor.yy220, releaseRawExprNode(pCxt, yymsp[-5].minor.yy140), releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 280: /* func ::= sma_func_name NK_LP expression_list NK_RP */ + case 281: /* func ::= sma_func_name NK_LP expression_list NK_RP */ { yylhsminor.yy140 = createFunctionNode(pCxt, &yymsp[-3].minor.yy881, yymsp[-1].minor.yy220); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 286: /* sma_stream_opt ::= */ - case 320: /* stream_options ::= */ yytestcase(yyruleno==320); + case 287: /* sma_stream_opt ::= */ + case 321: /* stream_options ::= */ yytestcase(yyruleno==321); { yymsp[1].minor.yy140 = createStreamOptions(pCxt); } break; - case 287: /* sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ + case 288: /* sma_stream_opt ::= sma_stream_opt WATERMARK duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy140)->pWatermark = releaseRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = yymsp[-2].minor.yy140; } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 288: /* sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ + case 289: /* sma_stream_opt ::= sma_stream_opt MAX_DELAY duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy140)->pDelay = releaseRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = yymsp[-2].minor.yy140; } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 289: /* sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ + case 290: /* sma_stream_opt ::= sma_stream_opt DELETE_MARK duration_literal */ { ((SStreamOptions*)yymsp[-2].minor.yy140)->pDeleteMark = releaseRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = yymsp[-2].minor.yy140; } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 290: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ + case 291: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_or_subquery */ { pCxt->pRootNode = createCreateTopicStmtUseQuery(pCxt, yymsp[-3].minor.yy587, &yymsp[-2].minor.yy881, yymsp[0].minor.yy140); } break; - case 291: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ + case 292: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-4].minor.yy587, &yymsp[-3].minor.yy881, &yymsp[0].minor.yy881, false); } break; - case 292: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ + case 293: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS DATABASE db_name */ { pCxt->pRootNode = createCreateTopicStmtUseDb(pCxt, yymsp[-6].minor.yy587, &yymsp[-5].minor.yy881, &yymsp[0].minor.yy881, true); } break; - case 293: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ + case 294: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-4].minor.yy587, &yymsp[-3].minor.yy881, yymsp[0].minor.yy140, false); } break; - case 294: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ + case 295: /* cmd ::= CREATE TOPIC not_exists_opt topic_name WITH META AS STABLE full_table_name */ { pCxt->pRootNode = createCreateTopicStmtUseTable(pCxt, yymsp[-6].minor.yy587, &yymsp[-5].minor.yy881, yymsp[0].minor.yy140, true); } break; - case 295: /* cmd ::= DROP TOPIC exists_opt topic_name */ + case 296: /* cmd ::= DROP TOPIC exists_opt topic_name */ { pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy587, &yymsp[0].minor.yy881); } break; - case 296: /* cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ + case 297: /* cmd ::= DROP CONSUMER GROUP exists_opt cgroup_name ON topic_name */ { pCxt->pRootNode = createDropCGroupStmt(pCxt, yymsp[-3].minor.yy587, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy881); } break; - case 297: /* cmd ::= DESC full_table_name */ - case 298: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==298); + case 298: /* cmd ::= DESC full_table_name */ + case 299: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==299); { pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy140); } break; - case 299: /* cmd ::= RESET QUERY CACHE */ + case 300: /* cmd ::= RESET QUERY CACHE */ { pCxt->pRootNode = createResetQueryCacheStmt(pCxt); } break; - case 300: /* cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ - case 301: /* cmd ::= EXPLAIN analyze_opt explain_options insert_query */ yytestcase(yyruleno==301); + case 301: /* cmd ::= EXPLAIN analyze_opt explain_options query_or_subquery */ + case 302: /* cmd ::= EXPLAIN analyze_opt explain_options insert_query */ yytestcase(yyruleno==302); { pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy587, yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 304: /* explain_options ::= */ + case 305: /* explain_options ::= */ { yymsp[1].minor.yy140 = createDefaultExplainOptions(pCxt); } break; - case 305: /* explain_options ::= explain_options VERBOSE NK_BOOL */ + case 306: /* explain_options ::= explain_options VERBOSE NK_BOOL */ { yylhsminor.yy140 = setExplainVerbose(pCxt, yymsp[-2].minor.yy140, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 306: /* explain_options ::= explain_options RATIO NK_FLOAT */ + case 307: /* explain_options ::= explain_options RATIO NK_FLOAT */ { yylhsminor.yy140 = setExplainRatio(pCxt, yymsp[-2].minor.yy140, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 307: /* cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ + case 308: /* cmd ::= CREATE agg_func_opt FUNCTION not_exists_opt function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ { pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-6].minor.yy587, yymsp[-8].minor.yy587, &yymsp[-5].minor.yy881, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy682, yymsp[0].minor.yy214); } break; - case 308: /* cmd ::= DROP FUNCTION exists_opt function_name */ + case 309: /* cmd ::= DROP FUNCTION exists_opt function_name */ { pCxt->pRootNode = createDropFunctionStmt(pCxt, yymsp[-1].minor.yy587, &yymsp[0].minor.yy881); } break; - case 313: /* cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ + case 314: /* cmd ::= CREATE STREAM not_exists_opt stream_name stream_options INTO full_table_name col_list_opt tag_def_or_ref_opt subtable_opt AS query_or_subquery */ { pCxt->pRootNode = createCreateStreamStmt(pCxt, yymsp[-9].minor.yy587, &yymsp[-8].minor.yy881, yymsp[-5].minor.yy140, yymsp[-7].minor.yy140, yymsp[-3].minor.yy220, yymsp[-2].minor.yy140, yymsp[0].minor.yy140, yymsp[-4].minor.yy220); } break; - case 314: /* cmd ::= DROP STREAM exists_opt stream_name */ + case 315: /* cmd ::= DROP STREAM exists_opt stream_name */ { pCxt->pRootNode = createDropStreamStmt(pCxt, yymsp[-1].minor.yy587, &yymsp[0].minor.yy881); } break; - case 321: /* stream_options ::= stream_options TRIGGER AT_ONCE */ - case 322: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ yytestcase(yyruleno==322); + case 322: /* stream_options ::= stream_options TRIGGER AT_ONCE */ + case 323: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ yytestcase(yyruleno==323); { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-2].minor.yy140, SOPT_TRIGGER_TYPE_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 323: /* stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ + case 324: /* stream_options ::= stream_options TRIGGER MAX_DELAY duration_literal */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-3].minor.yy140, SOPT_TRIGGER_TYPE_SET, &yymsp[-1].minor.yy0, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 324: /* stream_options ::= stream_options WATERMARK duration_literal */ + case 325: /* stream_options ::= stream_options WATERMARK duration_literal */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-2].minor.yy140, SOPT_WATERMARK_SET, NULL, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 325: /* stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ + case 326: /* stream_options ::= stream_options IGNORE EXPIRED NK_INTEGER */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-3].minor.yy140, SOPT_IGNORE_EXPIRED_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 326: /* stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ + case 327: /* stream_options ::= stream_options FILL_HISTORY NK_INTEGER */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-2].minor.yy140, SOPT_FILL_HISTORY_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 327: /* stream_options ::= stream_options DELETE_MARK duration_literal */ + case 328: /* stream_options ::= stream_options DELETE_MARK duration_literal */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-2].minor.yy140, SOPT_DELETE_MARK_SET, NULL, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 328: /* stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ + case 329: /* stream_options ::= stream_options IGNORE UPDATE NK_INTEGER */ { yylhsminor.yy140 = setStreamOptions(pCxt, yymsp[-3].minor.yy140, SOPT_IGNORE_UPDATE_SET, &yymsp[0].minor.yy0, NULL); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 330: /* subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ - case 519: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ yytestcase(yyruleno==519); - case 539: /* every_opt ::= EVERY NK_LP duration_literal NK_RP */ yytestcase(yyruleno==539); + case 331: /* subtable_opt ::= SUBTABLE NK_LP expression NK_RP */ + case 520: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ yytestcase(yyruleno==520); + case 540: /* every_opt ::= EVERY NK_LP duration_literal NK_RP */ yytestcase(yyruleno==540); { yymsp[-3].minor.yy140 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy140); } break; - case 331: /* cmd ::= KILL CONNECTION NK_INTEGER */ + case 332: /* cmd ::= KILL CONNECTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); } break; - case 332: /* cmd ::= KILL QUERY NK_STRING */ + case 333: /* cmd ::= KILL QUERY NK_STRING */ { pCxt->pRootNode = createKillQueryStmt(pCxt, &yymsp[0].minor.yy0); } break; - case 333: /* cmd ::= KILL TRANSACTION NK_INTEGER */ + case 334: /* cmd ::= KILL TRANSACTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_TRANSACTION_STMT, &yymsp[0].minor.yy0); } break; - case 334: /* cmd ::= BALANCE VGROUP */ + case 335: /* cmd ::= BALANCE VGROUP */ { pCxt->pRootNode = createBalanceVgroupStmt(pCxt); } break; - case 335: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ + case 336: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; - case 336: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ + case 337: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ { pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy220); } break; - case 337: /* cmd ::= SPLIT VGROUP NK_INTEGER */ + case 338: /* cmd ::= SPLIT VGROUP NK_INTEGER */ { pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); } break; - case 338: /* dnode_list ::= DNODE NK_INTEGER */ + case 339: /* dnode_list ::= DNODE NK_INTEGER */ { yymsp[-1].minor.yy220 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } break; - case 340: /* cmd ::= DELETE FROM full_table_name where_clause_opt */ + case 341: /* cmd ::= DELETE FROM full_table_name where_clause_opt */ { pCxt->pRootNode = createDeleteStmt(pCxt, yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 343: /* insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ + case 344: /* insert_query ::= INSERT INTO full_table_name NK_LP col_name_list NK_RP query_or_subquery */ { yymsp[-6].minor.yy140 = createInsertStmt(pCxt, yymsp[-4].minor.yy140, yymsp[-2].minor.yy220, yymsp[0].minor.yy140); } break; - case 344: /* insert_query ::= INSERT INTO full_table_name query_or_subquery */ + case 345: /* insert_query ::= INSERT INTO full_table_name query_or_subquery */ { yymsp[-3].minor.yy140 = createInsertStmt(pCxt, yymsp[-1].minor.yy140, NULL, yymsp[0].minor.yy140); } break; - case 345: /* literal ::= NK_INTEGER */ + case 346: /* literal ::= NK_INTEGER */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 346: /* literal ::= NK_FLOAT */ + case 347: /* literal ::= NK_FLOAT */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 347: /* literal ::= NK_STRING */ + case 348: /* literal ::= NK_STRING */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 348: /* literal ::= NK_BOOL */ + case 349: /* literal ::= NK_BOOL */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 349: /* literal ::= TIMESTAMP NK_STRING */ + case 350: /* literal ::= TIMESTAMP NK_STRING */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 350: /* literal ::= duration_literal */ - case 360: /* signed_literal ::= signed */ yytestcase(yyruleno==360); - case 381: /* expr_or_subquery ::= expression */ yytestcase(yyruleno==381); - case 382: /* expression ::= literal */ yytestcase(yyruleno==382); - case 383: /* expression ::= pseudo_column */ yytestcase(yyruleno==383); - case 384: /* expression ::= column_reference */ yytestcase(yyruleno==384); - case 385: /* expression ::= function_expression */ yytestcase(yyruleno==385); - case 386: /* expression ::= case_when_expression */ yytestcase(yyruleno==386); - case 417: /* function_expression ::= literal_func */ yytestcase(yyruleno==417); - case 466: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==466); - case 470: /* boolean_primary ::= predicate */ yytestcase(yyruleno==470); - case 472: /* common_expression ::= expr_or_subquery */ yytestcase(yyruleno==472); - case 473: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==473); - case 476: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==476); - case 478: /* table_reference ::= table_primary */ yytestcase(yyruleno==478); - case 479: /* table_reference ::= joined_table */ yytestcase(yyruleno==479); - case 483: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==483); - case 541: /* query_simple ::= query_specification */ yytestcase(yyruleno==541); - case 542: /* query_simple ::= union_query_expression */ yytestcase(yyruleno==542); - case 545: /* query_simple_or_subquery ::= query_simple */ yytestcase(yyruleno==545); - case 547: /* query_or_subquery ::= query_expression */ yytestcase(yyruleno==547); + case 351: /* literal ::= duration_literal */ + case 361: /* signed_literal ::= signed */ yytestcase(yyruleno==361); + case 382: /* expr_or_subquery ::= expression */ yytestcase(yyruleno==382); + case 383: /* expression ::= literal */ yytestcase(yyruleno==383); + case 384: /* expression ::= pseudo_column */ yytestcase(yyruleno==384); + case 385: /* expression ::= column_reference */ yytestcase(yyruleno==385); + case 386: /* expression ::= function_expression */ yytestcase(yyruleno==386); + case 387: /* expression ::= case_when_expression */ yytestcase(yyruleno==387); + case 418: /* function_expression ::= literal_func */ yytestcase(yyruleno==418); + case 467: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==467); + case 471: /* boolean_primary ::= predicate */ yytestcase(yyruleno==471); + case 473: /* common_expression ::= expr_or_subquery */ yytestcase(yyruleno==473); + case 474: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==474); + case 477: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==477); + case 479: /* table_reference ::= table_primary */ yytestcase(yyruleno==479); + case 480: /* table_reference ::= joined_table */ yytestcase(yyruleno==480); + case 484: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==484); + case 542: /* query_simple ::= query_specification */ yytestcase(yyruleno==542); + case 543: /* query_simple ::= union_query_expression */ yytestcase(yyruleno==543); + case 546: /* query_simple_or_subquery ::= query_simple */ yytestcase(yyruleno==546); + case 548: /* query_or_subquery ::= query_expression */ yytestcase(yyruleno==548); { yylhsminor.yy140 = yymsp[0].minor.yy140; } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 351: /* literal ::= NULL */ + case 352: /* literal ::= NULL */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 352: /* literal ::= NK_QUESTION */ + case 353: /* literal ::= NK_QUESTION */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 353: /* duration_literal ::= NK_VARIABLE */ + case 354: /* duration_literal ::= NK_VARIABLE */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 354: /* signed ::= NK_INTEGER */ + case 355: /* signed ::= NK_INTEGER */ { yylhsminor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 355: /* signed ::= NK_PLUS NK_INTEGER */ + case 356: /* signed ::= NK_PLUS NK_INTEGER */ { yymsp[-1].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_UBIGINT, &yymsp[0].minor.yy0); } break; - case 356: /* signed ::= NK_MINUS NK_INTEGER */ + case 357: /* 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; @@ -4832,14 +4837,14 @@ static YYACTIONTYPE yy_reduce( } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 357: /* signed ::= NK_FLOAT */ + case 358: /* signed ::= NK_FLOAT */ { yylhsminor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 358: /* signed ::= NK_PLUS NK_FLOAT */ + case 359: /* signed ::= NK_PLUS NK_FLOAT */ { yymsp[-1].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } break; - case 359: /* signed ::= NK_MINUS NK_FLOAT */ + case 360: /* 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; @@ -4847,57 +4852,57 @@ static YYACTIONTYPE yy_reduce( } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 361: /* signed_literal ::= NK_STRING */ + case 362: /* signed_literal ::= NK_STRING */ { yylhsminor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 362: /* signed_literal ::= NK_BOOL */ + case 363: /* signed_literal ::= NK_BOOL */ { yylhsminor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 363: /* signed_literal ::= TIMESTAMP NK_STRING */ + case 364: /* signed_literal ::= TIMESTAMP NK_STRING */ { yymsp[-1].minor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; - case 364: /* signed_literal ::= duration_literal */ - case 366: /* signed_literal ::= literal_func */ yytestcase(yyruleno==366); - case 437: /* star_func_para ::= expr_or_subquery */ yytestcase(yyruleno==437); - case 499: /* select_item ::= common_expression */ yytestcase(yyruleno==499); - case 509: /* partition_item ::= expr_or_subquery */ yytestcase(yyruleno==509); - case 546: /* query_simple_or_subquery ::= subquery */ yytestcase(yyruleno==546); - case 548: /* query_or_subquery ::= subquery */ yytestcase(yyruleno==548); - case 561: /* search_condition ::= common_expression */ yytestcase(yyruleno==561); + case 365: /* signed_literal ::= duration_literal */ + case 367: /* signed_literal ::= literal_func */ yytestcase(yyruleno==367); + case 438: /* star_func_para ::= expr_or_subquery */ yytestcase(yyruleno==438); + case 500: /* select_item ::= common_expression */ yytestcase(yyruleno==500); + case 510: /* partition_item ::= expr_or_subquery */ yytestcase(yyruleno==510); + case 547: /* query_simple_or_subquery ::= subquery */ yytestcase(yyruleno==547); + case 549: /* query_or_subquery ::= subquery */ yytestcase(yyruleno==549); + case 562: /* search_condition ::= common_expression */ yytestcase(yyruleno==562); { yylhsminor.yy140 = releaseRawExprNode(pCxt, yymsp[0].minor.yy140); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 365: /* signed_literal ::= NULL */ + case 366: /* signed_literal ::= NULL */ { yylhsminor.yy140 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 367: /* signed_literal ::= NK_QUESTION */ + case 368: /* signed_literal ::= NK_QUESTION */ { yylhsminor.yy140 = createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 387: /* expression ::= NK_LP expression NK_RP */ - case 471: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==471); - case 560: /* subquery ::= NK_LP subquery NK_RP */ yytestcase(yyruleno==560); + case 388: /* expression ::= NK_LP expression NK_RP */ + case 472: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==472); + case 561: /* subquery ::= NK_LP subquery NK_RP */ yytestcase(yyruleno==561); { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy140)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 388: /* expression ::= NK_PLUS expr_or_subquery */ + case 389: /* expression ::= NK_PLUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 389: /* expression ::= NK_MINUS expr_or_subquery */ + case 390: /* expression ::= NK_MINUS expr_or_subquery */ { SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy140), NULL)); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 390: /* expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ + case 391: /* expression ::= expr_or_subquery NK_PLUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4905,7 +4910,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 391: /* expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ + case 392: /* expression ::= expr_or_subquery NK_MINUS expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4913,7 +4918,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 392: /* expression ::= expr_or_subquery NK_STAR expr_or_subquery */ + case 393: /* expression ::= expr_or_subquery NK_STAR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4921,7 +4926,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 393: /* expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ + case 394: /* expression ::= expr_or_subquery NK_SLASH expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4929,7 +4934,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 394: /* expression ::= expr_or_subquery NK_REM expr_or_subquery */ + case 395: /* expression ::= expr_or_subquery NK_REM expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4937,14 +4942,14 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 395: /* expression ::= column_reference NK_ARROW NK_STRING */ + case 396: /* expression ::= column_reference NK_ARROW NK_STRING */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_JSON_GET_VALUE, releaseRawExprNode(pCxt, yymsp[-2].minor.yy140), createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0))); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 396: /* expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ + case 397: /* expression ::= expr_or_subquery NK_BITAND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4952,7 +4957,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 397: /* expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ + case 398: /* expression ::= expr_or_subquery NK_BITOR expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -4960,71 +4965,71 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 400: /* column_reference ::= column_name */ + case 401: /* column_reference ::= column_name */ { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy881, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy881)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 401: /* column_reference ::= table_name NK_DOT column_name */ + case 402: /* column_reference ::= table_name NK_DOT column_name */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy881, createColumnNode(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy881)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 402: /* pseudo_column ::= ROWTS */ - case 403: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==403); - case 405: /* pseudo_column ::= QSTART */ yytestcase(yyruleno==405); - case 406: /* pseudo_column ::= QEND */ yytestcase(yyruleno==406); - case 407: /* pseudo_column ::= QDURATION */ yytestcase(yyruleno==407); - case 408: /* pseudo_column ::= WSTART */ yytestcase(yyruleno==408); - case 409: /* pseudo_column ::= WEND */ yytestcase(yyruleno==409); - case 410: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==410); - case 411: /* pseudo_column ::= IROWTS */ yytestcase(yyruleno==411); - case 412: /* pseudo_column ::= ISFILLED */ yytestcase(yyruleno==412); - case 413: /* pseudo_column ::= QTAGS */ yytestcase(yyruleno==413); - case 419: /* literal_func ::= NOW */ yytestcase(yyruleno==419); + case 403: /* pseudo_column ::= ROWTS */ + case 404: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==404); + case 406: /* pseudo_column ::= QSTART */ yytestcase(yyruleno==406); + case 407: /* pseudo_column ::= QEND */ yytestcase(yyruleno==407); + case 408: /* pseudo_column ::= QDURATION */ yytestcase(yyruleno==408); + case 409: /* pseudo_column ::= WSTART */ yytestcase(yyruleno==409); + case 410: /* pseudo_column ::= WEND */ yytestcase(yyruleno==410); + case 411: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==411); + case 412: /* pseudo_column ::= IROWTS */ yytestcase(yyruleno==412); + case 413: /* pseudo_column ::= ISFILLED */ yytestcase(yyruleno==413); + case 414: /* pseudo_column ::= QTAGS */ yytestcase(yyruleno==414); + case 420: /* literal_func ::= NOW */ yytestcase(yyruleno==420); { yylhsminor.yy140 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 404: /* pseudo_column ::= table_name NK_DOT TBNAME */ + case 405: /* pseudo_column ::= table_name NK_DOT TBNAME */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-2].minor.yy881)))); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 414: /* function_expression ::= function_name NK_LP expression_list NK_RP */ - case 415: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==415); + case 415: /* function_expression ::= function_name NK_LP expression_list NK_RP */ + case 416: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==416); { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy881, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy881, yymsp[-1].minor.yy220)); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 416: /* function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ + case 417: /* function_expression ::= CAST NK_LP expr_or_subquery AS type_name NK_RP */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0, createCastFunctionNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), yymsp[-1].minor.yy682)); } yymsp[-5].minor.yy140 = yylhsminor.yy140; break; - case 418: /* literal_func ::= noarg_func NK_LP NK_RP */ + case 419: /* literal_func ::= noarg_func NK_LP NK_RP */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-2].minor.yy881, NULL)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 433: /* star_func_para_list ::= NK_STAR */ + case 434: /* star_func_para_list ::= NK_STAR */ { yylhsminor.yy220 = createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0)); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 438: /* star_func_para ::= table_name NK_DOT NK_STAR */ - case 502: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==502); + case 439: /* star_func_para ::= table_name NK_DOT NK_STAR */ + case 503: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==503); { yylhsminor.yy140 = createColumnNode(pCxt, &yymsp[-2].minor.yy881, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 439: /* case_when_expression ::= CASE when_then_list case_when_else_opt END */ + case 440: /* case_when_expression ::= CASE when_then_list case_when_else_opt END */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, NULL, yymsp[-2].minor.yy220, yymsp[-1].minor.yy140)); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 440: /* case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ + case 441: /* case_when_expression ::= CASE common_expression when_then_list case_when_else_opt END */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-4].minor.yy0, &yymsp[0].minor.yy0, createCaseWhenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), yymsp[-2].minor.yy220, yymsp[-1].minor.yy140)); } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 443: /* when_then_expr ::= WHEN common_expression THEN common_expression */ + case 444: /* when_then_expr ::= WHEN common_expression THEN common_expression */ { yymsp[-3].minor.yy140 = createWhenThenNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy140), releaseRawExprNode(pCxt, yymsp[0].minor.yy140)); } break; - case 445: /* case_when_else_opt ::= ELSE common_expression */ + case 446: /* case_when_else_opt ::= ELSE common_expression */ { yymsp[-1].minor.yy140 = releaseRawExprNode(pCxt, yymsp[0].minor.yy140); } break; - case 446: /* predicate ::= expr_or_subquery compare_op expr_or_subquery */ - case 451: /* predicate ::= expr_or_subquery in_op in_predicate_value */ yytestcase(yyruleno==451); + case 447: /* predicate ::= expr_or_subquery compare_op expr_or_subquery */ + case 452: /* predicate ::= expr_or_subquery in_op in_predicate_value */ yytestcase(yyruleno==452); { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -5032,7 +5037,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 447: /* predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ + case 448: /* predicate ::= expr_or_subquery BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -5040,7 +5045,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-4].minor.yy140 = yylhsminor.yy140; break; - case 448: /* predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ + case 449: /* predicate ::= expr_or_subquery NOT BETWEEN expr_or_subquery AND expr_or_subquery */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -5048,71 +5053,71 @@ static YYACTIONTYPE yy_reduce( } yymsp[-5].minor.yy140 = yylhsminor.yy140; break; - case 449: /* predicate ::= expr_or_subquery IS NULL */ + case 450: /* predicate ::= expr_or_subquery IS NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy140), NULL)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 450: /* predicate ::= expr_or_subquery IS NOT NULL */ + case 451: /* predicate ::= expr_or_subquery IS NOT NULL */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), NULL)); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 452: /* compare_op ::= NK_LT */ + case 453: /* compare_op ::= NK_LT */ { yymsp[0].minor.yy794 = OP_TYPE_LOWER_THAN; } break; - case 453: /* compare_op ::= NK_GT */ + case 454: /* compare_op ::= NK_GT */ { yymsp[0].minor.yy794 = OP_TYPE_GREATER_THAN; } break; - case 454: /* compare_op ::= NK_LE */ + case 455: /* compare_op ::= NK_LE */ { yymsp[0].minor.yy794 = OP_TYPE_LOWER_EQUAL; } break; - case 455: /* compare_op ::= NK_GE */ + case 456: /* compare_op ::= NK_GE */ { yymsp[0].minor.yy794 = OP_TYPE_GREATER_EQUAL; } break; - case 456: /* compare_op ::= NK_NE */ + case 457: /* compare_op ::= NK_NE */ { yymsp[0].minor.yy794 = OP_TYPE_NOT_EQUAL; } break; - case 457: /* compare_op ::= NK_EQ */ + case 458: /* compare_op ::= NK_EQ */ { yymsp[0].minor.yy794 = OP_TYPE_EQUAL; } break; - case 458: /* compare_op ::= LIKE */ + case 459: /* compare_op ::= LIKE */ { yymsp[0].minor.yy794 = OP_TYPE_LIKE; } break; - case 459: /* compare_op ::= NOT LIKE */ + case 460: /* compare_op ::= NOT LIKE */ { yymsp[-1].minor.yy794 = OP_TYPE_NOT_LIKE; } break; - case 460: /* compare_op ::= MATCH */ + case 461: /* compare_op ::= MATCH */ { yymsp[0].minor.yy794 = OP_TYPE_MATCH; } break; - case 461: /* compare_op ::= NMATCH */ + case 462: /* compare_op ::= NMATCH */ { yymsp[0].minor.yy794 = OP_TYPE_NMATCH; } break; - case 462: /* compare_op ::= CONTAINS */ + case 463: /* compare_op ::= CONTAINS */ { yymsp[0].minor.yy794 = OP_TYPE_JSON_CONTAINS; } break; - case 463: /* in_op ::= IN */ + case 464: /* in_op ::= IN */ { yymsp[0].minor.yy794 = OP_TYPE_IN; } break; - case 464: /* in_op ::= NOT IN */ + case 465: /* in_op ::= NOT IN */ { yymsp[-1].minor.yy794 = OP_TYPE_NOT_IN; } break; - case 465: /* in_predicate_value ::= NK_LP literal_list NK_RP */ + case 466: /* in_predicate_value ::= NK_LP literal_list NK_RP */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy220)); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 467: /* boolean_value_expression ::= NOT boolean_primary */ + case 468: /* boolean_value_expression ::= NOT boolean_primary */ { SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy140), NULL)); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 468: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ + case 469: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -5120,7 +5125,7 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 469: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ + case 470: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy140); SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy140); @@ -5128,48 +5133,48 @@ static YYACTIONTYPE yy_reduce( } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 475: /* from_clause_opt ::= FROM table_reference_list */ - case 504: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==504); - case 535: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==535); + case 476: /* from_clause_opt ::= FROM table_reference_list */ + case 505: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==505); + case 536: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==536); { yymsp[-1].minor.yy140 = yymsp[0].minor.yy140; } break; - case 477: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ + case 478: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ { yylhsminor.yy140 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy140, yymsp[0].minor.yy140, NULL); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 480: /* table_primary ::= table_name alias_opt */ + case 481: /* table_primary ::= table_name alias_opt */ { yylhsminor.yy140 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy881, &yymsp[0].minor.yy881); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 481: /* table_primary ::= db_name NK_DOT table_name alias_opt */ + case 482: /* table_primary ::= db_name NK_DOT table_name alias_opt */ { yylhsminor.yy140 = createRealTableNode(pCxt, &yymsp[-3].minor.yy881, &yymsp[-1].minor.yy881, &yymsp[0].minor.yy881); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 482: /* table_primary ::= subquery alias_opt */ + case 483: /* table_primary ::= subquery alias_opt */ { yylhsminor.yy140 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy140), &yymsp[0].minor.yy881); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 484: /* alias_opt ::= */ + case 485: /* alias_opt ::= */ { yymsp[1].minor.yy881 = nil_token; } break; - case 486: /* alias_opt ::= AS table_alias */ + case 487: /* alias_opt ::= AS table_alias */ { yymsp[-1].minor.yy881 = yymsp[0].minor.yy881; } break; - case 487: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ - case 488: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==488); + case 488: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ + case 489: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==489); { yymsp[-2].minor.yy140 = yymsp[-1].minor.yy140; } break; - case 489: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ + case 490: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ { yylhsminor.yy140 = createJoinTableNode(pCxt, yymsp[-4].minor.yy852, yymsp[-5].minor.yy140, yymsp[-2].minor.yy140, yymsp[0].minor.yy140); } yymsp[-5].minor.yy140 = yylhsminor.yy140; break; - case 490: /* join_type ::= */ + case 491: /* join_type ::= */ { yymsp[1].minor.yy852 = JOIN_TYPE_INNER; } break; - case 491: /* join_type ::= INNER */ + case 492: /* join_type ::= INNER */ { yymsp[0].minor.yy852 = JOIN_TYPE_INNER; } break; - case 492: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ + case 493: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause_opt where_clause_opt partition_by_clause_opt range_opt every_opt fill_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { yymsp[-11].minor.yy140 = createSelectStmt(pCxt, yymsp[-10].minor.yy587, yymsp[-9].minor.yy220, yymsp[-8].minor.yy140); yymsp[-11].minor.yy140 = addWhereClause(pCxt, yymsp[-11].minor.yy140, yymsp[-7].minor.yy140); @@ -5182,82 +5187,82 @@ static YYACTIONTYPE yy_reduce( yymsp[-11].minor.yy140 = addFillClause(pCxt, yymsp[-11].minor.yy140, yymsp[-3].minor.yy140); } break; - case 495: /* set_quantifier_opt ::= ALL */ + case 496: /* set_quantifier_opt ::= ALL */ { yymsp[0].minor.yy587 = false; } break; - case 498: /* select_item ::= NK_STAR */ + case 499: /* select_item ::= NK_STAR */ { yylhsminor.yy140 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0); } yymsp[0].minor.yy140 = yylhsminor.yy140; break; - case 500: /* select_item ::= common_expression column_alias */ - case 510: /* partition_item ::= expr_or_subquery column_alias */ yytestcase(yyruleno==510); + case 501: /* select_item ::= common_expression column_alias */ + case 511: /* partition_item ::= expr_or_subquery column_alias */ yytestcase(yyruleno==511); { yylhsminor.yy140 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy140), &yymsp[0].minor.yy881); } yymsp[-1].minor.yy140 = yylhsminor.yy140; break; - case 501: /* select_item ::= common_expression AS column_alias */ - case 511: /* partition_item ::= expr_or_subquery AS column_alias */ yytestcase(yyruleno==511); + case 502: /* select_item ::= common_expression AS column_alias */ + case 512: /* partition_item ::= expr_or_subquery AS column_alias */ yytestcase(yyruleno==512); { yylhsminor.yy140 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy140), &yymsp[0].minor.yy881); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 506: /* partition_by_clause_opt ::= PARTITION BY partition_list */ - case 531: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==531); - case 550: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==550); + case 507: /* partition_by_clause_opt ::= PARTITION BY partition_list */ + case 532: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==532); + case 551: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==551); { yymsp[-2].minor.yy220 = yymsp[0].minor.yy220; } break; - case 513: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ + case 514: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ { yymsp[-5].minor.yy140 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), releaseRawExprNode(pCxt, yymsp[-1].minor.yy140)); } break; - case 514: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ + case 515: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expr_or_subquery NK_RP */ { yymsp[-3].minor.yy140 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy140)); } break; - case 515: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ + case 516: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-5].minor.yy140 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), NULL, yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 516: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ + case 517: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ { yymsp[-7].minor.yy140 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy140), releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), yymsp[-1].minor.yy140, yymsp[0].minor.yy140); } break; - case 517: /* twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ + case 518: /* twindow_clause_opt ::= EVENT_WINDOW START WITH search_condition END WITH search_condition */ { yymsp[-6].minor.yy140 = createEventWindowNode(pCxt, yymsp[-3].minor.yy140, yymsp[0].minor.yy140); } break; - case 521: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ + case 522: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ { yymsp[-3].minor.yy140 = createFillNode(pCxt, yymsp[-1].minor.yy174, NULL); } break; - case 522: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ + case 523: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ { yymsp[-5].minor.yy140 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy220)); } break; - case 523: /* fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ + case 524: /* fill_opt ::= FILL NK_LP VALUE_F NK_COMMA literal_list NK_RP */ { yymsp[-5].minor.yy140 = createFillNode(pCxt, FILL_MODE_VALUE_F, createNodeListNode(pCxt, yymsp[-1].minor.yy220)); } break; - case 524: /* fill_mode ::= NONE */ + case 525: /* fill_mode ::= NONE */ { yymsp[0].minor.yy174 = FILL_MODE_NONE; } break; - case 525: /* fill_mode ::= PREV */ + case 526: /* fill_mode ::= PREV */ { yymsp[0].minor.yy174 = FILL_MODE_PREV; } break; - case 526: /* fill_mode ::= NULL */ + case 527: /* fill_mode ::= NULL */ { yymsp[0].minor.yy174 = FILL_MODE_NULL; } break; - case 527: /* fill_mode ::= NULL_F */ + case 528: /* fill_mode ::= NULL_F */ { yymsp[0].minor.yy174 = FILL_MODE_NULL_F; } break; - case 528: /* fill_mode ::= LINEAR */ + case 529: /* fill_mode ::= LINEAR */ { yymsp[0].minor.yy174 = FILL_MODE_LINEAR; } break; - case 529: /* fill_mode ::= NEXT */ + case 530: /* fill_mode ::= NEXT */ { yymsp[0].minor.yy174 = FILL_MODE_NEXT; } break; - case 532: /* group_by_list ::= expr_or_subquery */ + case 533: /* group_by_list ::= expr_or_subquery */ { yylhsminor.yy220 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy140))); } yymsp[0].minor.yy220 = yylhsminor.yy220; break; - case 533: /* group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ + case 534: /* group_by_list ::= group_by_list NK_COMMA expr_or_subquery */ { yylhsminor.yy220 = addNodeToList(pCxt, yymsp[-2].minor.yy220, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy140))); } yymsp[-2].minor.yy220 = yylhsminor.yy220; break; - case 537: /* range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ + case 538: /* range_opt ::= RANGE NK_LP expr_or_subquery NK_COMMA expr_or_subquery NK_RP */ { yymsp[-5].minor.yy140 = createInterpTimeRange(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy140), releaseRawExprNode(pCxt, yymsp[-1].minor.yy140)); } break; - case 540: /* query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ + case 541: /* query_expression ::= query_simple order_by_clause_opt slimit_clause_opt limit_clause_opt */ { yylhsminor.yy140 = addOrderByClause(pCxt, yymsp[-3].minor.yy140, yymsp[-2].minor.yy220); yylhsminor.yy140 = addSlimitClause(pCxt, yylhsminor.yy140, yymsp[-1].minor.yy140); @@ -5265,50 +5270,50 @@ static YYACTIONTYPE yy_reduce( } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 543: /* union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ + case 544: /* union_query_expression ::= query_simple_or_subquery UNION ALL query_simple_or_subquery */ { yylhsminor.yy140 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy140, yymsp[0].minor.yy140); } yymsp[-3].minor.yy140 = yylhsminor.yy140; break; - case 544: /* union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ + case 545: /* union_query_expression ::= query_simple_or_subquery UNION query_simple_or_subquery */ { yylhsminor.yy140 = createSetOperator(pCxt, SET_OP_TYPE_UNION, yymsp[-2].minor.yy140, yymsp[0].minor.yy140); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 552: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ - case 556: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==556); + case 553: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ + case 557: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==557); { yymsp[-1].minor.yy140 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } break; - case 553: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ - case 557: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==557); + case 554: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ + case 558: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==558); { yymsp[-3].minor.yy140 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; - case 554: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - case 558: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==558); + case 555: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + case 559: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==559); { yymsp[-3].minor.yy140 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } break; - case 559: /* subquery ::= NK_LP query_expression NK_RP */ + case 560: /* subquery ::= NK_LP query_expression NK_RP */ { yylhsminor.yy140 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy140); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 564: /* sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ + case 565: /* sort_specification ::= expr_or_subquery ordering_specification_opt null_ordering_opt */ { yylhsminor.yy140 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy140), yymsp[-1].minor.yy866, yymsp[0].minor.yy697); } yymsp[-2].minor.yy140 = yylhsminor.yy140; break; - case 565: /* ordering_specification_opt ::= */ + case 566: /* ordering_specification_opt ::= */ { yymsp[1].minor.yy866 = ORDER_ASC; } break; - case 566: /* ordering_specification_opt ::= ASC */ + case 567: /* ordering_specification_opt ::= ASC */ { yymsp[0].minor.yy866 = ORDER_ASC; } break; - case 567: /* ordering_specification_opt ::= DESC */ + case 568: /* ordering_specification_opt ::= DESC */ { yymsp[0].minor.yy866 = ORDER_DESC; } break; - case 568: /* null_ordering_opt ::= */ + case 569: /* null_ordering_opt ::= */ { yymsp[1].minor.yy697 = NULL_ORDER_DEFAULT; } break; - case 569: /* null_ordering_opt ::= NULLS FIRST */ + case 570: /* null_ordering_opt ::= NULLS FIRST */ { yymsp[-1].minor.yy697 = NULL_ORDER_FIRST; } break; - case 570: /* null_ordering_opt ::= NULLS LAST */ + case 571: /* null_ordering_opt ::= NULLS LAST */ { yymsp[-1].minor.yy697 = NULL_ORDER_LAST; } break; default: diff --git a/source/libs/parser/test/parAlterToBalanceTest.cpp b/source/libs/parser/test/parAlterToBalanceTest.cpp index bfcf6ec27e..4cccfd449c 100644 --- a/source/libs/parser/test/parAlterToBalanceTest.cpp +++ b/source/libs/parser/test/parAlterToBalanceTest.cpp @@ -108,6 +108,7 @@ TEST_F(ParserInitialATest, alterDnode) { * | REPLICA int_value -- todo: enum 1, 3, default 1, unit replica * | WAL_LEVEL int_value -- enum 1, 2, default 1 * | STT_TRIGGER int_value -- rang [1, 16], default 8 + * | MINROWS int_value -- rang [10, 1000], default 100 * } */ TEST_F(ParserInitialATest, alterDatabase) { @@ -133,6 +134,7 @@ TEST_F(ParserInitialATest, alterDatabase) { expect.cacheLastSize = -1; expect.replications = -1; expect.sstTrigger = -1; + expect.minRows = -1; }; auto setAlterDbBuffer = [&](int32_t buffer) { expect.buffer = buffer; }; auto setAlterDbPageSize = [&](int32_t pageSize) { expect.pageSize = pageSize; }; @@ -150,6 +152,7 @@ TEST_F(ParserInitialATest, alterDatabase) { auto setAlterDbCacheModel = [&](int8_t cacheModel) { expect.cacheLast = cacheModel; }; auto setAlterDbReplica = [&](int8_t replications) { expect.replications = replications; }; auto setAlterDbSttTrigger = [&](int8_t sstTrigger) { expect.sstTrigger = sstTrigger; }; + auto setAlterDbMinRows = [&](int32_t minRows) { expect.minRows = minRows; }; setCheckDdlFunc([&](const SQuery* pQuery, ParserStage stage) { ASSERT_EQ(nodeType(pQuery->pRoot), QUERY_NODE_ALTER_DATABASE_STMT); @@ -170,6 +173,7 @@ TEST_F(ParserInitialATest, alterDatabase) { ASSERT_EQ(req.cacheLast, expect.cacheLast); ASSERT_EQ(req.replications, expect.replications); ASSERT_EQ(req.sstTrigger, expect.sstTrigger); + ASSERT_EQ(req.minRows, expect.minRows); }); const int32_t MINUTE_PER_DAY = MILLISECOND_PER_DAY / MILLISECOND_PER_MINUTE; @@ -277,6 +281,15 @@ TEST_F(ParserInitialATest, alterDatabase) { setAlterDbSttTrigger(16); run("ALTER DATABASE test STT_TRIGGER 16"); clearAlterDbReq(); + + initAlterDb("test"); + setAlterDbMinRows(10); + run("ALTER DATABASE test MINROWS 10"); + setAlterDbMinRows(50); + run("ALTER DATABASE test MINROWS 50"); + setAlterDbMinRows(1000); + run("ALTER DATABASE test MINROWS 1000"); + clearAlterDbReq(); } TEST_F(ParserInitialATest, alterDatabaseSemanticCheck) {