diff --git a/include/common/tmsg.h b/include/common/tmsg.h index 32d59c69293cd47fdf59ed24402a4f0d2fa5a907..6eaddca10b0b64b3a1186ad09161a177750bf8dc 100644 --- a/include/common/tmsg.h +++ b/include/common/tmsg.h @@ -280,10 +280,14 @@ typedef struct { int32_t numOfTags; int32_t numOfSmas; int32_t commentLen; + int32_t ast1Len; + int32_t ast2Len; SArray* pColumns; // array of SField SArray* pTags; // array of SField SArray* pSmas; // array of SField char* comment; + char* pAst1; + char* pAst2; } SMCreateStbReq; int32_t tSerializeSMCreateStbReq(void* buf, int32_t bufLen, SMCreateStbReq* pReq); @@ -609,6 +613,8 @@ typedef struct { int8_t cacheLastRow; int8_t streamMode; int8_t singleSTable; + int32_t numOfRetensions; + SArray* pRetensions; } SDbCfgRsp; int32_t tSerializeSDbCfgRsp(void* buf, int32_t bufLen, const SDbCfgRsp* pRsp); diff --git a/include/common/ttokendef.h b/include/common/ttokendef.h index c98e5bf99d3345f7612c2095bc21000f25dbe0d3..5d8227daa1b91a22db83425ebeb65f46ba02f381 100644 --- a/include/common/ttokendef.h +++ b/include/common/ttokendef.h @@ -86,155 +86,156 @@ #define TK_SINGLE_STABLE 68 #define TK_STREAM_MODE 69 #define TK_RETENTIONS 70 -#define TK_NK_COMMA 71 -#define TK_NK_COLON 72 -#define TK_TABLE 73 -#define TK_NK_LP 74 -#define TK_NK_RP 75 -#define TK_STABLE 76 -#define TK_ADD 77 -#define TK_COLUMN 78 -#define TK_MODIFY 79 -#define TK_RENAME 80 -#define TK_TAG 81 -#define TK_SET 82 -#define TK_NK_EQ 83 -#define TK_USING 84 -#define TK_TAGS 85 -#define TK_NK_DOT 86 -#define TK_COMMENT 87 -#define TK_BOOL 88 -#define TK_TINYINT 89 -#define TK_SMALLINT 90 -#define TK_INT 91 -#define TK_INTEGER 92 -#define TK_BIGINT 93 -#define TK_FLOAT 94 -#define TK_DOUBLE 95 -#define TK_BINARY 96 -#define TK_TIMESTAMP 97 -#define TK_NCHAR 98 -#define TK_UNSIGNED 99 -#define TK_JSON 100 -#define TK_VARCHAR 101 -#define TK_MEDIUMBLOB 102 -#define TK_BLOB 103 -#define TK_VARBINARY 104 -#define TK_DECIMAL 105 -#define TK_SMA 106 -#define TK_ROLLUP 107 -#define TK_FILE_FACTOR 108 -#define TK_NK_FLOAT 109 -#define TK_DELAY 110 -#define TK_SHOW 111 -#define TK_DATABASES 112 -#define TK_TABLES 113 -#define TK_STABLES 114 -#define TK_MNODES 115 -#define TK_MODULES 116 -#define TK_QNODES 117 -#define TK_FUNCTIONS 118 -#define TK_INDEXES 119 -#define TK_FROM 120 -#define TK_ACCOUNTS 121 -#define TK_APPS 122 -#define TK_CONNECTIONS 123 -#define TK_LICENCE 124 -#define TK_GRANTS 125 -#define TK_QUERIES 126 -#define TK_SCORES 127 -#define TK_TOPICS 128 -#define TK_VARIABLES 129 -#define TK_BNODES 130 -#define TK_SNODES 131 -#define TK_LIKE 132 -#define TK_INDEX 133 -#define TK_FULLTEXT 134 -#define TK_FUNCTION 135 -#define TK_INTERVAL 136 -#define TK_TOPIC 137 -#define TK_AS 138 -#define TK_DESC 139 -#define TK_DESCRIBE 140 -#define TK_RESET 141 -#define TK_QUERY 142 -#define TK_EXPLAIN 143 -#define TK_ANALYZE 144 -#define TK_VERBOSE 145 -#define TK_NK_BOOL 146 -#define TK_RATIO 147 -#define TK_COMPACT 148 -#define TK_VNODES 149 -#define TK_IN 150 -#define TK_OUTPUTTYPE 151 -#define TK_AGGREGATE 152 -#define TK_BUFSIZE 153 -#define TK_STREAM 154 -#define TK_INTO 155 -#define TK_TRIGGER 156 -#define TK_AT_ONCE 157 -#define TK_WINDOW_CLOSE 158 -#define TK_WATERMARK 159 -#define TK_KILL 160 -#define TK_CONNECTION 161 -#define TK_MERGE 162 -#define TK_VGROUP 163 -#define TK_REDISTRIBUTE 164 -#define TK_SPLIT 165 -#define TK_SYNCDB 166 -#define TK_NULL 167 -#define TK_NK_QUESTION 168 -#define TK_NK_ARROW 169 -#define TK_ROWTS 170 -#define TK_TBNAME 171 -#define TK_QSTARTTS 172 -#define TK_QENDTS 173 -#define TK_WSTARTTS 174 -#define TK_WENDTS 175 -#define TK_WDURATION 176 -#define TK_CAST 177 -#define TK_NOW 178 -#define TK_TODAY 179 -#define TK_TIMEZONE 180 -#define TK_COUNT 181 -#define TK_FIRST 182 -#define TK_LAST 183 -#define TK_LAST_ROW 184 -#define TK_BETWEEN 185 -#define TK_IS 186 -#define TK_NK_LT 187 -#define TK_NK_GT 188 -#define TK_NK_LE 189 -#define TK_NK_GE 190 -#define TK_NK_NE 191 -#define TK_MATCH 192 -#define TK_NMATCH 193 -#define TK_CONTAINS 194 -#define TK_JOIN 195 -#define TK_INNER 196 -#define TK_SELECT 197 -#define TK_DISTINCT 198 -#define TK_WHERE 199 -#define TK_PARTITION 200 -#define TK_BY 201 -#define TK_SESSION 202 -#define TK_STATE_WINDOW 203 -#define TK_SLIDING 204 -#define TK_FILL 205 -#define TK_VALUE 206 -#define TK_NONE 207 -#define TK_PREV 208 -#define TK_LINEAR 209 -#define TK_NEXT 210 -#define TK_GROUP 211 -#define TK_HAVING 212 -#define TK_ORDER 213 -#define TK_SLIMIT 214 -#define TK_SOFFSET 215 -#define TK_LIMIT 216 -#define TK_OFFSET 217 -#define TK_ASC 218 -#define TK_NULLS 219 +#define TK_STRICT 71 +#define TK_NK_COMMA 72 +#define TK_NK_COLON 73 +#define TK_TABLE 74 +#define TK_NK_LP 75 +#define TK_NK_RP 76 +#define TK_STABLE 77 +#define TK_ADD 78 +#define TK_COLUMN 79 +#define TK_MODIFY 80 +#define TK_RENAME 81 +#define TK_TAG 82 +#define TK_SET 83 +#define TK_NK_EQ 84 +#define TK_USING 85 +#define TK_TAGS 86 +#define TK_NK_DOT 87 +#define TK_COMMENT 88 +#define TK_BOOL 89 +#define TK_TINYINT 90 +#define TK_SMALLINT 91 +#define TK_INT 92 +#define TK_INTEGER 93 +#define TK_BIGINT 94 +#define TK_FLOAT 95 +#define TK_DOUBLE 96 +#define TK_BINARY 97 +#define TK_TIMESTAMP 98 +#define TK_NCHAR 99 +#define TK_UNSIGNED 100 +#define TK_JSON 101 +#define TK_VARCHAR 102 +#define TK_MEDIUMBLOB 103 +#define TK_BLOB 104 +#define TK_VARBINARY 105 +#define TK_DECIMAL 106 +#define TK_SMA 107 +#define TK_ROLLUP 108 +#define TK_FILE_FACTOR 109 +#define TK_NK_FLOAT 110 +#define TK_DELAY 111 +#define TK_SHOW 112 +#define TK_DATABASES 113 +#define TK_TABLES 114 +#define TK_STABLES 115 +#define TK_MNODES 116 +#define TK_MODULES 117 +#define TK_QNODES 118 +#define TK_FUNCTIONS 119 +#define TK_INDEXES 120 +#define TK_FROM 121 +#define TK_ACCOUNTS 122 +#define TK_APPS 123 +#define TK_CONNECTIONS 124 +#define TK_LICENCE 125 +#define TK_GRANTS 126 +#define TK_QUERIES 127 +#define TK_SCORES 128 +#define TK_TOPICS 129 +#define TK_VARIABLES 130 +#define TK_BNODES 131 +#define TK_SNODES 132 +#define TK_LIKE 133 +#define TK_INDEX 134 +#define TK_FULLTEXT 135 +#define TK_FUNCTION 136 +#define TK_INTERVAL 137 +#define TK_TOPIC 138 +#define TK_AS 139 +#define TK_DESC 140 +#define TK_DESCRIBE 141 +#define TK_RESET 142 +#define TK_QUERY 143 +#define TK_EXPLAIN 144 +#define TK_ANALYZE 145 +#define TK_VERBOSE 146 +#define TK_NK_BOOL 147 +#define TK_RATIO 148 +#define TK_COMPACT 149 +#define TK_VNODES 150 +#define TK_IN 151 +#define TK_OUTPUTTYPE 152 +#define TK_AGGREGATE 153 +#define TK_BUFSIZE 154 +#define TK_STREAM 155 +#define TK_INTO 156 +#define TK_TRIGGER 157 +#define TK_AT_ONCE 158 +#define TK_WINDOW_CLOSE 159 +#define TK_WATERMARK 160 +#define TK_KILL 161 +#define TK_CONNECTION 162 +#define TK_MERGE 163 +#define TK_VGROUP 164 +#define TK_REDISTRIBUTE 165 +#define TK_SPLIT 166 +#define TK_SYNCDB 167 +#define TK_NULL 168 +#define TK_NK_QUESTION 169 +#define TK_NK_ARROW 170 +#define TK_ROWTS 171 +#define TK_TBNAME 172 +#define TK_QSTARTTS 173 +#define TK_QENDTS 174 +#define TK_WSTARTTS 175 +#define TK_WENDTS 176 +#define TK_WDURATION 177 +#define TK_CAST 178 +#define TK_NOW 179 +#define TK_TODAY 180 +#define TK_TIMEZONE 181 +#define TK_COUNT 182 +#define TK_FIRST 183 +#define TK_LAST 184 +#define TK_LAST_ROW 185 +#define TK_BETWEEN 186 +#define TK_IS 187 +#define TK_NK_LT 188 +#define TK_NK_GT 189 +#define TK_NK_LE 190 +#define TK_NK_GE 191 +#define TK_NK_NE 192 +#define TK_MATCH 193 +#define TK_NMATCH 194 +#define TK_CONTAINS 195 +#define TK_JOIN 196 +#define TK_INNER 197 +#define TK_SELECT 198 +#define TK_DISTINCT 199 +#define TK_WHERE 200 +#define TK_PARTITION 201 +#define TK_BY 202 +#define TK_SESSION 203 +#define TK_STATE_WINDOW 204 +#define TK_SLIDING 205 +#define TK_FILL 206 +#define TK_VALUE 207 +#define TK_NONE 208 +#define TK_PREV 209 +#define TK_LINEAR 210 +#define TK_NEXT 211 +#define TK_GROUP 212 +#define TK_HAVING 213 +#define TK_ORDER 214 +#define TK_SLIMIT 215 +#define TK_SOFFSET 216 +#define TK_LIMIT 217 +#define TK_OFFSET 218 +#define TK_ASC 219 +#define TK_NULLS 220 #define TK_NK_SPACE 300 #define TK_NK_COMMENT 301 diff --git a/include/libs/nodes/cmdnodes.h b/include/libs/nodes/cmdnodes.h index b62555d5492cb5e187aaea4fbc7889e31935ed81..84f2d9ed6bbc0525ab792de44ca8fa0c728cc890 100644 --- a/include/libs/nodes/cmdnodes.h +++ b/include/libs/nodes/cmdnodes.h @@ -47,6 +47,7 @@ typedef struct SDatabaseOptions { SValueNode* pNumOfVgroups; SValueNode* pSingleStable; SValueNode* pStreamMode; + SValueNode* pStrict; SNodeList* pRetentions; } SDatabaseOptions; diff --git a/include/util/tdef.h b/include/util/tdef.h index ec90dd888a3719a52035feddd91c645cd7eab419..4189c271026529c5d21eb7903816e4b7259a96a9 100644 --- a/include/util/tdef.h +++ b/include/util/tdef.h @@ -390,10 +390,14 @@ typedef enum ELogicConditionType { #define TSDB_MAX_DB_SINGLE_STABLE_OPTION 1 #define TSDB_DEFAULT_DB_SINGLE_STABLE_OPTION 0 -#define TSDB_MIN_DB_STREAM_MODE_OPTION 0 -#define TSDB_MAX_DB_STREAM_MODE_OPTION 1 +#define TSDB_DB_STREAM_MODE_OPTION_OFF 0 +#define TSDB_DB_STREAM_MODE_OPTION_ON 1 #define TSDB_DEFAULT_DB_STREAM_MODE_OPTION 0 +#define TSDB_DB_STRICT_OPTION_OFF 0 +#define TSDB_DB_STRICT_OPTION_ON 1 +#define TSDB_DEFAULT_DB_STRICT_OPTION 0 + #define TSDB_MAX_JOIN_TABLE_NUM 10 #define TSDB_MAX_UNION_CLAUSE 5 diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index f4ef55f86520a081dd096b487b631329af6b3f06..f1a94fbc0c4604f0f3427150ad20ec372805bf1a 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -611,6 +611,8 @@ int32_t tSerializeSMCreateStbReq(void *buf, int32_t bufLen, SMCreateStbReq *pReq if (tEncodeI32(&encoder, pReq->numOfTags) < 0) return -1; if (tEncodeI32(&encoder, pReq->numOfSmas) < 0) return -1; if (tEncodeI32(&encoder, pReq->commentLen) < 0) return -1; + if (tEncodeI32(&encoder, pReq->ast1Len) < 0) return -1; + if (tEncodeI32(&encoder, pReq->ast2Len) < 0) return -1; for (int32_t i = 0; i < pReq->numOfColumns; ++i) { SField *pField = taosArrayGet(pReq->pColumns, i); @@ -636,6 +638,12 @@ int32_t tSerializeSMCreateStbReq(void *buf, int32_t bufLen, SMCreateStbReq *pReq if (pReq->commentLen > 0) { if (tEncodeBinary(&encoder, pReq->comment, pReq->commentLen) < 0) return -1; } + if (pReq->ast1Len > 0) { + if (tEncodeBinary(&encoder, pReq->pAst1, pReq->ast1Len) < 0) return -1; + } + if (pReq->ast2Len > 0) { + if (tEncodeBinary(&encoder, pReq->pAst2, pReq->ast2Len) < 0) return -1; + } tEndEncode(&encoder); int32_t tlen = encoder.pos; @@ -658,6 +666,8 @@ int32_t tDeserializeSMCreateStbReq(void *buf, int32_t bufLen, SMCreateStbReq *pR if (tDecodeI32(&decoder, &pReq->numOfTags) < 0) return -1; if (tDecodeI32(&decoder, &pReq->numOfSmas) < 0) return -1; if (tDecodeI32(&decoder, &pReq->commentLen) < 0) return -1; + if (tDecodeI32(&decoder, &pReq->ast1Len) < 0) return -1; + if (tDecodeI32(&decoder, &pReq->ast2Len) < 0) return -1; pReq->pColumns = taosArrayInit(pReq->numOfColumns, sizeof(SField)); pReq->pTags = taosArrayInit(pReq->numOfTags, sizeof(SField)); @@ -706,6 +716,18 @@ int32_t tDeserializeSMCreateStbReq(void *buf, int32_t bufLen, SMCreateStbReq *pR if (tDecodeCStrTo(&decoder, pReq->comment) < 0) return -1; } + if (pReq->ast1Len > 0) { + pReq->pAst1 = taosMemoryMalloc(pReq->ast1Len); + if (pReq->pAst1 == NULL) return -1; + if (tDecodeCStrTo(&decoder, pReq->pAst1) < 0) return -1; + } + + if (pReq->ast2Len > 0) { + pReq->pAst2 = taosMemoryMalloc(pReq->ast2Len); + if (pReq->pAst2 == NULL) return -1; + if (tDecodeCStrTo(&decoder, pReq->pAst2) < 0) return -1; + } + tEndDecode(&decoder); tCoderClear(&decoder); @@ -717,6 +739,8 @@ void tFreeSMCreateStbReq(SMCreateStbReq *pReq) { taosArrayDestroy(pReq->pTags); taosArrayDestroy(pReq->pSmas); taosMemoryFreeClear(pReq->comment); + taosMemoryFreeClear(pReq->pAst1); + taosMemoryFreeClear(pReq->pAst2); pReq->pColumns = NULL; pReq->pTags = NULL; pReq->pSmas = NULL; @@ -2211,6 +2235,14 @@ int32_t tSerializeSDbCfgRsp(void *buf, int32_t bufLen, const SDbCfgRsp *pRsp) { if (tEncodeI8(&encoder, pRsp->update) < 0) return -1; if (tEncodeI8(&encoder, pRsp->cacheLastRow) < 0) return -1; if (tEncodeI8(&encoder, pRsp->streamMode) < 0) return -1; + if (tEncodeI32(&encoder, pRsp->numOfRetensions) < 0) return -1; + for (int32_t i = 0; i < pRsp->numOfRetensions; ++i) { + SRetention *pRetension = taosArrayGet(pRsp->pRetensions, i); + if (tEncodeI32(&encoder, pRetension->freq) < 0) return -1; + if (tEncodeI32(&encoder, pRetension->keep) < 0) return -1; + if (tEncodeI8(&encoder, pRetension->freqUnit) < 0) return -1; + if (tEncodeI8(&encoder, pRetension->keepUnit) < 0) return -1; + } tEndEncode(&encoder); int32_t tlen = encoder.pos; @@ -2242,7 +2274,24 @@ int32_t tDeserializeSDbCfgRsp(void *buf, int32_t bufLen, SDbCfgRsp *pRsp) { if (tDecodeI8(&decoder, &pRsp->update) < 0) return -1; if (tDecodeI8(&decoder, &pRsp->cacheLastRow) < 0) return -1; if (tDecodeI8(&decoder, &pRsp->streamMode) < 0) return -1; + if (tDecodeI32(&decoder, &pRsp->numOfRetensions) < 0) return -1; + pRsp->pRetensions = taosArrayInit(pRsp->numOfRetensions, sizeof(SRetention)); + if (pRsp->pRetensions == NULL) { + terrno = TSDB_CODE_OUT_OF_MEMORY; + return -1; + } + for (int32_t i = 0; i < pRsp->numOfRetensions; ++i) { + SRetention rentension = {0}; + if (tDecodeI32(&decoder, &rentension.freq) < 0) return -1; + if (tDecodeI32(&decoder, &rentension.keep) < 0) return -1; + if (tDecodeI8(&decoder, &rentension.freqUnit) < 0) return -1; + if (tDecodeI8(&decoder, &rentension.keepUnit) < 0) return -1; + if (taosArrayPush(pRsp->pRetensions, &rentension) == NULL) { + terrno = TSDB_CODE_OUT_OF_MEMORY; + return -1; + } + } tEndDecode(&decoder); tCoderClear(&decoder); diff --git a/source/dnode/mnode/impl/inc/mndDef.h b/source/dnode/mnode/impl/inc/mndDef.h index 4a6455c0eddfee061735fd15e36376c831cacd7f..b1e69b5d5c299f7e50ad76f1d2f8fb5eee8a88a9 100644 --- a/source/dnode/mnode/impl/inc/mndDef.h +++ b/source/dnode/mnode/impl/inc/mndDef.h @@ -355,10 +355,14 @@ typedef struct { int32_t numOfTags; int32_t numOfSmas; int32_t commentLen; + int32_t ast1Len; + int32_t ast2Len; SSchema* pColumns; SSchema* pTags; SSchema* pSmas; char* comment; + char* pAst1; + char* pAst2; SRWLatch lock; } SStbObj; diff --git a/source/dnode/mnode/impl/src/mndDb.c b/source/dnode/mnode/impl/src/mndDb.c index 755e2828defb88e41d2c94e652b0e88aeb4085b7..3ca669d3c5f59830b83aca402c71364a5cafbe29 100644 --- a/source/dnode/mnode/impl/src/mndDb.c +++ b/source/dnode/mnode/impl/src/mndDb.c @@ -762,27 +762,29 @@ static int32_t mndProcessGetDbCfgReq(SNodeMsg *pReq) { goto GET_DB_CFG_OVER; } - cfgRsp.numOfVgroups = pDb->cfg.numOfVgroups; - cfgRsp.cacheBlockSize = pDb->cfg.cacheBlockSize; - cfgRsp.totalBlocks = pDb->cfg.totalBlocks; - cfgRsp.daysPerFile = pDb->cfg.daysPerFile; - cfgRsp.daysToKeep0 = pDb->cfg.daysToKeep0; - cfgRsp.daysToKeep1 = pDb->cfg.daysToKeep1; - cfgRsp.daysToKeep2 = pDb->cfg.daysToKeep2; - cfgRsp.minRows = pDb->cfg.minRows; - cfgRsp.maxRows = pDb->cfg.maxRows; - cfgRsp.commitTime = pDb->cfg.commitTime; - cfgRsp.fsyncPeriod = pDb->cfg.fsyncPeriod; - cfgRsp.ttl = pDb->cfg.ttl; - cfgRsp.walLevel = pDb->cfg.walLevel; - cfgRsp.precision = pDb->cfg.precision; - cfgRsp.compression = pDb->cfg.compression; - cfgRsp.replications = pDb->cfg.replications; - cfgRsp.quorum = pDb->cfg.quorum; - cfgRsp.update = pDb->cfg.update; - cfgRsp.cacheLastRow = pDb->cfg.cacheLastRow; - cfgRsp.streamMode = pDb->cfg.streamMode; - cfgRsp.singleSTable = pDb->cfg.singleSTable; + cfgRsp.numOfVgroups = pDb->cfg.numOfVgroups; + cfgRsp.cacheBlockSize = pDb->cfg.cacheBlockSize; + cfgRsp.totalBlocks = pDb->cfg.totalBlocks; + cfgRsp.daysPerFile = pDb->cfg.daysPerFile; + cfgRsp.daysToKeep0 = pDb->cfg.daysToKeep0; + cfgRsp.daysToKeep1 = pDb->cfg.daysToKeep1; + cfgRsp.daysToKeep2 = pDb->cfg.daysToKeep2; + cfgRsp.minRows = pDb->cfg.minRows; + cfgRsp.maxRows = pDb->cfg.maxRows; + cfgRsp.commitTime = pDb->cfg.commitTime; + cfgRsp.fsyncPeriod = pDb->cfg.fsyncPeriod; + cfgRsp.ttl = pDb->cfg.ttl; + cfgRsp.walLevel = pDb->cfg.walLevel; + cfgRsp.precision = pDb->cfg.precision; + cfgRsp.compression = pDb->cfg.compression; + cfgRsp.replications = pDb->cfg.replications; + cfgRsp.quorum = pDb->cfg.quorum; + cfgRsp.update = pDb->cfg.update; + cfgRsp.cacheLastRow = pDb->cfg.cacheLastRow; + cfgRsp.streamMode = pDb->cfg.streamMode; + cfgRsp.singleSTable = pDb->cfg.singleSTable; + cfgRsp.numOfRetensions = pDb->cfg.numOfRetensions; + cfgRsp.pRetensions = pDb->cfg.pRetensions; int32_t contLen = tSerializeSDbCfgRsp(NULL, 0, &cfgRsp); void *pRsp = rpcMallocCont(contLen); @@ -797,6 +799,8 @@ static int32_t mndProcessGetDbCfgReq(SNodeMsg *pReq) { pReq->pRsp = pRsp; pReq->rspLen = contLen; + code = 0; + GET_DB_CFG_OVER: if (code != 0 && code != TSDB_CODE_MND_ACTION_IN_PROGRESS) { diff --git a/source/dnode/mnode/impl/src/mndStb.c b/source/dnode/mnode/impl/src/mndStb.c index 3ead2f26a3ea2f09dcca222504e671dd90a8a0e8..d8b94f5ffe6f31742436981568178420ee2ba3c6 100644 --- a/source/dnode/mnode/impl/src/mndStb.c +++ b/source/dnode/mnode/impl/src/mndStb.c @@ -72,7 +72,7 @@ SSdbRaw *mndStbActionEncode(SStbObj *pStb) { terrno = TSDB_CODE_OUT_OF_MEMORY; int32_t size = sizeof(SStbObj) + (pStb->numOfColumns + pStb->numOfTags + pStb->numOfSmas) * sizeof(SSchema) + - TSDB_STB_RESERVE_SIZE; + + pStb->commentLen + pStb->ast1Len + pStb->ast2Len + TSDB_STB_RESERVE_SIZE; SSdbRaw *pRaw = sdbAllocRaw(SDB_STB, TSDB_STB_VER_NUMBER, size); if (pRaw == NULL) goto _OVER; @@ -93,6 +93,8 @@ SSdbRaw *mndStbActionEncode(SStbObj *pStb) { SDB_SET_INT32(pRaw, dataPos, pStb->numOfTags, _OVER) SDB_SET_INT32(pRaw, dataPos, pStb->numOfSmas, _OVER) SDB_SET_INT32(pRaw, dataPos, pStb->commentLen, _OVER) + SDB_SET_INT32(pRaw, dataPos, pStb->ast1Len, _OVER) + SDB_SET_INT32(pRaw, dataPos, pStb->ast2Len, _OVER) for (int32_t i = 0; i < pStb->numOfColumns; ++i) { SSchema *pSchema = &pStb->pColumns[i]; @@ -121,6 +123,12 @@ SSdbRaw *mndStbActionEncode(SStbObj *pStb) { if (pStb->commentLen > 0) { SDB_SET_BINARY(pRaw, dataPos, pStb->comment, pStb->commentLen, _OVER) } + if (pStb->ast1Len > 0) { + SDB_SET_BINARY(pRaw, dataPos, pStb->pAst1, pStb->ast1Len, _OVER) + } + if (pStb->ast2Len > 0) { + SDB_SET_BINARY(pRaw, dataPos, pStb->pAst2, pStb->ast2Len, _OVER) + } SDB_SET_RESERVE(pRaw, dataPos, TSDB_STB_RESERVE_SIZE, _OVER) SDB_SET_DATALEN(pRaw, dataPos, _OVER) @@ -173,6 +181,8 @@ static SSdbRow *mndStbActionDecode(SSdbRaw *pRaw) { SDB_GET_INT32(pRaw, dataPos, &pStb->numOfTags, _OVER) SDB_GET_INT32(pRaw, dataPos, &pStb->numOfSmas, _OVER) SDB_GET_INT32(pRaw, dataPos, &pStb->commentLen, _OVER) + SDB_GET_INT32(pRaw, dataPos, &pStb->ast1Len, _OVER) + SDB_GET_INT32(pRaw, dataPos, &pStb->ast2Len, _OVER) pStb->pColumns = taosMemoryCalloc(pStb->numOfColumns, sizeof(SSchema)); pStb->pTags = taosMemoryCalloc(pStb->numOfTags, sizeof(SSchema)); @@ -210,6 +220,16 @@ static SSdbRow *mndStbActionDecode(SSdbRaw *pRaw) { if (pStb->comment == NULL) goto _OVER; SDB_GET_BINARY(pRaw, dataPos, pStb->comment, pStb->commentLen, _OVER) } + if (pStb->ast1Len > 0) { + pStb->pAst1 = taosMemoryCalloc(pStb->ast1Len, 1); + if (pStb->pAst1 == NULL) goto _OVER; + SDB_GET_BINARY(pRaw, dataPos, pStb->pAst1, pStb->ast1Len, _OVER) + } + if (pStb->ast2Len > 0) { + pStb->pAst2 = taosMemoryCalloc(pStb->ast2Len, 1); + if (pStb->pAst2 == NULL) goto _OVER; + SDB_GET_BINARY(pRaw, dataPos, pStb->pAst2, pStb->ast2Len, _OVER) + } SDB_GET_RESERVE(pRaw, dataPos, TSDB_STB_RESERVE_SIZE, _OVER) terrno = 0; @@ -238,6 +258,8 @@ static int32_t mndStbActionDelete(SSdb *pSdb, SStbObj *pStb) { taosMemoryFreeClear(pStb->pColumns); taosMemoryFreeClear(pStb->pTags); taosMemoryFreeClear(pStb->comment); + taosMemoryFreeClear(pStb->pAst1); + taosMemoryFreeClear(pStb->pAst2); return 0; } @@ -294,6 +316,30 @@ static int32_t mndStbActionUpdate(SSdb *pSdb, SStbObj *pOld, SStbObj *pNew) { } } + if (pOld->ast1Len < pNew->ast1Len) { + void *pAst1 = taosMemoryMalloc(pNew->ast1Len); + if (pAst1 != NULL) { + taosMemoryFree(pOld->pAst1); + pOld->pAst1 = pAst1; + } else { + terrno = TSDB_CODE_OUT_OF_MEMORY; + mTrace("stb:%s, failed to perform update action since %s", pOld->name, terrstr()); + taosWUnLockLatch(&pOld->lock); + } + } + + if (pOld->ast2Len < pNew->ast2Len) { + void *pAst2 = taosMemoryMalloc(pNew->ast2Len); + if (pAst2 != NULL) { + taosMemoryFree(pOld->pAst2); + pOld->pAst2 = pAst2; + } else { + terrno = TSDB_CODE_OUT_OF_MEMORY; + mTrace("stb:%s, failed to perform update action since %s", pOld->name, terrstr()); + taosWUnLockLatch(&pOld->lock); + } + } + pOld->updateTime = pNew->updateTime; pOld->version = pNew->version; pOld->nextColId = pNew->nextColId; @@ -304,6 +350,12 @@ static int32_t mndStbActionUpdate(SSdb *pSdb, SStbObj *pOld, SStbObj *pNew) { if (pNew->commentLen != 0) { memcpy(pOld->comment, pNew->comment, TSDB_STB_COMMENT_LEN); } + if (pNew->ast1Len != 0) { + memcpy(pOld->pAst1, pNew->pAst1, pNew->ast1Len); + } + if (pNew->ast2Len != 0) { + memcpy(pOld->pAst2, pNew->pAst2, pNew->ast2Len); + } taosWUnLockLatch(&pOld->lock); return 0; } @@ -646,6 +698,26 @@ static int32_t mndCreateStb(SMnode *pMnode, SNodeMsg *pReq, SMCreateStbReq *pCre memcpy(stbObj.comment, pCreate->comment, stbObj.commentLen); } + stbObj.ast1Len = pCreate->ast1Len; + if (stbObj.ast1Len > 0) { + stbObj.pAst1 = taosMemoryCalloc(stbObj.ast1Len, 1); + if (stbObj.pAst1 == NULL) { + terrno = TSDB_CODE_OUT_OF_MEMORY; + return -1; + } + memcpy(stbObj.pAst1, pCreate->pAst1, stbObj.ast1Len); + } + + stbObj.ast2Len = pCreate->ast2Len; + if (stbObj.ast2Len > 0) { + stbObj.pAst2 = taosMemoryCalloc(stbObj.ast2Len, 1); + if (stbObj.pAst2 == NULL) { + terrno = TSDB_CODE_OUT_OF_MEMORY; + return -1; + } + memcpy(stbObj.pAst2, pCreate->pAst2, stbObj.ast2Len); + } + stbObj.pColumns = taosMemoryMalloc(stbObj.numOfColumns * sizeof(SSchema)); stbObj.pTags = taosMemoryMalloc(stbObj.numOfTags * sizeof(SSchema)); stbObj.pSmas = taosMemoryMalloc(stbObj.numOfSmas * sizeof(SSchema)); diff --git a/source/libs/parser/inc/parAst.h b/source/libs/parser/inc/parAst.h index 85f9b3399c0ff51d564264d92473bc3bcafdd4d3..d53181b76f481bda392765cd7c8201cb80630d57 100644 --- a/source/libs/parser/inc/parAst.h +++ b/source/libs/parser/inc/parAst.h @@ -53,6 +53,7 @@ typedef enum EDatabaseOptionType { DB_OPTION_VGROUPS, DB_OPTION_SINGLE_STABLE, DB_OPTION_STREAM_MODE, + DB_OPTION_STRICT, DB_OPTION_RETENTIONS } EDatabaseOptionType; diff --git a/source/libs/parser/inc/sql.y b/source/libs/parser/inc/sql.y index 93e56424df3b2d438a52638b4636320999df69d6..94913eb7c2a910e126aba041ac72f1fc0c318aae 100644 --- a/source/libs/parser/inc/sql.y +++ b/source/libs/parser/inc/sql.y @@ -161,6 +161,7 @@ db_options(A) ::= db_options(B) VGROUPS NK_INTEGER(C). db_options(A) ::= db_options(B) SINGLE_STABLE NK_INTEGER(C). { ((SDatabaseOptions*)B)->pSingleStable = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &C); A = B; } db_options(A) ::= db_options(B) STREAM_MODE NK_INTEGER(C). { ((SDatabaseOptions*)B)->pStreamMode = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &C); A = B; } db_options(A) ::= db_options(B) RETENTIONS retention_list(C). { ((SDatabaseOptions*)B)->pRetentions = C; A = B; } +db_options(A) ::= db_options(B) STRICT NK_INTEGER(C). { ((SDatabaseOptions*)B)->pStrict = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &C); A = B; } alter_db_options(A) ::= alter_db_option(B). { A = createDatabaseOptions(pCxt); A = setDatabaseAlterOption(pCxt, A, &B); } alter_db_options(A) ::= alter_db_options(B) alter_db_option(C). { A = setDatabaseAlterOption(pCxt, B, &C); } @@ -175,6 +176,7 @@ alter_db_option(A) ::= WAL NK_INTEGER(B). alter_db_option(A) ::= QUORUM NK_INTEGER(B). { A.type = DB_OPTION_QUORUM; A.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &B); } alter_db_option(A) ::= CACHELAST NK_INTEGER(B). { A.type = DB_OPTION_CACHELAST; A.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &B); } alter_db_option(A) ::= REPLICA NK_INTEGER(B). { A.type = DB_OPTION_REPLICA; A.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &B); } +alter_db_option(A) ::= STRICT NK_INTEGER(B). { A.type = DB_OPTION_STRICT; A.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &B); } %type integer_list { SNodeList* } %destructor integer_list { nodesDestroyList($$); } @@ -359,7 +361,7 @@ from_db_opt(A) ::= FROM db_name(B). %type func_name_list { SNodeList* } %destructor func_name_list { nodesDestroyList($$); } func_name_list(A) ::= func_name(B). { A = createNodeList(pCxt, B); } -func_name_list(A) ::= func_name_list(B) NK_COMMA col_name(C). { A = addNodeToList(pCxt, B, C); } +func_name_list(A) ::= func_name_list(B) NK_COMMA func_name(C). { A = addNodeToList(pCxt, B, C); } func_name(A) ::= function_name(B). { A = createFunctionNode(pCxt, &B, NULL); } diff --git a/source/libs/parser/src/parTokenizer.c b/source/libs/parser/src/parTokenizer.c index 2a191b7bf2ec51438f2a8385d125539d2806599a..d8ab3f8ced835fb137fc8623a226affab1df9df2 100644 --- a/source/libs/parser/src/parTokenizer.c +++ b/source/libs/parser/src/parTokenizer.c @@ -168,6 +168,7 @@ static SKeyword keywordTable[] = { {"STREAM", TK_STREAM}, {"STREAMS", TK_STREAMS}, {"STREAM_MODE", TK_STREAM_MODE}, + {"STRICT", TK_STRICT}, {"SYNCDB", TK_SYNCDB}, {"TABLE", TK_TABLE}, {"TABLES", TK_TABLES}, diff --git a/source/libs/parser/src/parTranslater.c b/source/libs/parser/src/parTranslater.c index 30fc0c69444354122eed3b46ca96003b2b532f67..35da51b6d2464afc6405d9cb39926b5b462e732f 100644 --- a/source/libs/parser/src/parTranslater.c +++ b/source/libs/parser/src/parTranslater.c @@ -198,6 +198,56 @@ static int32_t getDBVgVersion(STranslateContext* pCxt, const char* pDbFName, int return code; } +static int32_t getDBCfg(STranslateContext* pCxt, const char* pDbName, SDbCfgInfo* pInfo) { + SParseContext* pParCxt = pCxt->pParseCxt; + SName name; + tNameSetDbName(&name, pCxt->pParseCxt->acctId, pDbName, strlen(pDbName)); + char dbFname[TSDB_DB_FNAME_LEN] = {0}; + tNameGetFullDbName(&name, dbFname); + int32_t code = collectUseDatabaseImpl(dbFname, pCxt->pDbs); + if (TSDB_CODE_SUCCESS == code) { + code = catalogGetDBCfg(pParCxt->pCatalog, pParCxt->pTransporter, &pParCxt->mgmtEpSet, dbFname, pInfo); + } + if (TSDB_CODE_SUCCESS != code) { + parserError("catalogGetDBCfg error, code:%s, dbFName:%s", tstrerror(code), dbFname); + } + return code; +} + +static int32_t initTranslateContext(SParseContext* pParseCxt, STranslateContext* pCxt) { + pCxt->pParseCxt = pParseCxt; + pCxt->errCode = TSDB_CODE_SUCCESS; + pCxt->msgBuf.buf = pParseCxt->pMsg; + pCxt->msgBuf.len = pParseCxt->msgLen; + pCxt->pNsLevel = taosArrayInit(TARRAY_MIN_SIZE, POINTER_BYTES); + pCxt->currLevel = 0; + pCxt->currClause = 0; + pCxt->pDbs = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK); + pCxt->pTables = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK); + if (NULL == pCxt->pNsLevel || NULL == pCxt->pDbs || NULL == pCxt->pTables) { + return TSDB_CODE_OUT_OF_MEMORY; + } + return TSDB_CODE_SUCCESS; +} + +static void destroyTranslateContext(STranslateContext* pCxt) { + if (NULL != pCxt->pNsLevel) { + size_t size = taosArrayGetSize(pCxt->pNsLevel); + for (size_t i = 0; i < size; ++i) { + taosArrayDestroy(taosArrayGetP(pCxt->pNsLevel, i)); + } + taosArrayDestroy(pCxt->pNsLevel); + } + + if (NULL != pCxt->pCmdMsg) { + taosMemoryFreeClear(pCxt->pCmdMsg->pMsg); + taosMemoryFreeClear(pCxt->pCmdMsg); + } + + taosHashCleanup(pCxt->pDbs); + taosHashCleanup(pCxt->pTables); +} + static bool belongTable(const char* currentDb, const SColumnNode* pCol, const STableNode* pTable) { int cmp = 0; if ('\0' != pCol->dbName[0]) { @@ -749,15 +799,18 @@ static int32_t translateTable(STranslateContext* pCxt, SNode* pTable) { case QUERY_NODE_REAL_TABLE: { SRealTableNode* pRealTable = (SRealTableNode*)pTable; pRealTable->ratio = (NULL != pCxt->pExplainOpt ? pCxt->pExplainOpt->ratio : 1.0); - SName name; - code = getTableMetaImpl( - pCxt, toName(pCxt->pParseCxt->acctId, pRealTable->table.dbName, pRealTable->table.tableName, &name), - &(pRealTable->pMeta)); - if (TSDB_CODE_SUCCESS != code) { - return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_TABLE_NOT_EXIST, pRealTable->table.tableName); + // The SRealTableNode created through ROLLUP already has STableMeta. + if (NULL == pRealTable->pMeta) { + SName name; + code = getTableMetaImpl( + pCxt, toName(pCxt->pParseCxt->acctId, pRealTable->table.dbName, pRealTable->table.tableName, &name), + &(pRealTable->pMeta)); + if (TSDB_CODE_SUCCESS != code) { + return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_TABLE_NOT_EXIST, pRealTable->table.tableName); + } + code = setTableVgroupList(pCxt, &name, pRealTable); } pRealTable->table.precision = pRealTable->pMeta->tableInfo.precision; - code = setTableVgroupList(pCxt, &name, pRealTable); if (TSDB_CODE_SUCCESS == code) { code = addNamespace(pCxt, pRealTable); } @@ -1365,6 +1418,7 @@ static int32_t buildCreateDbReq(STranslateContext* pCxt, SCreateDatabaseStmt* pS pReq->streamMode = GET_OPTION_VAL(pStmt->pOptions->pStreamMode, TSDB_DEFAULT_DB_STREAM_MODE_OPTION); pReq->ttl = GET_OPTION_VAL(pStmt->pOptions->pTtl, TSDB_DEFAULT_DB_TTL_OPTION); pReq->singleSTable = GET_OPTION_VAL(pStmt->pOptions->pSingleStable, TSDB_DEFAULT_DB_SINGLE_STABLE_OPTION); + // pReq->strict = GET_OPTION_VAL(pStmt->pOptions->pStrict, TSDB_DEFAULT_DB_SINGLE_STABLE_OPTION); return buildCreateDbRetentions(pStmt->pOptions->pRetentions, pReq); } @@ -1573,12 +1627,16 @@ static int32_t checkDatabaseOptions(STranslateContext* pCxt, SDatabaseOptions* p TSDB_MAX_DB_SINGLE_STABLE_OPTION); } if (TSDB_CODE_SUCCESS == code) { - code = checkDbEnumOption(pCxt, "streamMode", pOptions->pStreamMode, TSDB_MIN_DB_STREAM_MODE_OPTION, - TSDB_MAX_DB_STREAM_MODE_OPTION); + code = checkDbEnumOption(pCxt, "streamMode", pOptions->pStreamMode, TSDB_DB_STREAM_MODE_OPTION_OFF, + TSDB_DB_STREAM_MODE_OPTION_ON); } if (TSDB_CODE_SUCCESS == code) { code = checkDbRetentionsOption(pCxt, pOptions->pRetentions); } + if (TSDB_CODE_SUCCESS == code) { + code = checkDbEnumOption(pCxt, "strict", pOptions->pStrict, TSDB_DB_STRICT_OPTION_OFF, + TSDB_DB_STRICT_OPTION_ON); + } return code; } @@ -1789,35 +1847,259 @@ static int32_t getAggregationMethod(SNodeList* pFuncs) { return ((SFunctionNode*)nodesListGetNode(pFuncs, 0))->funcId; } -static int32_t translateCreateSuperTable(STranslateContext* pCxt, SCreateTableStmt* pStmt) { - int32_t code = checkCreateTable(pCxt, pStmt); - if (TSDB_CODE_SUCCESS != code) { +static void toSchema(const SColumnDefNode* pCol, col_id_t colId, SSchema* pSchema) { + int8_t flags = 0; + if (pCol->sma) { + flags |= SCHEMA_SMA_ON; + } + pSchema->colId = colId; + pSchema->type = pCol->dataType.type; + pSchema->bytes = calcTypeBytes(pCol->dataType); + pSchema->flags = flags; + strcpy(pSchema->name, pCol->colName); +} + +typedef struct SSampleAstInfo { + const char* pDbName; + const char* pTableName; + SNodeList* pFuncs; + SNode* pInterval; + SNode* pOffset; + SNode* pSliding; + STableMeta* pRollupTableMeta; +} SSampleAstInfo; + +static int32_t buildSampleAst(STranslateContext* pCxt, SSampleAstInfo* pInfo, char** pAst, int32_t* pLen) { + SSelectStmt* pSelect = nodesMakeNode(QUERY_NODE_SELECT_STMT); + if (NULL == pSelect) { + return TSDB_CODE_OUT_OF_MEMORY; + } + sprintf(pSelect->stmtName, "%p", pSelect); + + SRealTableNode* pTable = nodesMakeNode(QUERY_NODE_REAL_TABLE); + if (NULL == pTable) { + nodesDestroyNode(pSelect); + return TSDB_CODE_OUT_OF_MEMORY; + } + strcpy(pTable->table.dbName, pInfo->pDbName); + strcpy(pTable->table.tableName, pInfo->pTableName); + TSWAP(pTable->pMeta, pInfo->pRollupTableMeta, STableMeta*); + pSelect->pFromTable = (SNode*)pTable; + + TSWAP(pSelect->pProjectionList, pInfo->pFuncs, SNodeList*); + SFunctionNode* pFunc = nodesMakeNode(QUERY_NODE_FUNCTION); + if (NULL == pSelect->pProjectionList || NULL == pFunc) { + nodesDestroyNode(pSelect); + return TSDB_CODE_OUT_OF_MEMORY; + } + strcpy(pFunc->functionName, "_wstartts"); + nodesListPushFront(pSelect->pProjectionList, pFunc); + SNode* pProject = NULL; + FOREACH(pProject, pSelect->pProjectionList) { sprintf(((SExprNode*)pProject)->aliasName, "#%p", pProject); } + + SIntervalWindowNode* pInterval = nodesMakeNode(QUERY_NODE_INTERVAL_WINDOW); + if (NULL == pInterval) { + nodesDestroyNode(pSelect); + return TSDB_CODE_OUT_OF_MEMORY; + } + pSelect->pWindow = (SNode*)pInterval; + TSWAP(pInterval->pInterval, pInfo->pInterval, SNode*); + TSWAP(pInterval->pOffset, pInfo->pOffset, SNode*); + TSWAP(pInterval->pSliding, pInfo->pSliding, SNode*); + pInterval->pCol = nodesMakeNode(QUERY_NODE_COLUMN); + if (NULL == pInterval->pCol) { + nodesDestroyNode(pSelect); + return TSDB_CODE_OUT_OF_MEMORY; + } + ((SColumnNode*)pInterval->pCol)->colId = PRIMARYKEY_TIMESTAMP_COL_ID; + strcpy(((SColumnNode*)pInterval->pCol)->colName, PK_TS_COL_INTERNAL_NAME); + + int32_t code = translateQuery(pCxt, (SNode*)pSelect); + if (TSDB_CODE_SUCCESS == code) { + code = nodesNodeToString(pSelect, false, pAst, pLen); + } + nodesDestroyNode(pSelect); + return code; +} + +static void clearSampleAstInfo(SSampleAstInfo* pInfo) { + nodesDestroyList(pInfo->pFuncs); + nodesDestroyNode(pInfo->pInterval); + nodesDestroyNode(pInfo->pOffset); + nodesDestroyNode(pInfo->pSliding); +} + +static SNode* makeIntervalVal(SRetention* pRetension, int8_t precision) { + SValueNode* pVal = nodesMakeNode(QUERY_NODE_VALUE); + if (NULL == pVal) { + return NULL; + } + int64_t timeVal = convertTimeFromPrecisionToUnit(pRetension->freq, precision, pRetension->freqUnit); + char buf[20] = {0}; + int32_t len = snprintf(buf, sizeof(buf), "%"PRId64"%c", timeVal, pRetension->freqUnit); + pVal->literal = strndup(buf, len); + if (NULL == pVal->literal) { + nodesDestroyNode(pVal); + return NULL; + } + pVal->isDuration = true; + pVal->node.resType.type = TSDB_DATA_TYPE_BIGINT; + pVal->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BIGINT].bytes; + pVal->node.resType.precision = precision; + return (SNode*)pVal; +} + +static SNode* createColumnFromDef(SColumnDefNode* pDef) { + SColumnNode* pCol = nodesMakeNode(QUERY_NODE_COLUMN); + if (NULL == pCol) { + return NULL; + } + strcpy(pCol->colName, pDef->colName); + return (SNode*)pCol; +} + +static SNode* createRollupFunc(SNode* pSrcFunc, SColumnDefNode* pColDef) { + SFunctionNode* pFunc = nodesCloneNode(pSrcFunc); + if (NULL == pFunc) { + return NULL; + } + if (TSDB_CODE_SUCCESS != nodesListMakeStrictAppend(&pFunc->pParameterList, createColumnFromDef(pColDef))) { + nodesDestroyNode(pFunc); + return NULL; + } + return (SNode*)pFunc; +} + +static SNodeList* createRollupFuncs(SCreateTableStmt* pStmt) { + SNodeList* pFuncs = nodesMakeList(); + if (NULL == pFuncs) { + return NULL; + } + + SNode* pFunc = NULL; + FOREACH(pFunc, pStmt->pOptions->pFuncs) { + SNode* pCol = NULL; + bool primaryKey = true; + FOREACH(pCol, pStmt->pCols) { + if (primaryKey) { + primaryKey = false; + continue; + } + if (TSDB_CODE_SUCCESS != nodesListStrictAppend(pFuncs, createRollupFunc(pFunc, (SColumnDefNode*)pCol))) { + nodesDestroyList(pFuncs); + return NULL; + } + } + } + + return pFuncs; +} + +static STableMeta* createRollupTableMeta(SCreateTableStmt* pStmt, int8_t precision) { + int32_t numOfField = LIST_LENGTH(pStmt->pCols) + LIST_LENGTH(pStmt->pTags); + STableMeta* pMeta = taosMemoryCalloc(1, sizeof(STableMeta) + numOfField * sizeof(SSchema)); + if (NULL == pMeta) { + return NULL; + } + pMeta->tableType = TSDB_SUPER_TABLE; + pMeta->tableInfo.numOfTags = LIST_LENGTH(pStmt->pTags); + pMeta->tableInfo.precision = precision; + pMeta->tableInfo.numOfColumns = LIST_LENGTH(pStmt->pCols); + + int32_t index = 0; + SNode* pCol = NULL; + FOREACH(pCol, pStmt->pCols) { + toSchema((SColumnDefNode*)pCol, index + 1, pMeta->schema + index); + ++index; + } + SNode* pTag = NULL; + FOREACH(pTag, pStmt->pTags) { + toSchema((SColumnDefNode*)pTag, index + 1, pMeta->schema + index); + ++index; + } + + return pMeta; +} + +static int32_t buildSampleAstInfoByTable(STranslateContext* pCxt, + SCreateTableStmt* pStmt, SRetention* pRetension, int8_t precision, SSampleAstInfo* pInfo) { + pInfo->pDbName = pStmt->dbName; + pInfo->pTableName = pStmt->tableName; + pInfo->pFuncs = createRollupFuncs(pStmt); + pInfo->pInterval = makeIntervalVal(pRetension, precision); + pInfo->pRollupTableMeta = createRollupTableMeta(pStmt, precision); + if (NULL == pInfo->pFuncs || NULL == pInfo->pInterval || NULL == pInfo->pRollupTableMeta) { + return TSDB_CODE_OUT_OF_MEMORY; + } + return TSDB_CODE_SUCCESS; +} + +static int32_t getRollupAst(STranslateContext* pCxt, + SCreateTableStmt* pStmt, SRetention* pRetension, int8_t precision, char** pAst, int32_t* pLen) { + SSampleAstInfo info = {0}; + int32_t code = buildSampleAstInfoByTable(pCxt, pStmt, pRetension, precision, &info); + if (TSDB_CODE_SUCCESS == code) { + code = buildSampleAst(pCxt, &info, pAst, pLen); + } + clearSampleAstInfo(&info); + return code; +} + +static int32_t buildRollupAst(STranslateContext* pCxt, SCreateTableStmt* pStmt, SMCreateStbReq* pReq) { + SDbCfgInfo dbCfg = {0}; + int32_t code = getDBCfg(pCxt, pStmt->dbName, &dbCfg); + int32_t num = taosArrayGetSize(dbCfg.pRetensions); + if (TSDB_CODE_SUCCESS != code || num < 2) { return code; } + for (int32_t i = 1; i < num; ++i) { + SRetention *pRetension = taosArrayGet(dbCfg.pRetensions, i); + STranslateContext cxt = {0}; + initTranslateContext(pCxt->pParseCxt, &cxt); + code = getRollupAst(&cxt, pStmt, pRetension, dbCfg.precision, + 1 == i ? &pReq->pAst1 : &pReq->pAst2, 1 == i ? &pReq->ast1Len : &pReq->ast2Len); + destroyTranslateContext(&cxt); + if (TSDB_CODE_SUCCESS != code) { + break; + } + } + return code; +} - SMCreateStbReq createReq = {0}; - createReq.igExists = pStmt->ignoreExists; - createReq.aggregationMethod = getAggregationMethod(pStmt->pOptions->pFuncs); - createReq.xFilesFactor = GET_OPTION_VAL(pStmt->pOptions->pFilesFactor, TSDB_DEFAULT_DB_FILE_FACTOR); - createReq.delay = GET_OPTION_VAL(pStmt->pOptions->pDelay, TSDB_DEFAULT_DB_DELAY); - columnDefNodeToField(pStmt->pCols, &createReq.pColumns); - columnDefNodeToField(pStmt->pTags, &createReq.pTags); - createReq.numOfColumns = LIST_LENGTH(pStmt->pCols); - createReq.numOfTags = LIST_LENGTH(pStmt->pTags); +static int32_t buildCreateStbReq(STranslateContext* pCxt, SCreateTableStmt* pStmt, SMCreateStbReq* pReq) { + pReq->igExists = pStmt->ignoreExists; + pReq->aggregationMethod = getAggregationMethod(pStmt->pOptions->pFuncs); + pReq->xFilesFactor = GET_OPTION_VAL(pStmt->pOptions->pFilesFactor, TSDB_DEFAULT_DB_FILE_FACTOR); + pReq->delay = GET_OPTION_VAL(pStmt->pOptions->pDelay, TSDB_DEFAULT_DB_DELAY); + columnDefNodeToField(pStmt->pCols, &pReq->pColumns); + columnDefNodeToField(pStmt->pTags, &pReq->pTags); + pReq->numOfColumns = LIST_LENGTH(pStmt->pCols); + pReq->numOfTags = LIST_LENGTH(pStmt->pTags); if (NULL == pStmt->pOptions->pSma) { - columnDefNodeToField(pStmt->pCols, &createReq.pSmas); - createReq.numOfSmas = createReq.numOfColumns; + columnDefNodeToField(pStmt->pCols, &pReq->pSmas); + pReq->numOfSmas = pReq->numOfColumns; } else { - columnNodeToField(pStmt->pOptions->pSma, &createReq.pSmas); - createReq.numOfSmas = LIST_LENGTH(pStmt->pOptions->pSma); + columnNodeToField(pStmt->pOptions->pSma, &pReq->pSmas); + pReq->numOfSmas = LIST_LENGTH(pStmt->pOptions->pSma); } SName tableName = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId}; strcpy(tableName.dbname, pStmt->dbName); strcpy(tableName.tname, pStmt->tableName); - tNameExtractFullName(&tableName, createReq.name); + tNameExtractFullName(&tableName, pReq->name); + + return buildRollupAst(pCxt, pStmt, pReq); +} - code = buildCmdMsg(pCxt, TDMT_MND_CREATE_STB, (FSerializeFunc)tSerializeSMCreateStbReq, &createReq); +static int32_t translateCreateSuperTable(STranslateContext* pCxt, SCreateTableStmt* pStmt) { + SMCreateStbReq createReq = {0}; + int32_t code = checkCreateTable(pCxt, pStmt); + if (TSDB_CODE_SUCCESS == code) { + code = buildCreateStbReq(pCxt, pStmt, &createReq); + } + if (TSDB_CODE_SUCCESS == code) { + code = buildCmdMsg(pCxt, TDMT_MND_CREATE_STB, (FSerializeFunc)tSerializeSMCreateStbReq, &createReq); + } tFreeSMCreateStbReq(&createReq); return code; } @@ -1983,20 +2265,20 @@ static int32_t translateAlterDnode(STranslateContext* pCxt, SAlterDnodeStmt* pSt } static int32_t nodeTypeToShowType(ENodeType nt) { - // switch (nt) { - // case QUERY_NODE_SHOW_CONNECTIONS_STMT: - // return TSDB_MGMT_TABLE_CONNS; - // case QUERY_NODE_SHOW_LICENCE_STMT: - // return TSDB_MGMT_TABLE_GRANTS; - // case QUERY_NODE_SHOW_QUERIES_STMT: - // return TSDB_MGMT_TABLE_QUERIES; - // case QUERY_NODE_SHOW_TOPICS_STMT: - // return 0; // todo - // case QUERY_NODE_SHOW_VARIABLE_STMT: - // return TSDB_MGMT_TABLE_VARIABLES; - // default: - // break; - // } + switch (nt) { + case QUERY_NODE_SHOW_CONNECTIONS_STMT: + return TSDB_MGMT_TABLE_CONNS; + case QUERY_NODE_SHOW_LICENCE_STMT: + return TSDB_MGMT_TABLE_GRANTS; + case QUERY_NODE_SHOW_QUERIES_STMT: + return TSDB_MGMT_TABLE_QUERIES; + case QUERY_NODE_SHOW_TOPICS_STMT: + return 0; // todo + case QUERY_NODE_SHOW_VARIABLE_STMT: + return 0; // todo + default: + break; + } return 0; } @@ -2027,57 +2309,28 @@ static int32_t getSmaIndexExpr(STranslateContext* pCxt, SCreateIndexStmt* pStmt, return nodesListToString(pStmt->pOptions->pFuncs, false, pExpr, pLen); } -static int32_t getSmaIndexBuildAst(STranslateContext* pCxt, SCreateIndexStmt* pStmt, char** pAst, int32_t* pLen) { - SSelectStmt* pSelect = nodesMakeNode(QUERY_NODE_SELECT_STMT); - if (NULL == pSelect) { +static int32_t buildSampleAstInfoByIndex(STranslateContext* pCxt, SCreateIndexStmt* pStmt, SSampleAstInfo* pInfo) { + pInfo->pDbName = pCxt->pParseCxt->db; + pInfo->pTableName = pStmt->tableName; + pInfo->pFuncs = nodesCloneList(pStmt->pOptions->pFuncs); + pInfo->pInterval = nodesCloneNode(pStmt->pOptions->pInterval); + pInfo->pOffset = nodesCloneNode(pStmt->pOptions->pOffset); + pInfo->pSliding = nodesCloneNode(pStmt->pOptions->pSliding); + if (NULL == pInfo->pFuncs || NULL == pInfo->pInterval || + (NULL != pStmt->pOptions->pOffset && NULL == pInfo->pOffset) || + (NULL != pStmt->pOptions->pSliding && NULL == pInfo->pSliding)) { return TSDB_CODE_OUT_OF_MEMORY; } - sprintf(pSelect->stmtName, "%p", pSelect); - - SRealTableNode* pTable = nodesMakeNode(QUERY_NODE_REAL_TABLE); - if (NULL == pTable) { - nodesDestroyNode(pSelect); - return TSDB_CODE_OUT_OF_MEMORY; - } - strcpy(pTable->table.dbName, pCxt->pParseCxt->db); - strcpy(pTable->table.tableName, pStmt->tableName); - pSelect->pFromTable = (SNode*)pTable; - - pSelect->pProjectionList = nodesCloneList(pStmt->pOptions->pFuncs); - SFunctionNode* pFunc = nodesMakeNode(QUERY_NODE_FUNCTION); - if (NULL == pSelect->pProjectionList || NULL == pFunc) { - nodesDestroyNode(pSelect); - return TSDB_CODE_OUT_OF_MEMORY; - } - strcpy(pFunc->functionName, "_wstartts"); - nodesListPushFront(pSelect->pProjectionList, pFunc); - SNode* pProject = NULL; - FOREACH(pProject, pSelect->pProjectionList) { sprintf(((SExprNode*)pProject)->aliasName, "#sma_%p", pProject); } - - SIntervalWindowNode* pInterval = nodesMakeNode(QUERY_NODE_INTERVAL_WINDOW); - if (NULL == pInterval) { - nodesDestroyNode(pSelect); - return TSDB_CODE_OUT_OF_MEMORY; - } - pSelect->pWindow = (SNode*)pInterval; - pInterval->pCol = nodesMakeNode(QUERY_NODE_COLUMN); - pInterval->pInterval = nodesCloneNode(pStmt->pOptions->pInterval); - pInterval->pOffset = nodesCloneNode(pStmt->pOptions->pOffset); - pInterval->pSliding = nodesCloneNode(pStmt->pOptions->pSliding); - if (NULL == pInterval->pCol || NULL == pInterval->pInterval || - (NULL != pStmt->pOptions->pOffset && NULL == pInterval->pOffset) || - (NULL != pStmt->pOptions->pSliding && NULL == pInterval->pSliding)) { - nodesDestroyNode(pSelect); - return TSDB_CODE_OUT_OF_MEMORY; - } - ((SColumnNode*)pInterval->pCol)->colId = PRIMARYKEY_TIMESTAMP_COL_ID; - strcpy(((SColumnNode*)pInterval->pCol)->colName, PK_TS_COL_INTERNAL_NAME); + return TSDB_CODE_SUCCESS; +} - int32_t code = translateQuery(pCxt, (SNode*)pSelect); +static int32_t getSmaIndexAst(STranslateContext* pCxt, SCreateIndexStmt* pStmt, char** pAst, int32_t* pLen) { + SSampleAstInfo info = {0}; + int32_t code = buildSampleAstInfoByIndex(pCxt, pStmt, &info); if (TSDB_CODE_SUCCESS == code) { - code = nodesNodeToString(pSelect, false, pAst, pLen); + code = buildSampleAst(pCxt, &info, pAst, pLen); } - nodesDestroyNode(pSelect); + clearSampleAstInfo(&info); return code; } @@ -2106,7 +2359,7 @@ static int32_t buildCreateSmaReq(STranslateContext* pCxt, SCreateIndexStmt* pStm code = getSmaIndexExpr(pCxt, pStmt, &pReq->expr, &pReq->exprLen); } if (TSDB_CODE_SUCCESS == code) { - code = getSmaIndexBuildAst(pCxt, pStmt, &pReq->ast, &pReq->astLen); + code = getSmaIndexAst(pCxt, pStmt, &pReq->ast, &pReq->astLen); } return code; @@ -2129,10 +2382,12 @@ static int32_t translateCreateSmaIndex(STranslateContext* pCxt, SCreateIndexStmt tFreeSMCreateSmaReq(&createSmaReq); return code; } + static int32_t buildCreateFullTextReq(STranslateContext* pCxt, SCreateIndexStmt* pStmt, SMCreateFullTextReq* pReq) { // impl later return 0; } + static int32_t translateCreateFullTextIndex(STranslateContext* pCxt, SCreateIndexStmt* pStmt) { SMCreateFullTextReq createFTReq = {0}; int32_t code = buildCreateFullTextReq(pCxt, pStmt, &createFTReq); @@ -2535,24 +2790,6 @@ int32_t extractResultSchema(const SNode* pRoot, int32_t* numOfCols, SSchema** pS return TSDB_CODE_FAILED; } -static void destroyTranslateContext(STranslateContext* pCxt) { - if (NULL != pCxt->pNsLevel) { - size_t size = taosArrayGetSize(pCxt->pNsLevel); - for (size_t i = 0; i < size; ++i) { - taosArrayDestroy(taosArrayGetP(pCxt->pNsLevel, i)); - } - taosArrayDestroy(pCxt->pNsLevel); - } - - if (NULL != pCxt->pCmdMsg) { - taosMemoryFreeClear(pCxt->pCmdMsg->pMsg); - taosMemoryFreeClear(pCxt->pCmdMsg); - } - - taosHashCleanup(pCxt->pDbs); - taosHashCleanup(pCxt->pTables); -} - static const char* getSysDbName(ENodeType type) { switch (type) { case QUERY_NODE_SHOW_DATABASES_STMT: @@ -2613,8 +2850,9 @@ static const char* getSysTableName(ENodeType type) { case QUERY_NODE_SHOW_LICENCE_STMT: return TSDB_INS_TABLE_LICENCES; case QUERY_NODE_SHOW_CONNECTIONS_STMT: + return TSDB_PERFS_TABLE_CONNECTIONS; case QUERY_NODE_SHOW_QUERIES_STMT: - // todo + return TSDB_PERFS_TABLE_QUERIES; default: break; } @@ -2739,18 +2977,6 @@ typedef struct SVgroupTablesBatch { char dbName[TSDB_DB_NAME_LEN]; } SVgroupTablesBatch; -static void toSchemaEx(const SColumnDefNode* pCol, col_id_t colId, SSchema* pSchema) { - int8_t flags = 0; - if (pCol->sma) { - flags |= SCHEMA_SMA_ON; - } - pSchema->colId = colId; - pSchema->type = pCol->dataType.type; - pSchema->bytes = calcTypeBytes(pCol->dataType); - pSchema->flags = flags; - strcpy(pSchema->name, pCol->colName); -} - static void destroyCreateTbReq(SVCreateTbReq* pReq) { taosMemoryFreeClear(pReq->name); taosMemoryFreeClear(pReq->ntbCfg.pSchema); @@ -2798,7 +3024,7 @@ static int32_t buildNormalTableBatchReq(int32_t acctId, const SCreateTableStmt* SNode* pCol; col_id_t index = 0; FOREACH(pCol, pStmt->pCols) { - toSchemaEx((SColumnDefNode*)pCol, index + 1, req.ntbCfg.pSchema + index); + toSchema((SColumnDefNode*)pCol, index + 1, req.ntbCfg.pSchema + index); ++index; } if (TSDB_CODE_SUCCESS != buildSmaParam(pStmt->pOptions, &req)) { @@ -3224,19 +3450,11 @@ static int32_t setQuery(STranslateContext* pCxt, SQuery* pQuery) { } int32_t translate(SParseContext* pParseCxt, SQuery* pQuery) { - STranslateContext cxt = { - .pParseCxt = pParseCxt, - .errCode = TSDB_CODE_SUCCESS, - .msgBuf = {.buf = pParseCxt->pMsg, .len = pParseCxt->msgLen}, - .pNsLevel = taosArrayInit(TARRAY_MIN_SIZE, POINTER_BYTES), - .currLevel = 0, - .currClause = 0, - .pDbs = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK), - .pTables = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK)}; - if (NULL == cxt.pNsLevel) { - return TSDB_CODE_OUT_OF_MEMORY; + STranslateContext cxt = {0}; + int32_t code = initTranslateContext(pParseCxt, &cxt); + if (TSDB_CODE_SUCCESS == code) { + code = fmFuncMgtInit(); } - int32_t code = fmFuncMgtInit(); if (TSDB_CODE_SUCCESS == code) { code = rewriteQuery(&cxt, pQuery); } diff --git a/source/libs/parser/src/sql.c b/source/libs/parser/src/sql.c index 110f4f9fb595f6cded70977bbd563c2b50ee20c7..f8396dc50c4cb35d3ab86f814816d545577361ce 100644 --- a/source/libs/parser/src/sql.c +++ b/source/libs/parser/src/sql.c @@ -100,24 +100,24 @@ #endif /************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int -#define YYNOCODE 334 +#define YYNOCODE 335 #define YYACTIONTYPE unsigned short int #define ParseTOKENTYPE SToken typedef union { int yyinit; ParseTOKENTYPE yy0; - SAlterOption yy29; - EJoinType yy164; - ENullOrder yy209; - SDataType yy388; - EOperatorType yy416; - SNode* yy456; - SToken yy537; - EOrder yy626; - SNodeList* yy632; - EFillMode yy646; - bool yy649; - int32_t yy652; + SNode* yy42; + EJoinType yy102; + ENullOrder yy197; + bool yy237; + int32_t yy240; + SNodeList* yy244; + EOperatorType yy270; + SDataType yy314; + SAlterOption yy325; + SToken yy359; + EOrder yy508; + EFillMode yy544; } YYMINORTYPE; #ifndef YYSTACKDEPTH #define YYSTACKDEPTH 100 @@ -132,17 +132,17 @@ typedef union { #define ParseCTX_PARAM #define ParseCTX_FETCH #define ParseCTX_STORE -#define YYNSTATE 568 -#define YYNRULE 433 -#define YYNTOKEN 220 -#define YY_MAX_SHIFT 567 -#define YY_MIN_SHIFTREDUCE 843 -#define YY_MAX_SHIFTREDUCE 1275 -#define YY_ERROR_ACTION 1276 -#define YY_ACCEPT_ACTION 1277 -#define YY_NO_ACTION 1278 -#define YY_MIN_REDUCE 1279 -#define YY_MAX_REDUCE 1711 +#define YYNSTATE 570 +#define YYNRULE 435 +#define YYNTOKEN 221 +#define YY_MAX_SHIFT 569 +#define YY_MIN_SHIFTREDUCE 847 +#define YY_MAX_SHIFTREDUCE 1281 +#define YY_ERROR_ACTION 1282 +#define YY_ACCEPT_ACTION 1283 +#define YY_NO_ACTION 1284 +#define YY_MIN_REDUCE 1285 +#define YY_MAX_REDUCE 1719 /************* End control #defines *******************************************/ #define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0]))) @@ -209,534 +209,536 @@ typedef union { ** yy_default[] Default action for each state. ** *********** Begin parsing tables **********************************************/ -#define YY_ACTTAB_COUNT (1863) +#define YY_ACTTAB_COUNT (1813) static const YYACTIONTYPE yy_action[] = { - /* 0 */ 1390, 1690, 1388, 1563, 268, 26, 203, 323, 482, 1277, - /* 10 */ 469, 1549, 33, 31, 1689, 1563, 1492, 77, 1688, 1302, - /* 20 */ 277, 1549, 1096, 285, 380, 1545, 1552, 1579, 34, 32, - /* 30 */ 30, 29, 28, 1399, 466, 1545, 1551, 248, 1094, 1579, - /* 40 */ 1549, 481, 53, 417, 465, 1535, 466, 441, 1535, 1301, - /* 50 */ 12, 33, 31, 1218, 1545, 1551, 465, 1102, 481, 277, - /* 60 */ 1535, 1096, 293, 1395, 1535, 445, 125, 1564, 468, 1566, - /* 70 */ 1567, 464, 104, 459, 1, 482, 359, 1094, 72, 1564, - /* 80 */ 468, 1566, 1567, 464, 321, 459, 1377, 418, 1629, 12, - /* 90 */ 482, 1232, 249, 1625, 1535, 36, 1102, 564, 62, 77, - /* 100 */ 1399, 1690, 33, 31, 1690, 123, 387, 1291, 102, 1095, - /* 110 */ 277, 1704, 1096, 1, 136, 1399, 1375, 136, 1688, 1392, - /* 120 */ 22, 1688, 443, 132, 1636, 1637, 1690, 1641, 1094, 1280, - /* 130 */ 34, 32, 30, 29, 28, 359, 564, 1331, 1448, 136, - /* 140 */ 12, 1117, 481, 1688, 267, 1579, 1097, 1102, 1095, 1446, - /* 150 */ 87, 127, 466, 86, 85, 84, 83, 82, 81, 80, - /* 160 */ 79, 78, 1440, 469, 1, 518, 280, 1100, 1101, 1491, - /* 170 */ 1145, 1146, 1147, 1148, 1149, 1150, 1151, 461, 1156, 1157, - /* 180 */ 1158, 1159, 1160, 1161, 1162, 1097, 434, 564, 431, 395, - /* 190 */ 316, 389, 315, 560, 559, 394, 36, 137, 101, 1095, - /* 200 */ 390, 388, 137, 391, 55, 266, 1100, 1101, 174, 1145, - /* 210 */ 1146, 1147, 1148, 1149, 1150, 1151, 461, 1156, 1157, 1158, - /* 220 */ 1159, 1160, 1161, 1162, 482, 482, 482, 441, 482, 931, - /* 230 */ 33, 31, 452, 322, 330, 331, 1097, 358, 277, 880, - /* 240 */ 1096, 879, 137, 34, 32, 30, 29, 28, 933, 1399, - /* 250 */ 1399, 1399, 104, 1399, 436, 432, 1094, 1100, 1101, 881, - /* 260 */ 1145, 1146, 1147, 1148, 1149, 1150, 1151, 461, 1156, 1157, - /* 270 */ 1158, 1159, 1160, 1161, 1162, 1102, 33, 31, 1163, 385, - /* 280 */ 384, 250, 345, 143, 277, 1300, 1096, 1328, 102, 521, - /* 290 */ 87, 1371, 7, 86, 85, 84, 83, 82, 81, 80, - /* 300 */ 79, 78, 1094, 133, 1636, 1637, 1132, 1641, 281, 51, - /* 310 */ 1119, 395, 50, 389, 1180, 564, 121, 394, 137, 137, - /* 320 */ 101, 1102, 390, 388, 1401, 391, 1242, 1095, 147, 146, - /* 330 */ 1535, 317, 260, 34, 32, 30, 29, 28, 7, 540, - /* 340 */ 539, 538, 537, 292, 879, 536, 535, 534, 107, 529, - /* 350 */ 528, 527, 526, 525, 524, 523, 522, 114, 100, 53, - /* 360 */ 378, 564, 383, 1181, 1097, 428, 1240, 1241, 1243, 1244, - /* 370 */ 1690, 124, 99, 1095, 261, 1357, 259, 258, 453, 382, - /* 380 */ 1394, 1186, 435, 136, 386, 1100, 1101, 1688, 1145, 1146, - /* 390 */ 1147, 1148, 1149, 1150, 1151, 461, 1156, 1157, 1158, 1159, - /* 400 */ 1160, 1161, 1162, 441, 33, 31, 393, 392, 441, 532, - /* 410 */ 1097, 1120, 277, 311, 1096, 137, 25, 275, 1175, 1176, - /* 420 */ 1177, 1178, 1179, 1183, 1184, 1185, 515, 514, 104, 456, - /* 430 */ 1094, 1100, 1101, 104, 1145, 1146, 1147, 1148, 1149, 1150, - /* 440 */ 1151, 461, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1102, - /* 450 */ 33, 31, 445, 482, 409, 287, 69, 1096, 277, 120, - /* 460 */ 1096, 1448, 1396, 121, 102, 1121, 7, 282, 905, 102, - /* 470 */ 105, 1401, 1446, 1094, 9, 8, 1094, 1391, 1399, 134, - /* 480 */ 1636, 1637, 449, 1641, 196, 1636, 440, 906, 439, 564, - /* 490 */ 1376, 1690, 1102, 1690, 1299, 1102, 34, 32, 30, 29, - /* 500 */ 28, 1095, 1318, 1118, 136, 1298, 136, 518, 1688, 1297, - /* 510 */ 1688, 1296, 1, 969, 505, 504, 503, 973, 502, 975, - /* 520 */ 976, 501, 978, 498, 396, 984, 495, 986, 987, 492, - /* 530 */ 489, 247, 564, 1117, 288, 564, 482, 508, 1097, 1535, - /* 540 */ 338, 1482, 1484, 350, 1095, 1516, 1172, 1095, 1194, 1295, - /* 550 */ 1535, 106, 351, 100, 1535, 513, 1535, 383, 1313, 1100, - /* 560 */ 1101, 1399, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 461, - /* 570 */ 1156, 1157, 1158, 1159, 1160, 1161, 1162, 516, 1479, 386, - /* 580 */ 398, 1097, 482, 198, 1097, 145, 34, 32, 30, 29, - /* 590 */ 28, 479, 225, 1448, 1535, 1429, 512, 511, 510, 289, - /* 600 */ 509, 520, 1100, 1101, 1446, 1100, 1101, 1399, 1145, 1146, - /* 610 */ 1147, 1148, 1149, 1150, 1151, 461, 1156, 1157, 1158, 1159, - /* 620 */ 1160, 1161, 1162, 1563, 250, 349, 450, 1294, 344, 343, - /* 630 */ 342, 341, 340, 1384, 337, 336, 335, 334, 333, 329, - /* 640 */ 328, 327, 326, 325, 324, 448, 482, 1579, 34, 32, - /* 650 */ 30, 29, 28, 482, 444, 480, 567, 1180, 1182, 290, - /* 660 */ 482, 1386, 217, 1293, 465, 533, 531, 121, 1535, 291, - /* 670 */ 221, 1399, 1535, 98, 1563, 1401, 1187, 1290, 1399, 556, - /* 680 */ 1289, 552, 548, 544, 220, 1399, 73, 1564, 468, 1566, - /* 690 */ 1567, 464, 1122, 459, 1648, 1213, 1629, 6, 1579, 1643, - /* 700 */ 270, 1625, 131, 1288, 1287, 444, 1181, 1448, 1535, 1286, - /* 710 */ 70, 23, 1285, 215, 199, 465, 24, 1382, 1483, 1535, - /* 720 */ 424, 1656, 1535, 1640, 1186, 1535, 34, 32, 30, 29, - /* 730 */ 28, 30, 29, 28, 1448, 1284, 1217, 73, 1564, 468, - /* 740 */ 1566, 1567, 464, 478, 459, 1447, 1643, 1629, 1535, 1535, - /* 750 */ 1225, 270, 1625, 131, 1535, 1563, 1119, 1535, 400, 25, - /* 760 */ 275, 1175, 1176, 1177, 1178, 1179, 1183, 1184, 1185, 1283, - /* 770 */ 1639, 423, 1657, 408, 180, 1272, 1524, 1311, 1643, 1579, - /* 780 */ 1535, 34, 32, 30, 29, 28, 466, 173, 1168, 1074, - /* 790 */ 403, 176, 1282, 177, 1119, 397, 465, 121, 308, 401, - /* 800 */ 1535, 172, 1638, 165, 167, 1402, 163, 166, 1082, 1083, - /* 810 */ 184, 1563, 300, 169, 1535, 460, 168, 310, 73, 1564, - /* 820 */ 468, 1566, 1567, 464, 507, 459, 171, 45, 1629, 170, - /* 830 */ 44, 416, 270, 1625, 1702, 1579, 1374, 1535, 407, 1292, - /* 840 */ 122, 1563, 466, 1663, 1132, 231, 9, 8, 1358, 112, - /* 850 */ 1213, 405, 465, 420, 1271, 447, 1535, 229, 47, 187, - /* 860 */ 1274, 1275, 1239, 189, 35, 1579, 200, 1441, 1188, 35, - /* 870 */ 148, 1563, 466, 1152, 73, 1564, 468, 1566, 1567, 464, - /* 880 */ 1556, 459, 465, 429, 1629, 1105, 1535, 410, 270, 1625, - /* 890 */ 1702, 377, 1554, 1104, 35, 1579, 193, 106, 1057, 1686, - /* 900 */ 68, 513, 466, 442, 73, 1564, 468, 1566, 1567, 464, - /* 910 */ 64, 459, 465, 206, 1629, 1659, 1535, 208, 270, 1625, - /* 920 */ 1702, 445, 1580, 516, 109, 202, 1563, 110, 474, 1647, - /* 930 */ 1216, 214, 2, 71, 238, 1564, 468, 1566, 1567, 464, - /* 940 */ 1117, 459, 512, 511, 510, 112, 509, 47, 487, 962, - /* 950 */ 1579, 957, 990, 295, 299, 255, 1108, 466, 1066, 222, - /* 960 */ 1690, 49, 48, 320, 1107, 142, 931, 465, 144, 332, - /* 970 */ 314, 1535, 257, 136, 110, 1481, 1563, 1688, 994, 111, - /* 980 */ 339, 112, 256, 1001, 306, 1000, 302, 298, 139, 74, - /* 990 */ 1564, 468, 1566, 1567, 464, 347, 459, 346, 110, 1629, - /* 1000 */ 1579, 348, 113, 1628, 1625, 1126, 353, 466, 352, 354, - /* 1010 */ 1125, 149, 152, 356, 355, 1124, 357, 465, 360, 137, - /* 1020 */ 160, 1535, 155, 130, 1563, 52, 158, 1123, 379, 376, - /* 1030 */ 381, 372, 368, 364, 159, 1563, 97, 1389, 265, 74, - /* 1040 */ 1564, 468, 1566, 1567, 464, 1102, 459, 162, 1579, 1629, - /* 1050 */ 1520, 1385, 164, 455, 1625, 463, 115, 116, 1387, 1579, - /* 1060 */ 54, 175, 1383, 157, 223, 465, 466, 117, 118, 1535, - /* 1070 */ 411, 419, 415, 412, 179, 1122, 465, 182, 421, 1670, - /* 1080 */ 1535, 422, 1660, 430, 472, 1669, 427, 245, 1564, 468, - /* 1090 */ 1566, 1567, 464, 462, 459, 457, 1601, 185, 125, 1564, - /* 1100 */ 468, 1566, 1567, 464, 188, 459, 1563, 269, 284, 283, - /* 1110 */ 5, 433, 438, 103, 426, 4, 1644, 1121, 1110, 1213, - /* 1120 */ 156, 1650, 151, 37, 153, 271, 451, 454, 16, 1490, - /* 1130 */ 1579, 1489, 195, 470, 1103, 129, 1563, 466, 471, 1610, - /* 1140 */ 194, 150, 446, 1703, 1563, 192, 475, 465, 476, 279, - /* 1150 */ 210, 1535, 477, 1102, 212, 63, 1400, 61, 224, 1687, - /* 1160 */ 1579, 201, 1372, 1705, 226, 219, 563, 466, 1579, 74, - /* 1170 */ 1564, 468, 1566, 1567, 464, 466, 459, 465, 128, 1629, - /* 1180 */ 485, 1535, 43, 232, 1626, 465, 233, 228, 230, 1535, - /* 1190 */ 1529, 1563, 425, 483, 1528, 294, 1525, 296, 297, 241, - /* 1200 */ 1564, 468, 1566, 1567, 464, 1106, 459, 246, 1564, 468, - /* 1210 */ 1566, 1567, 464, 1090, 459, 1579, 1091, 140, 1523, 303, - /* 1220 */ 301, 304, 466, 305, 1522, 307, 1521, 309, 1506, 141, - /* 1230 */ 312, 313, 465, 1069, 1068, 1500, 1535, 437, 1040, 274, - /* 1240 */ 1499, 1563, 1111, 319, 318, 1498, 1497, 1474, 1473, 1472, - /* 1250 */ 1471, 1470, 1469, 1468, 246, 1564, 468, 1566, 1567, 464, - /* 1260 */ 1467, 459, 1466, 1114, 1465, 1579, 1464, 1463, 1462, 1461, - /* 1270 */ 1460, 1459, 463, 108, 1458, 1457, 1456, 1455, 1454, 1563, - /* 1280 */ 1453, 1042, 465, 1452, 1451, 1450, 1535, 1449, 1330, 1514, - /* 1290 */ 1563, 1508, 1496, 1487, 1378, 898, 1329, 154, 1327, 361, - /* 1300 */ 363, 362, 1325, 1579, 245, 1564, 468, 1566, 1567, 464, - /* 1310 */ 466, 459, 1323, 1602, 1579, 367, 371, 365, 366, 369, - /* 1320 */ 465, 466, 370, 1321, 1535, 1310, 1309, 276, 373, 1306, - /* 1330 */ 1380, 465, 1006, 374, 530, 1535, 161, 1009, 278, 1279, - /* 1340 */ 1379, 76, 246, 1564, 468, 1566, 1567, 464, 1563, 459, - /* 1350 */ 1319, 375, 930, 246, 1564, 468, 1566, 1567, 464, 929, - /* 1360 */ 459, 1563, 928, 96, 95, 94, 93, 92, 91, 90, - /* 1370 */ 89, 88, 1579, 927, 532, 924, 923, 262, 1314, 466, - /* 1380 */ 263, 399, 1312, 264, 402, 1579, 1305, 404, 1304, 465, - /* 1390 */ 406, 75, 466, 1535, 1513, 1076, 1507, 413, 1495, 1563, - /* 1400 */ 1494, 1486, 465, 181, 3, 56, 1535, 119, 1563, 13, - /* 1410 */ 126, 234, 1564, 468, 1566, 1567, 464, 190, 459, 35, - /* 1420 */ 41, 14, 186, 1579, 240, 1564, 468, 1566, 1567, 464, - /* 1430 */ 466, 459, 1579, 46, 1238, 191, 178, 20, 414, 466, - /* 1440 */ 465, 1231, 40, 57, 1535, 21, 1563, 1210, 1554, 465, - /* 1450 */ 183, 1209, 39, 1535, 1265, 15, 197, 58, 1260, 135, - /* 1460 */ 1259, 1563, 242, 1564, 468, 1566, 1567, 464, 272, 459, - /* 1470 */ 1579, 235, 1564, 468, 1566, 1567, 464, 466, 459, 1264, - /* 1480 */ 1263, 273, 8, 1173, 17, 1579, 1155, 465, 458, 138, - /* 1490 */ 1154, 1535, 466, 27, 204, 1140, 1153, 10, 18, 19, - /* 1500 */ 38, 467, 465, 205, 1236, 1485, 1535, 11, 207, 243, - /* 1510 */ 1564, 468, 1566, 1567, 464, 211, 459, 64, 209, 473, - /* 1520 */ 59, 60, 213, 1553, 236, 1564, 468, 1566, 1567, 464, - /* 1530 */ 1563, 459, 1112, 42, 216, 484, 991, 486, 1563, 286, - /* 1540 */ 488, 490, 988, 491, 493, 985, 979, 496, 494, 497, - /* 1550 */ 499, 977, 968, 500, 1579, 983, 982, 981, 65, 980, - /* 1560 */ 1003, 466, 1579, 1002, 506, 66, 67, 999, 1563, 466, - /* 1570 */ 996, 465, 896, 517, 937, 1535, 519, 919, 218, 465, - /* 1580 */ 918, 917, 916, 1535, 915, 914, 912, 913, 932, 934, - /* 1590 */ 909, 908, 1579, 244, 1564, 468, 1566, 1567, 464, 466, - /* 1600 */ 459, 237, 1564, 468, 1566, 1567, 464, 1326, 459, 465, - /* 1610 */ 907, 904, 903, 1535, 902, 901, 1563, 541, 542, 1324, - /* 1620 */ 1322, 543, 545, 546, 547, 550, 549, 1320, 551, 553, - /* 1630 */ 554, 1575, 1564, 468, 1566, 1567, 464, 1308, 459, 555, - /* 1640 */ 1579, 557, 558, 1307, 1303, 561, 562, 466, 1098, 566, - /* 1650 */ 227, 565, 1278, 1278, 1563, 1278, 1278, 465, 1278, 1278, - /* 1660 */ 1278, 1535, 1278, 1563, 1278, 1278, 1278, 1278, 1278, 1278, - /* 1670 */ 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1579, 1574, - /* 1680 */ 1564, 468, 1566, 1567, 464, 466, 459, 1579, 1278, 1278, - /* 1690 */ 1278, 1278, 1278, 1278, 466, 465, 1278, 1278, 1278, 1535, - /* 1700 */ 1278, 1563, 1278, 1278, 465, 1278, 1278, 1278, 1535, 1278, - /* 1710 */ 1278, 1278, 1278, 1278, 1278, 1278, 1563, 1573, 1564, 468, - /* 1720 */ 1566, 1567, 464, 1278, 459, 1579, 253, 1564, 468, 1566, - /* 1730 */ 1567, 464, 466, 459, 1278, 1278, 1278, 1278, 1278, 1278, - /* 1740 */ 1579, 1278, 465, 1278, 1278, 1278, 1535, 466, 1278, 1278, - /* 1750 */ 1278, 1278, 1278, 1278, 1563, 1278, 1278, 465, 1278, 1278, - /* 1760 */ 1278, 1535, 1278, 1278, 252, 1564, 468, 1566, 1567, 464, - /* 1770 */ 1278, 459, 1278, 1278, 1278, 1278, 1278, 1278, 1579, 254, - /* 1780 */ 1564, 468, 1566, 1567, 464, 466, 459, 1278, 1278, 1278, - /* 1790 */ 1278, 1278, 1563, 1278, 1278, 465, 1278, 1278, 1278, 1535, - /* 1800 */ 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, - /* 1810 */ 1278, 1278, 1278, 1278, 1278, 1278, 1579, 251, 1564, 468, - /* 1820 */ 1566, 1567, 464, 466, 459, 1278, 1278, 1278, 1278, 1278, - /* 1830 */ 1278, 1278, 1278, 465, 1278, 1278, 1278, 1535, 1278, 1278, - /* 1840 */ 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, - /* 1850 */ 1278, 1278, 1278, 1278, 1278, 239, 1564, 468, 1566, 1567, - /* 1860 */ 464, 1278, 459, + /* 0 */ 268, 1587, 285, 53, 1571, 483, 26, 203, 467, 1385, + /* 10 */ 1283, 1557, 33, 31, 77, 1571, 99, 1557, 483, 1557, + /* 20 */ 277, 380, 1102, 442, 1402, 1553, 1560, 321, 1587, 288, + /* 30 */ 1407, 1553, 1559, 1553, 1559, 467, 1490, 1492, 1100, 1587, + /* 40 */ 124, 69, 435, 1407, 1364, 466, 467, 1384, 104, 1543, + /* 50 */ 12, 33, 31, 1224, 482, 105, 466, 1108, 359, 277, + /* 60 */ 1543, 1102, 1399, 293, 1123, 446, 1571, 241, 1572, 469, + /* 70 */ 1574, 1575, 465, 482, 460, 1, 323, 1100, 72, 1572, + /* 80 */ 469, 1574, 1575, 465, 102, 460, 562, 561, 1637, 12, + /* 90 */ 1587, 100, 249, 1633, 482, 383, 1108, 445, 566, 133, + /* 100 */ 1644, 1645, 1698, 1649, 1698, 438, 248, 466, 106, 36, + /* 110 */ 1101, 1543, 514, 483, 1, 136, 1651, 136, 386, 1696, + /* 120 */ 359, 1696, 322, 34, 32, 30, 29, 28, 36, 73, + /* 130 */ 1572, 469, 1574, 1575, 465, 517, 460, 566, 1407, 1637, + /* 140 */ 1648, 483, 483, 270, 1633, 131, 123, 1103, 1297, 1101, + /* 150 */ 330, 331, 1398, 1487, 513, 512, 511, 199, 510, 470, + /* 160 */ 145, 250, 280, 425, 1664, 1499, 1407, 1407, 1106, 1107, + /* 170 */ 1651, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 462, 1162, + /* 180 */ 1163, 1164, 1165, 1166, 1167, 1168, 1103, 1138, 1127, 34, + /* 190 */ 32, 30, 29, 28, 1647, 1186, 418, 1543, 137, 34, + /* 200 */ 32, 30, 29, 28, 523, 442, 1379, 1106, 1107, 432, + /* 210 */ 1151, 1152, 1153, 1154, 1155, 1156, 1157, 462, 1162, 1163, + /* 220 */ 1164, 1165, 1166, 1167, 1168, 33, 31, 250, 483, 483, + /* 230 */ 104, 937, 137, 277, 247, 1102, 1123, 358, 77, 317, + /* 240 */ 419, 260, 137, 338, 1187, 387, 350, 1111, 55, 266, + /* 250 */ 939, 1100, 174, 1407, 1407, 351, 34, 32, 30, 29, + /* 260 */ 28, 1186, 1192, 12, 33, 31, 102, 100, 483, 410, + /* 270 */ 1108, 383, 277, 1383, 1102, 437, 433, 291, 1698, 1698, + /* 280 */ 444, 132, 1644, 1645, 261, 1649, 259, 258, 1, 382, + /* 290 */ 1100, 136, 136, 1407, 386, 1696, 1696, 25, 275, 1181, + /* 300 */ 1182, 1183, 1184, 1185, 1189, 1190, 1191, 198, 1698, 1108, + /* 310 */ 1187, 566, 1248, 127, 34, 32, 30, 29, 28, 1114, + /* 320 */ 1238, 136, 519, 1101, 1448, 1696, 120, 7, 1192, 349, + /* 330 */ 385, 384, 344, 343, 342, 341, 340, 449, 337, 336, + /* 340 */ 335, 334, 333, 329, 328, 327, 326, 325, 324, 137, + /* 350 */ 566, 429, 1246, 1247, 1249, 1250, 30, 29, 28, 884, + /* 360 */ 1103, 883, 1101, 25, 275, 1181, 1182, 1183, 1184, 1185, + /* 370 */ 1189, 1190, 1191, 34, 32, 30, 29, 28, 1125, 885, + /* 380 */ 225, 1106, 1107, 1437, 1151, 1152, 1153, 1154, 1155, 1156, + /* 390 */ 1157, 462, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1103, + /* 400 */ 975, 506, 505, 504, 979, 503, 981, 982, 502, 984, + /* 410 */ 499, 121, 990, 496, 992, 993, 493, 490, 442, 1410, + /* 420 */ 1106, 1107, 1324, 1151, 1152, 1153, 1154, 1155, 1156, 1157, + /* 430 */ 462, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 33, 31, + /* 440 */ 1169, 1571, 1278, 104, 397, 316, 277, 315, 1102, 442, + /* 450 */ 137, 88, 394, 393, 87, 86, 85, 84, 83, 82, + /* 460 */ 81, 80, 79, 1698, 1100, 1587, 483, 34, 32, 30, + /* 470 */ 29, 28, 445, 281, 104, 1404, 1697, 33, 31, 102, + /* 480 */ 1696, 121, 466, 1108, 883, 277, 1543, 1102, 1651, 1409, + /* 490 */ 483, 1407, 436, 446, 134, 1644, 1645, 137, 1649, 1524, + /* 500 */ 378, 7, 519, 1100, 73, 1572, 469, 1574, 1575, 465, + /* 510 */ 102, 460, 1646, 1571, 1637, 1407, 522, 345, 270, 1633, + /* 520 */ 131, 1277, 1108, 401, 566, 196, 1644, 441, 1126, 440, + /* 530 */ 6, 1138, 1698, 1188, 483, 1456, 1101, 1587, 409, 1665, + /* 540 */ 7, 267, 1308, 480, 464, 136, 1454, 483, 448, 1696, + /* 550 */ 1564, 1193, 173, 53, 466, 404, 481, 22, 1543, 1407, + /* 560 */ 398, 143, 1562, 566, 147, 146, 172, 34, 32, 30, + /* 570 */ 29, 28, 1407, 1103, 1403, 1101, 245, 1572, 469, 1574, + /* 580 */ 1575, 465, 463, 460, 458, 1609, 23, 1543, 51, 165, + /* 590 */ 1571, 50, 163, 45, 1106, 1107, 44, 1151, 1152, 1153, + /* 600 */ 1154, 1155, 1156, 1157, 462, 1162, 1163, 1164, 1165, 1166, + /* 610 */ 1167, 1168, 1103, 24, 1587, 450, 9, 8, 534, 516, + /* 620 */ 515, 467, 311, 34, 32, 30, 29, 28, 1307, 535, + /* 630 */ 533, 466, 1223, 1106, 1107, 1543, 1151, 1152, 1153, 1154, + /* 640 */ 1155, 1156, 1157, 462, 1162, 1163, 1164, 1165, 1166, 1167, + /* 650 */ 1168, 33, 31, 73, 1572, 469, 1574, 1575, 465, 277, + /* 660 */ 460, 1102, 1571, 1637, 1456, 483, 308, 270, 1633, 1710, + /* 670 */ 282, 287, 290, 1543, 217, 1454, 1306, 1100, 1671, 121, + /* 680 */ 121, 1491, 1492, 62, 1219, 310, 1587, 1409, 1409, 1456, + /* 690 */ 1407, 1200, 470, 467, 1124, 289, 1108, 1305, 1500, 396, + /* 700 */ 1454, 390, 1304, 466, 1400, 395, 1303, 1543, 101, 1319, + /* 710 */ 391, 389, 1571, 392, 1, 453, 1302, 509, 388, 1301, + /* 720 */ 1300, 1543, 1299, 1296, 417, 73, 1572, 469, 1574, 1575, + /* 730 */ 465, 399, 460, 1396, 1456, 1637, 1587, 566, 1231, 270, + /* 740 */ 1633, 1710, 1543, 467, 1125, 1455, 569, 1543, 1295, 1101, + /* 750 */ 1694, 1543, 1294, 466, 1293, 1128, 1174, 1543, 1292, 451, + /* 760 */ 221, 1543, 1125, 98, 1543, 1543, 1532, 1543, 1543, 558, + /* 770 */ 1317, 554, 550, 546, 220, 73, 1572, 469, 1574, 1575, + /* 780 */ 465, 1291, 460, 1290, 1289, 1637, 1103, 1334, 1288, 270, + /* 790 */ 1633, 1710, 402, 1543, 1656, 1219, 408, 1543, 1110, 1543, + /* 800 */ 1655, 70, 300, 1543, 215, 9, 8, 1106, 1107, 406, + /* 810 */ 1151, 1152, 1153, 1154, 1155, 1156, 1157, 462, 1162, 1163, + /* 820 */ 1164, 1165, 1166, 1167, 1168, 1392, 1543, 1222, 1543, 1543, + /* 830 */ 1088, 1089, 167, 1543, 479, 166, 1571, 1280, 1281, 542, + /* 840 */ 541, 540, 539, 292, 1394, 538, 537, 536, 107, 531, + /* 850 */ 530, 529, 528, 527, 526, 525, 524, 114, 520, 122, + /* 860 */ 1587, 454, 424, 1382, 231, 180, 1571, 467, 169, 171, + /* 870 */ 1113, 168, 170, 457, 184, 112, 229, 466, 1390, 421, + /* 880 */ 1080, 1543, 176, 47, 187, 68, 446, 1245, 189, 148, + /* 890 */ 1587, 1286, 35, 177, 35, 64, 1194, 467, 1158, 238, + /* 900 */ 1572, 469, 1574, 1575, 465, 35, 460, 466, 909, 1063, + /* 910 */ 206, 1543, 88, 461, 208, 87, 86, 85, 84, 83, + /* 920 */ 82, 81, 80, 79, 106, 1698, 508, 910, 514, 74, + /* 930 */ 1572, 469, 1574, 1575, 465, 1285, 460, 109, 136, 1637, + /* 940 */ 1298, 475, 1696, 1636, 1633, 110, 112, 1365, 47, 214, + /* 950 */ 968, 517, 963, 71, 488, 1571, 200, 430, 996, 97, + /* 960 */ 96, 95, 94, 93, 92, 91, 90, 89, 411, 110, + /* 970 */ 513, 512, 511, 1000, 510, 1449, 111, 193, 377, 1587, + /* 980 */ 1007, 49, 48, 320, 112, 142, 467, 1667, 1006, 110, + /* 990 */ 314, 1178, 443, 113, 1588, 202, 466, 2, 1123, 295, + /* 1000 */ 1543, 299, 256, 1571, 306, 255, 302, 298, 139, 937, + /* 1010 */ 257, 1072, 1571, 222, 332, 1489, 144, 339, 74, 1572, + /* 1020 */ 469, 1574, 1575, 465, 346, 460, 347, 1587, 1637, 348, + /* 1030 */ 1102, 352, 456, 1633, 467, 1132, 1587, 353, 149, 137, + /* 1040 */ 1131, 152, 354, 467, 466, 355, 1100, 356, 1543, 357, + /* 1050 */ 1130, 155, 1129, 466, 379, 360, 52, 1543, 158, 78, + /* 1060 */ 265, 381, 1397, 162, 1571, 1108, 125, 1572, 469, 1574, + /* 1070 */ 1575, 465, 1571, 460, 1108, 74, 1572, 469, 1574, 1575, + /* 1080 */ 465, 223, 460, 1393, 164, 1637, 1528, 115, 1587, 175, + /* 1090 */ 1634, 116, 1395, 1391, 117, 467, 1587, 118, 412, 413, + /* 1100 */ 420, 179, 1571, 467, 182, 466, 566, 416, 422, 1543, + /* 1110 */ 447, 1711, 426, 466, 1128, 431, 423, 1543, 1101, 1678, + /* 1120 */ 473, 185, 1677, 1668, 428, 269, 1587, 246, 1572, 469, + /* 1130 */ 1574, 1575, 465, 467, 460, 125, 1572, 469, 1574, 1575, + /* 1140 */ 465, 188, 460, 466, 5, 439, 434, 1543, 427, 192, + /* 1150 */ 274, 1658, 4, 1219, 1571, 1103, 103, 1127, 37, 271, + /* 1160 */ 455, 1695, 195, 452, 129, 246, 1572, 469, 1574, 1575, + /* 1170 */ 465, 1652, 460, 194, 16, 1498, 1106, 1107, 1587, 1618, + /* 1180 */ 1712, 1497, 201, 471, 476, 464, 1713, 472, 279, 477, + /* 1190 */ 478, 210, 212, 224, 63, 466, 61, 1408, 1380, 1543, + /* 1200 */ 160, 486, 226, 130, 1571, 219, 128, 565, 43, 376, + /* 1210 */ 232, 372, 368, 364, 159, 1571, 233, 245, 1572, 469, + /* 1220 */ 1574, 1575, 465, 228, 460, 230, 1610, 294, 1587, 1537, + /* 1230 */ 1536, 1533, 296, 297, 1096, 467, 1097, 140, 301, 1587, + /* 1240 */ 303, 54, 1531, 304, 157, 466, 467, 305, 1530, 1543, + /* 1250 */ 307, 1529, 276, 1571, 309, 1514, 466, 141, 312, 313, + /* 1260 */ 1543, 1074, 1075, 278, 1508, 1507, 318, 246, 1572, 469, + /* 1270 */ 1574, 1575, 465, 319, 460, 1506, 1505, 1587, 246, 1572, + /* 1280 */ 469, 1574, 1575, 465, 467, 460, 1482, 1046, 1481, 1480, + /* 1290 */ 1479, 1478, 1477, 1476, 466, 1475, 1474, 1473, 1543, 1472, + /* 1300 */ 1571, 156, 1471, 151, 1470, 153, 1469, 1468, 1467, 108, + /* 1310 */ 1466, 1465, 1464, 1571, 1463, 1462, 234, 1572, 469, 1574, + /* 1320 */ 1575, 465, 150, 460, 1587, 1048, 1460, 1459, 1571, 1461, + /* 1330 */ 1458, 467, 1457, 1336, 1522, 1516, 1504, 1587, 902, 1335, + /* 1340 */ 1333, 466, 1495, 154, 467, 1543, 1386, 361, 363, 362, + /* 1350 */ 1331, 1329, 1587, 76, 466, 365, 366, 369, 1543, 467, + /* 1360 */ 370, 367, 1327, 240, 1572, 469, 1574, 1575, 465, 466, + /* 1370 */ 460, 371, 1316, 1543, 375, 1571, 242, 1572, 469, 1574, + /* 1380 */ 1575, 465, 373, 460, 374, 1315, 1312, 1388, 532, 1012, + /* 1390 */ 1571, 235, 1572, 469, 1574, 1575, 465, 1015, 460, 1587, + /* 1400 */ 262, 936, 935, 1571, 161, 1387, 467, 934, 933, 534, + /* 1410 */ 1325, 932, 929, 928, 1587, 263, 466, 1320, 400, 1318, + /* 1420 */ 1543, 467, 403, 264, 1311, 405, 1310, 1587, 407, 75, + /* 1430 */ 1521, 466, 1082, 46, 467, 1543, 1515, 119, 243, 1572, + /* 1440 */ 469, 1574, 1575, 465, 466, 460, 1503, 414, 1543, 1502, + /* 1450 */ 1494, 1571, 56, 236, 1572, 469, 1574, 1575, 465, 181, + /* 1460 */ 460, 3, 415, 35, 1571, 13, 244, 1572, 469, 1574, + /* 1470 */ 1575, 465, 186, 460, 41, 1587, 14, 178, 38, 191, + /* 1480 */ 1244, 183, 467, 126, 40, 1562, 190, 20, 1587, 1237, + /* 1490 */ 1216, 58, 466, 57, 21, 467, 1543, 1215, 1266, 39, + /* 1500 */ 11, 15, 1571, 1265, 272, 466, 1270, 197, 1271, 1543, + /* 1510 */ 135, 1269, 273, 8, 237, 1572, 469, 1574, 1575, 465, + /* 1520 */ 1179, 460, 459, 17, 1161, 138, 1587, 1583, 1572, 469, + /* 1530 */ 1574, 1575, 465, 467, 460, 1160, 27, 1146, 1159, 10, + /* 1540 */ 204, 468, 18, 466, 19, 1493, 205, 1543, 1242, 1571, + /* 1550 */ 207, 209, 59, 211, 60, 1118, 64, 42, 487, 997, + /* 1560 */ 286, 489, 1571, 491, 485, 1582, 1572, 469, 1574, 1575, + /* 1570 */ 465, 474, 460, 1587, 213, 1561, 216, 1571, 994, 492, + /* 1580 */ 467, 991, 494, 495, 497, 985, 1587, 498, 500, 983, + /* 1590 */ 466, 501, 989, 467, 1543, 988, 987, 986, 974, 65, + /* 1600 */ 1009, 1587, 507, 466, 1008, 66, 67, 1543, 467, 1005, + /* 1610 */ 1002, 900, 1581, 1572, 469, 1574, 1575, 465, 466, 460, + /* 1620 */ 518, 925, 1543, 943, 1571, 253, 1572, 469, 1574, 1575, + /* 1630 */ 465, 521, 460, 218, 923, 922, 921, 920, 919, 1571, + /* 1640 */ 252, 1572, 469, 1574, 1575, 465, 918, 460, 1587, 917, + /* 1650 */ 916, 940, 1571, 938, 913, 467, 284, 283, 912, 911, + /* 1660 */ 908, 907, 906, 1587, 905, 466, 1116, 1332, 543, 1543, + /* 1670 */ 467, 544, 545, 1330, 547, 548, 1587, 1337, 1328, 551, + /* 1680 */ 466, 549, 1109, 467, 1543, 552, 553, 254, 1572, 469, + /* 1690 */ 1574, 1575, 465, 466, 460, 1326, 555, 1543, 556, 557, + /* 1700 */ 1314, 1108, 251, 1572, 469, 1574, 1575, 465, 559, 460, + /* 1710 */ 1313, 560, 1309, 563, 564, 239, 1572, 469, 1574, 1575, + /* 1720 */ 465, 1104, 460, 227, 567, 568, 1284, 1284, 1284, 396, + /* 1730 */ 1284, 390, 1284, 1284, 1284, 395, 1284, 1284, 101, 1284, + /* 1740 */ 391, 389, 484, 392, 1284, 1284, 1284, 1284, 388, 1284, + /* 1750 */ 1284, 1284, 1284, 1284, 1112, 1284, 1284, 1284, 1284, 1284, + /* 1760 */ 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, + /* 1770 */ 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, + /* 1780 */ 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, + /* 1790 */ 1284, 1117, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, + /* 1800 */ 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, + /* 1810 */ 1284, 1284, 1120, }; static const YYCODETYPE yy_lookahead[] = { - /* 0 */ 223, 312, 248, 223, 251, 297, 298, 229, 229, 220, - /* 10 */ 264, 268, 12, 13, 325, 223, 270, 238, 329, 223, - /* 20 */ 20, 268, 22, 251, 245, 282, 283, 247, 12, 13, - /* 30 */ 14, 15, 16, 254, 254, 282, 283, 259, 38, 247, - /* 40 */ 268, 20, 231, 229, 264, 268, 254, 229, 268, 223, - /* 50 */ 50, 12, 13, 14, 282, 283, 264, 57, 20, 20, - /* 60 */ 268, 22, 273, 252, 268, 273, 286, 287, 288, 289, - /* 70 */ 290, 291, 254, 293, 74, 229, 49, 38, 286, 287, - /* 80 */ 288, 289, 290, 291, 238, 293, 0, 273, 296, 50, - /* 90 */ 229, 75, 300, 301, 268, 74, 57, 97, 228, 238, - /* 100 */ 254, 312, 12, 13, 312, 222, 245, 224, 290, 109, - /* 110 */ 20, 331, 22, 74, 325, 254, 0, 325, 329, 249, - /* 120 */ 2, 329, 304, 305, 306, 307, 312, 309, 38, 0, - /* 130 */ 12, 13, 14, 15, 16, 49, 97, 0, 247, 325, - /* 140 */ 50, 20, 20, 329, 253, 247, 146, 57, 109, 258, - /* 150 */ 21, 246, 254, 24, 25, 26, 27, 28, 29, 30, - /* 160 */ 31, 32, 257, 264, 74, 49, 267, 167, 168, 270, - /* 170 */ 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, - /* 180 */ 180, 181, 182, 183, 184, 146, 288, 97, 136, 52, - /* 190 */ 145, 54, 147, 226, 227, 58, 74, 197, 61, 109, - /* 200 */ 63, 64, 197, 66, 155, 156, 167, 168, 159, 170, + /* 0 */ 252, 248, 252, 232, 224, 230, 298, 299, 255, 0, + /* 10 */ 221, 269, 12, 13, 239, 224, 245, 269, 230, 269, + /* 20 */ 20, 246, 22, 230, 253, 283, 284, 239, 248, 257, + /* 30 */ 255, 283, 284, 283, 284, 255, 264, 265, 38, 248, + /* 40 */ 233, 229, 289, 255, 237, 265, 255, 0, 255, 269, + /* 50 */ 50, 12, 13, 14, 20, 243, 265, 57, 49, 20, + /* 60 */ 269, 22, 250, 274, 20, 274, 224, 287, 288, 289, + /* 70 */ 290, 291, 292, 20, 294, 75, 230, 38, 287, 288, + /* 80 */ 289, 290, 291, 292, 291, 294, 227, 228, 297, 50, + /* 90 */ 248, 61, 301, 302, 20, 65, 57, 255, 98, 306, + /* 100 */ 307, 308, 313, 310, 313, 325, 260, 265, 61, 75, + /* 110 */ 110, 269, 65, 230, 75, 326, 285, 326, 88, 330, + /* 120 */ 49, 330, 239, 12, 13, 14, 15, 16, 75, 287, + /* 130 */ 288, 289, 290, 291, 292, 88, 294, 98, 255, 297, + /* 140 */ 309, 230, 230, 301, 302, 303, 223, 147, 225, 110, + /* 150 */ 239, 239, 224, 255, 107, 108, 109, 315, 111, 265, + /* 160 */ 262, 50, 268, 321, 322, 271, 255, 255, 168, 169, + /* 170 */ 285, 171, 172, 173, 174, 175, 176, 177, 178, 179, + /* 180 */ 180, 181, 182, 183, 184, 185, 147, 76, 20, 12, + /* 190 */ 13, 14, 15, 16, 309, 84, 230, 269, 198, 12, + /* 200 */ 13, 14, 15, 16, 236, 230, 238, 168, 169, 137, /* 210 */ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - /* 220 */ 181, 182, 183, 184, 229, 229, 229, 229, 229, 38, - /* 230 */ 12, 13, 71, 238, 238, 238, 146, 238, 20, 20, - /* 240 */ 22, 22, 197, 12, 13, 14, 15, 16, 57, 254, - /* 250 */ 254, 254, 254, 254, 202, 203, 38, 167, 168, 40, - /* 260 */ 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, - /* 270 */ 180, 181, 182, 183, 184, 57, 12, 13, 14, 233, - /* 280 */ 234, 50, 67, 47, 20, 223, 22, 0, 290, 235, - /* 290 */ 21, 237, 74, 24, 25, 26, 27, 28, 29, 30, - /* 300 */ 31, 32, 38, 305, 306, 307, 75, 309, 239, 73, - /* 310 */ 20, 52, 76, 54, 83, 97, 247, 58, 197, 197, - /* 320 */ 61, 57, 63, 64, 255, 66, 167, 109, 113, 114, - /* 330 */ 268, 273, 35, 12, 13, 14, 15, 16, 74, 52, - /* 340 */ 53, 54, 55, 56, 22, 58, 59, 60, 61, 62, - /* 350 */ 63, 64, 65, 66, 67, 68, 69, 70, 61, 231, - /* 360 */ 38, 97, 65, 132, 146, 206, 207, 208, 209, 210, - /* 370 */ 312, 232, 244, 109, 77, 236, 79, 80, 217, 82, - /* 380 */ 252, 150, 20, 325, 87, 167, 168, 329, 170, 171, - /* 390 */ 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, - /* 400 */ 182, 183, 184, 229, 12, 13, 233, 234, 229, 71, - /* 410 */ 146, 20, 20, 75, 22, 197, 185, 186, 187, 188, - /* 420 */ 189, 190, 191, 192, 193, 194, 233, 234, 254, 50, - /* 430 */ 38, 167, 168, 254, 170, 171, 172, 173, 174, 175, - /* 440 */ 176, 177, 178, 179, 180, 181, 182, 183, 184, 57, - /* 450 */ 12, 13, 273, 229, 273, 239, 228, 22, 20, 138, - /* 460 */ 22, 247, 238, 247, 290, 20, 74, 253, 38, 290, - /* 470 */ 242, 255, 258, 38, 1, 2, 38, 249, 254, 305, - /* 480 */ 306, 307, 71, 309, 305, 306, 307, 57, 309, 97, - /* 490 */ 0, 312, 57, 312, 223, 57, 12, 13, 14, 15, - /* 500 */ 16, 109, 0, 20, 325, 223, 325, 49, 329, 223, - /* 510 */ 329, 223, 74, 88, 89, 90, 91, 92, 93, 94, - /* 520 */ 95, 96, 97, 98, 22, 100, 101, 102, 103, 104, - /* 530 */ 105, 18, 97, 20, 256, 97, 229, 85, 146, 268, - /* 540 */ 27, 263, 264, 30, 109, 238, 167, 109, 75, 223, - /* 550 */ 268, 61, 39, 61, 268, 65, 268, 65, 0, 167, - /* 560 */ 168, 254, 170, 171, 172, 173, 174, 175, 176, 177, - /* 570 */ 178, 179, 180, 181, 182, 183, 184, 87, 254, 87, - /* 580 */ 22, 146, 229, 138, 146, 261, 12, 13, 14, 15, - /* 590 */ 16, 238, 240, 247, 268, 243, 106, 107, 108, 253, - /* 600 */ 110, 57, 167, 168, 258, 167, 168, 254, 170, 171, - /* 610 */ 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, - /* 620 */ 182, 183, 184, 223, 50, 112, 215, 223, 115, 116, - /* 630 */ 117, 118, 119, 248, 121, 122, 123, 124, 125, 126, - /* 640 */ 127, 128, 129, 130, 131, 3, 229, 247, 12, 13, - /* 650 */ 14, 15, 16, 229, 254, 238, 19, 83, 132, 239, - /* 660 */ 229, 248, 238, 223, 264, 233, 234, 247, 268, 238, - /* 670 */ 33, 254, 268, 36, 223, 255, 150, 223, 254, 42, - /* 680 */ 223, 44, 45, 46, 47, 254, 286, 287, 288, 289, - /* 690 */ 290, 291, 20, 293, 195, 196, 296, 43, 247, 284, - /* 700 */ 300, 301, 302, 223, 223, 254, 132, 247, 268, 223, - /* 710 */ 73, 185, 223, 76, 314, 264, 2, 248, 258, 268, - /* 720 */ 320, 321, 268, 308, 150, 268, 12, 13, 14, 15, - /* 730 */ 16, 14, 15, 16, 247, 223, 4, 286, 287, 288, - /* 740 */ 289, 290, 291, 106, 293, 258, 284, 296, 268, 268, - /* 750 */ 14, 300, 301, 302, 268, 223, 20, 268, 4, 185, - /* 760 */ 186, 187, 188, 189, 190, 191, 192, 193, 194, 223, - /* 770 */ 308, 134, 321, 19, 137, 139, 0, 0, 284, 247, - /* 780 */ 268, 12, 13, 14, 15, 16, 254, 33, 14, 152, - /* 790 */ 36, 154, 223, 248, 20, 41, 264, 247, 142, 22, - /* 800 */ 268, 47, 308, 78, 78, 255, 81, 81, 157, 158, - /* 810 */ 138, 223, 36, 78, 268, 248, 81, 161, 286, 287, - /* 820 */ 288, 289, 290, 291, 248, 293, 78, 73, 296, 81, - /* 830 */ 76, 276, 300, 301, 302, 247, 0, 268, 21, 224, - /* 840 */ 18, 223, 254, 311, 75, 23, 1, 2, 236, 71, - /* 850 */ 196, 34, 264, 75, 218, 213, 268, 35, 71, 71, - /* 860 */ 182, 183, 75, 75, 71, 247, 332, 257, 75, 71, - /* 870 */ 48, 223, 254, 75, 286, 287, 288, 289, 290, 291, - /* 880 */ 74, 293, 264, 323, 296, 38, 268, 280, 300, 301, - /* 890 */ 302, 226, 86, 38, 71, 247, 317, 61, 75, 311, - /* 900 */ 74, 65, 254, 310, 286, 287, 288, 289, 290, 291, - /* 910 */ 84, 293, 264, 71, 296, 285, 268, 75, 300, 301, - /* 920 */ 302, 273, 247, 87, 71, 326, 223, 71, 75, 311, - /* 930 */ 198, 75, 313, 111, 286, 287, 288, 289, 290, 291, - /* 940 */ 20, 293, 106, 107, 108, 71, 110, 71, 71, 75, - /* 950 */ 247, 75, 75, 229, 36, 281, 109, 254, 144, 274, - /* 960 */ 312, 139, 140, 141, 109, 143, 38, 264, 120, 229, - /* 970 */ 148, 268, 233, 325, 71, 229, 223, 329, 75, 71, - /* 980 */ 262, 71, 160, 75, 162, 75, 164, 165, 166, 286, - /* 990 */ 287, 288, 289, 290, 291, 132, 293, 260, 71, 296, - /* 1000 */ 247, 260, 75, 300, 301, 20, 278, 254, 229, 264, - /* 1010 */ 20, 231, 231, 254, 272, 20, 265, 264, 229, 197, - /* 1020 */ 33, 268, 231, 36, 223, 231, 231, 20, 225, 42, - /* 1030 */ 247, 44, 45, 46, 47, 223, 229, 247, 225, 286, - /* 1040 */ 287, 288, 289, 290, 291, 57, 293, 247, 247, 296, - /* 1050 */ 268, 247, 247, 300, 301, 254, 247, 247, 247, 247, - /* 1060 */ 73, 228, 247, 76, 278, 264, 254, 247, 247, 268, - /* 1070 */ 153, 272, 264, 277, 228, 20, 264, 228, 254, 322, - /* 1080 */ 268, 265, 285, 205, 204, 322, 268, 286, 287, 288, - /* 1090 */ 289, 290, 291, 292, 293, 294, 295, 269, 286, 287, - /* 1100 */ 288, 289, 290, 291, 269, 293, 223, 268, 12, 13, - /* 1110 */ 212, 268, 211, 254, 200, 199, 284, 20, 22, 196, - /* 1120 */ 133, 319, 135, 120, 137, 219, 214, 216, 74, 269, - /* 1130 */ 247, 269, 303, 268, 38, 316, 223, 254, 268, 299, - /* 1140 */ 315, 154, 330, 331, 223, 318, 135, 264, 266, 268, - /* 1150 */ 254, 268, 265, 57, 228, 74, 254, 228, 243, 328, - /* 1160 */ 247, 327, 237, 333, 229, 228, 225, 254, 247, 286, - /* 1170 */ 287, 288, 289, 290, 291, 254, 293, 264, 279, 296, - /* 1180 */ 250, 268, 275, 241, 301, 264, 241, 230, 221, 268, - /* 1190 */ 0, 223, 271, 97, 0, 64, 0, 38, 163, 286, - /* 1200 */ 287, 288, 289, 290, 291, 109, 293, 286, 287, 288, - /* 1210 */ 289, 290, 291, 38, 293, 247, 38, 38, 0, 38, - /* 1220 */ 163, 38, 254, 163, 0, 38, 0, 38, 0, 74, - /* 1230 */ 150, 149, 264, 109, 146, 0, 268, 324, 86, 271, - /* 1240 */ 0, 223, 146, 142, 53, 0, 0, 0, 0, 0, - /* 1250 */ 0, 0, 0, 0, 286, 287, 288, 289, 290, 291, - /* 1260 */ 0, 293, 0, 167, 0, 247, 0, 0, 0, 0, - /* 1270 */ 0, 0, 254, 120, 0, 0, 0, 0, 0, 223, - /* 1280 */ 0, 22, 264, 0, 0, 0, 268, 0, 0, 0, - /* 1290 */ 223, 0, 0, 0, 0, 51, 0, 43, 0, 38, - /* 1300 */ 43, 36, 0, 247, 286, 287, 288, 289, 290, 291, - /* 1310 */ 254, 293, 0, 295, 247, 43, 43, 38, 36, 38, - /* 1320 */ 264, 254, 36, 0, 268, 0, 0, 271, 38, 0, - /* 1330 */ 0, 264, 22, 36, 71, 268, 81, 38, 271, 0, - /* 1340 */ 0, 83, 286, 287, 288, 289, 290, 291, 223, 293, - /* 1350 */ 0, 43, 38, 286, 287, 288, 289, 290, 291, 38, - /* 1360 */ 293, 223, 38, 24, 25, 26, 27, 28, 29, 30, - /* 1370 */ 31, 32, 247, 38, 71, 38, 38, 22, 0, 254, - /* 1380 */ 22, 39, 0, 22, 38, 247, 0, 22, 0, 264, - /* 1390 */ 22, 20, 254, 268, 0, 38, 0, 22, 0, 223, - /* 1400 */ 0, 0, 264, 43, 71, 74, 268, 151, 223, 201, - /* 1410 */ 74, 286, 287, 288, 289, 290, 291, 74, 293, 71, - /* 1420 */ 71, 201, 75, 247, 286, 287, 288, 289, 290, 291, - /* 1430 */ 254, 293, 247, 138, 75, 71, 135, 74, 138, 254, - /* 1440 */ 264, 75, 138, 74, 268, 71, 223, 75, 86, 264, - /* 1450 */ 133, 75, 71, 268, 75, 71, 86, 4, 38, 86, - /* 1460 */ 38, 223, 286, 287, 288, 289, 290, 291, 38, 293, - /* 1470 */ 247, 286, 287, 288, 289, 290, 291, 254, 293, 38, - /* 1480 */ 38, 38, 2, 167, 71, 247, 75, 264, 74, 86, - /* 1490 */ 75, 268, 254, 74, 86, 22, 75, 74, 74, 74, - /* 1500 */ 195, 169, 264, 75, 75, 0, 268, 201, 74, 286, - /* 1510 */ 287, 288, 289, 290, 291, 43, 293, 84, 74, 136, - /* 1520 */ 74, 74, 133, 86, 286, 287, 288, 289, 290, 291, - /* 1530 */ 223, 293, 22, 74, 86, 85, 75, 38, 223, 38, - /* 1540 */ 74, 38, 75, 74, 38, 75, 75, 38, 74, 74, - /* 1550 */ 38, 75, 22, 74, 247, 99, 99, 99, 74, 99, - /* 1560 */ 38, 254, 247, 109, 87, 74, 74, 38, 223, 254, - /* 1570 */ 22, 264, 51, 50, 57, 268, 72, 38, 71, 264, - /* 1580 */ 38, 38, 38, 268, 38, 38, 22, 38, 38, 57, - /* 1590 */ 38, 38, 247, 286, 287, 288, 289, 290, 291, 254, - /* 1600 */ 293, 286, 287, 288, 289, 290, 291, 0, 293, 264, - /* 1610 */ 38, 38, 38, 268, 38, 38, 223, 38, 36, 0, - /* 1620 */ 0, 43, 38, 36, 43, 36, 38, 0, 43, 38, - /* 1630 */ 36, 286, 287, 288, 289, 290, 291, 0, 293, 43, - /* 1640 */ 247, 38, 37, 0, 0, 22, 21, 254, 22, 20, - /* 1650 */ 22, 21, 334, 334, 223, 334, 334, 264, 334, 334, - /* 1660 */ 334, 268, 334, 223, 334, 334, 334, 334, 334, 334, - /* 1670 */ 334, 334, 334, 334, 334, 334, 334, 334, 247, 286, - /* 1680 */ 287, 288, 289, 290, 291, 254, 293, 247, 334, 334, - /* 1690 */ 334, 334, 334, 334, 254, 264, 334, 334, 334, 268, - /* 1700 */ 334, 223, 334, 334, 264, 334, 334, 334, 268, 334, - /* 1710 */ 334, 334, 334, 334, 334, 334, 223, 286, 287, 288, - /* 1720 */ 289, 290, 291, 334, 293, 247, 286, 287, 288, 289, - /* 1730 */ 290, 291, 254, 293, 334, 334, 334, 334, 334, 334, - /* 1740 */ 247, 334, 264, 334, 334, 334, 268, 254, 334, 334, - /* 1750 */ 334, 334, 334, 334, 223, 334, 334, 264, 334, 334, - /* 1760 */ 334, 268, 334, 334, 286, 287, 288, 289, 290, 291, - /* 1770 */ 334, 293, 334, 334, 334, 334, 334, 334, 247, 286, - /* 1780 */ 287, 288, 289, 290, 291, 254, 293, 334, 334, 334, - /* 1790 */ 334, 334, 223, 334, 334, 264, 334, 334, 334, 268, - /* 1800 */ 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, - /* 1810 */ 334, 334, 334, 334, 334, 334, 247, 286, 287, 288, - /* 1820 */ 289, 290, 291, 254, 293, 334, 334, 334, 334, 334, - /* 1830 */ 334, 334, 334, 264, 334, 334, 334, 268, 334, 334, - /* 1840 */ 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, - /* 1850 */ 334, 334, 334, 334, 334, 286, 287, 288, 289, 290, - /* 1860 */ 291, 334, 293, 334, 334, 334, 334, 334, 334, 334, - /* 1870 */ 334, 334, + /* 220 */ 181, 182, 183, 184, 185, 12, 13, 50, 230, 230, + /* 230 */ 255, 38, 198, 20, 18, 22, 20, 239, 239, 274, + /* 240 */ 274, 35, 198, 27, 133, 246, 30, 38, 156, 157, + /* 250 */ 57, 38, 160, 255, 255, 39, 12, 13, 14, 15, + /* 260 */ 16, 84, 151, 50, 12, 13, 291, 61, 230, 274, + /* 270 */ 57, 65, 20, 0, 22, 203, 204, 239, 313, 313, + /* 280 */ 305, 306, 307, 308, 78, 310, 80, 81, 75, 83, + /* 290 */ 38, 326, 326, 255, 88, 330, 330, 186, 187, 188, + /* 300 */ 189, 190, 191, 192, 193, 194, 195, 139, 313, 57, + /* 310 */ 133, 98, 168, 247, 12, 13, 14, 15, 16, 110, + /* 320 */ 76, 326, 49, 110, 258, 330, 139, 75, 151, 113, + /* 330 */ 234, 235, 116, 117, 118, 119, 120, 3, 122, 123, + /* 340 */ 124, 125, 126, 127, 128, 129, 130, 131, 132, 198, + /* 350 */ 98, 207, 208, 209, 210, 211, 14, 15, 16, 20, + /* 360 */ 147, 22, 110, 186, 187, 188, 189, 190, 191, 192, + /* 370 */ 193, 194, 195, 12, 13, 14, 15, 16, 20, 40, + /* 380 */ 241, 168, 169, 244, 171, 172, 173, 174, 175, 176, + /* 390 */ 177, 178, 179, 180, 181, 182, 183, 184, 185, 147, + /* 400 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, + /* 410 */ 99, 248, 101, 102, 103, 104, 105, 106, 230, 256, + /* 420 */ 168, 169, 0, 171, 172, 173, 174, 175, 176, 177, + /* 430 */ 178, 179, 180, 181, 182, 183, 184, 185, 12, 13, + /* 440 */ 14, 224, 140, 255, 22, 146, 20, 148, 22, 230, + /* 450 */ 198, 21, 234, 235, 24, 25, 26, 27, 28, 29, + /* 460 */ 30, 31, 32, 313, 38, 248, 230, 12, 13, 14, + /* 470 */ 15, 16, 255, 240, 255, 239, 326, 12, 13, 291, + /* 480 */ 330, 248, 265, 57, 22, 20, 269, 22, 285, 256, + /* 490 */ 230, 255, 20, 274, 306, 307, 308, 198, 310, 239, + /* 500 */ 38, 75, 49, 38, 287, 288, 289, 290, 291, 292, + /* 510 */ 291, 294, 309, 224, 297, 255, 57, 67, 301, 302, + /* 520 */ 303, 219, 57, 4, 98, 306, 307, 308, 20, 310, + /* 530 */ 43, 76, 313, 133, 230, 248, 110, 248, 19, 322, + /* 540 */ 75, 254, 224, 239, 255, 326, 259, 230, 214, 330, + /* 550 */ 75, 151, 33, 232, 265, 36, 239, 2, 269, 255, + /* 560 */ 41, 47, 87, 98, 114, 115, 47, 12, 13, 14, + /* 570 */ 15, 16, 255, 147, 253, 110, 287, 288, 289, 290, + /* 580 */ 291, 292, 293, 294, 295, 296, 186, 269, 74, 79, + /* 590 */ 224, 77, 82, 74, 168, 169, 77, 171, 172, 173, + /* 600 */ 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, + /* 610 */ 184, 185, 147, 2, 248, 72, 1, 2, 72, 234, + /* 620 */ 235, 255, 76, 12, 13, 14, 15, 16, 224, 234, + /* 630 */ 235, 265, 4, 168, 169, 269, 171, 172, 173, 174, + /* 640 */ 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + /* 650 */ 185, 12, 13, 287, 288, 289, 290, 291, 292, 20, + /* 660 */ 294, 22, 224, 297, 248, 230, 143, 301, 302, 303, + /* 670 */ 254, 240, 240, 269, 239, 259, 224, 38, 312, 248, + /* 680 */ 248, 264, 265, 229, 197, 162, 248, 256, 256, 248, + /* 690 */ 255, 76, 265, 255, 20, 254, 57, 224, 271, 52, + /* 700 */ 259, 54, 224, 265, 250, 58, 224, 269, 61, 0, + /* 710 */ 63, 64, 224, 66, 75, 72, 224, 86, 71, 224, + /* 720 */ 224, 269, 224, 224, 277, 287, 288, 289, 290, 291, + /* 730 */ 292, 22, 294, 249, 248, 297, 248, 98, 14, 301, + /* 740 */ 302, 303, 269, 255, 20, 259, 19, 269, 224, 110, + /* 750 */ 312, 269, 224, 265, 224, 20, 14, 269, 224, 216, + /* 760 */ 33, 269, 20, 36, 269, 269, 0, 269, 269, 42, + /* 770 */ 0, 44, 45, 46, 47, 287, 288, 289, 290, 291, + /* 780 */ 292, 224, 294, 224, 224, 297, 147, 0, 224, 301, + /* 790 */ 302, 303, 22, 269, 196, 197, 21, 269, 38, 269, + /* 800 */ 312, 74, 36, 269, 77, 1, 2, 168, 169, 34, + /* 810 */ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, + /* 820 */ 181, 182, 183, 184, 185, 249, 269, 199, 269, 269, + /* 830 */ 158, 159, 79, 269, 107, 82, 224, 183, 184, 52, + /* 840 */ 53, 54, 55, 56, 249, 58, 59, 60, 61, 62, + /* 850 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 18, + /* 860 */ 248, 218, 135, 0, 23, 138, 224, 255, 79, 79, + /* 870 */ 110, 82, 82, 50, 139, 72, 35, 265, 249, 76, + /* 880 */ 153, 269, 155, 72, 72, 75, 274, 76, 76, 48, + /* 890 */ 248, 0, 72, 249, 72, 85, 76, 255, 76, 287, + /* 900 */ 288, 289, 290, 291, 292, 72, 294, 265, 38, 76, + /* 910 */ 72, 269, 21, 249, 76, 24, 25, 26, 27, 28, + /* 920 */ 29, 30, 31, 32, 61, 313, 249, 57, 65, 287, + /* 930 */ 288, 289, 290, 291, 292, 0, 294, 72, 326, 297, + /* 940 */ 225, 76, 330, 301, 302, 72, 72, 237, 72, 76, + /* 950 */ 76, 88, 76, 112, 72, 224, 333, 324, 76, 24, + /* 960 */ 25, 26, 27, 28, 29, 30, 31, 32, 281, 72, + /* 970 */ 107, 108, 109, 76, 111, 258, 72, 318, 227, 248, + /* 980 */ 76, 140, 141, 142, 72, 144, 255, 286, 76, 72, + /* 990 */ 149, 168, 311, 76, 248, 327, 265, 314, 20, 230, + /* 1000 */ 269, 36, 161, 224, 163, 282, 165, 166, 167, 38, + /* 1010 */ 234, 145, 224, 275, 230, 230, 121, 263, 287, 288, + /* 1020 */ 289, 290, 291, 292, 261, 294, 133, 248, 297, 261, + /* 1030 */ 22, 230, 301, 302, 255, 20, 248, 279, 232, 198, + /* 1040 */ 20, 232, 265, 255, 265, 273, 38, 255, 269, 266, + /* 1050 */ 20, 232, 20, 265, 226, 230, 232, 269, 232, 230, + /* 1060 */ 226, 248, 248, 248, 224, 57, 287, 288, 289, 290, + /* 1070 */ 291, 292, 224, 294, 57, 287, 288, 289, 290, 291, + /* 1080 */ 292, 279, 294, 248, 248, 297, 269, 248, 248, 229, + /* 1090 */ 302, 248, 248, 248, 248, 255, 248, 248, 154, 278, + /* 1100 */ 273, 229, 224, 255, 229, 265, 98, 265, 255, 269, + /* 1110 */ 331, 332, 272, 265, 20, 206, 266, 269, 110, 323, + /* 1120 */ 205, 270, 323, 286, 269, 269, 248, 287, 288, 289, + /* 1130 */ 290, 291, 292, 255, 294, 287, 288, 289, 290, 291, + /* 1140 */ 292, 270, 294, 265, 213, 212, 269, 269, 201, 319, + /* 1150 */ 272, 320, 200, 197, 224, 147, 255, 20, 121, 220, + /* 1160 */ 217, 329, 304, 215, 317, 287, 288, 289, 290, 291, + /* 1170 */ 292, 285, 294, 316, 75, 270, 168, 169, 248, 300, + /* 1180 */ 332, 270, 328, 269, 136, 255, 334, 269, 269, 267, + /* 1190 */ 266, 255, 229, 244, 75, 265, 229, 255, 238, 269, + /* 1200 */ 33, 251, 230, 36, 224, 229, 280, 226, 276, 42, + /* 1210 */ 242, 44, 45, 46, 47, 224, 242, 287, 288, 289, + /* 1220 */ 290, 291, 292, 231, 294, 222, 296, 64, 248, 0, + /* 1230 */ 0, 0, 38, 164, 38, 255, 38, 38, 164, 248, + /* 1240 */ 38, 74, 0, 38, 77, 265, 255, 164, 0, 269, + /* 1250 */ 38, 0, 272, 224, 38, 0, 265, 75, 151, 150, + /* 1260 */ 269, 147, 110, 272, 0, 0, 53, 287, 288, 289, + /* 1270 */ 290, 291, 292, 143, 294, 0, 0, 248, 287, 288, + /* 1280 */ 289, 290, 291, 292, 255, 294, 0, 87, 0, 0, + /* 1290 */ 0, 0, 0, 0, 265, 0, 0, 0, 269, 0, + /* 1300 */ 224, 134, 0, 136, 0, 138, 0, 0, 0, 121, + /* 1310 */ 0, 0, 0, 224, 0, 0, 287, 288, 289, 290, + /* 1320 */ 291, 292, 155, 294, 248, 22, 0, 0, 224, 0, + /* 1330 */ 0, 255, 0, 0, 0, 0, 0, 248, 51, 0, + /* 1340 */ 0, 265, 0, 43, 255, 269, 0, 38, 43, 36, + /* 1350 */ 0, 0, 248, 84, 265, 38, 36, 38, 269, 255, + /* 1360 */ 36, 43, 0, 287, 288, 289, 290, 291, 292, 265, + /* 1370 */ 294, 43, 0, 269, 43, 224, 287, 288, 289, 290, + /* 1380 */ 291, 292, 38, 294, 36, 0, 0, 0, 72, 22, + /* 1390 */ 224, 287, 288, 289, 290, 291, 292, 38, 294, 248, + /* 1400 */ 22, 38, 38, 224, 82, 0, 255, 38, 38, 72, + /* 1410 */ 0, 38, 38, 38, 248, 22, 265, 0, 39, 0, + /* 1420 */ 269, 255, 38, 22, 0, 22, 0, 248, 22, 20, + /* 1430 */ 0, 265, 38, 139, 255, 269, 0, 152, 287, 288, + /* 1440 */ 289, 290, 291, 292, 265, 294, 0, 22, 269, 0, + /* 1450 */ 0, 224, 75, 287, 288, 289, 290, 291, 292, 43, + /* 1460 */ 294, 72, 139, 72, 224, 202, 287, 288, 289, 290, + /* 1470 */ 291, 292, 76, 294, 72, 248, 202, 136, 196, 72, + /* 1480 */ 76, 134, 255, 75, 139, 87, 75, 75, 248, 76, + /* 1490 */ 76, 4, 265, 75, 72, 255, 269, 76, 38, 72, + /* 1500 */ 202, 72, 224, 38, 38, 265, 38, 87, 76, 269, + /* 1510 */ 87, 38, 38, 2, 287, 288, 289, 290, 291, 292, + /* 1520 */ 168, 294, 75, 72, 76, 87, 248, 287, 288, 289, + /* 1530 */ 290, 291, 292, 255, 294, 76, 75, 22, 76, 75, + /* 1540 */ 87, 170, 75, 265, 75, 0, 76, 269, 76, 224, + /* 1550 */ 75, 75, 75, 43, 75, 22, 85, 75, 38, 76, + /* 1560 */ 38, 75, 224, 38, 86, 287, 288, 289, 290, 291, + /* 1570 */ 292, 137, 294, 248, 134, 87, 87, 224, 76, 75, + /* 1580 */ 255, 76, 38, 75, 38, 76, 248, 75, 38, 76, + /* 1590 */ 265, 75, 100, 255, 269, 100, 100, 100, 22, 75, + /* 1600 */ 38, 248, 88, 265, 110, 75, 75, 269, 255, 38, + /* 1610 */ 22, 51, 287, 288, 289, 290, 291, 292, 265, 294, + /* 1620 */ 50, 38, 269, 57, 224, 287, 288, 289, 290, 291, + /* 1630 */ 292, 73, 294, 72, 38, 38, 38, 38, 38, 224, + /* 1640 */ 287, 288, 289, 290, 291, 292, 38, 294, 248, 38, + /* 1650 */ 22, 57, 224, 38, 38, 255, 12, 13, 38, 38, + /* 1660 */ 38, 38, 38, 248, 38, 265, 22, 0, 38, 269, + /* 1670 */ 255, 36, 43, 0, 38, 36, 248, 0, 0, 38, + /* 1680 */ 265, 43, 38, 255, 269, 36, 43, 287, 288, 289, + /* 1690 */ 290, 291, 292, 265, 294, 0, 38, 269, 36, 43, + /* 1700 */ 0, 57, 287, 288, 289, 290, 291, 292, 38, 294, + /* 1710 */ 0, 37, 0, 22, 21, 287, 288, 289, 290, 291, + /* 1720 */ 292, 22, 294, 22, 21, 20, 335, 335, 335, 52, + /* 1730 */ 335, 54, 335, 335, 335, 58, 335, 335, 61, 335, + /* 1740 */ 63, 64, 98, 66, 335, 335, 335, 335, 71, 335, + /* 1750 */ 335, 335, 335, 335, 110, 335, 335, 335, 335, 335, + /* 1760 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1770 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1780 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1790 */ 335, 147, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1800 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1810 */ 335, 335, 168, 335, 335, 335, 335, 335, 335, 335, + /* 1820 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1830 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1840 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1850 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1860 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1870 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1880 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1890 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1900 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1910 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1920 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1930 */ 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, + /* 1940 */ 335, 335, 335, 335, 335, 335, 335, }; -#define YY_SHIFT_COUNT (567) +#define YY_SHIFT_COUNT (569) #define YY_SHIFT_MIN (0) -#define YY_SHIFT_MAX (1644) +#define YY_SHIFT_MAX (1712) static const unsigned short int yy_shift_ofst[] = { - /* 0 */ 822, 0, 39, 90, 90, 90, 90, 218, 90, 90, - /* 10 */ 264, 392, 438, 392, 392, 392, 392, 392, 392, 392, - /* 20 */ 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, - /* 30 */ 392, 392, 392, 392, 392, 392, 122, 21, 21, 21, - /* 40 */ 121, 1096, 1096, 45, 38, 38, 5, 1096, 38, 38, - /* 50 */ 38, 38, 38, 38, 27, 38, 290, 362, 5, 391, - /* 60 */ 290, 38, 38, 290, 38, 290, 391, 290, 290, 38, - /* 70 */ 458, 513, 231, 574, 574, 269, 435, 297, 435, 435, - /* 80 */ 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, - /* 90 */ 435, 435, 435, 435, 435, 435, 435, 259, 219, 86, - /* 100 */ 191, 191, 445, 445, 445, 116, 191, 191, 483, 391, - /* 110 */ 290, 290, 290, 452, 544, 425, 425, 425, 425, 425, - /* 120 */ 425, 425, 637, 129, 137, 636, 159, 492, 49, 52, - /* 130 */ 322, 672, 499, 654, 499, 736, 642, 732, 774, 920, - /* 140 */ 918, 928, 814, 920, 920, 848, 863, 863, 920, 985, - /* 150 */ 27, 391, 990, 27, 483, 995, 27, 27, 920, 27, - /* 160 */ 1007, 290, 290, 290, 290, 290, 290, 290, 290, 290, - /* 170 */ 290, 290, 920, 1007, 988, 985, 458, 917, 391, 990, - /* 180 */ 458, 483, 995, 458, 1055, 878, 880, 988, 878, 880, - /* 190 */ 988, 988, 898, 901, 914, 916, 923, 483, 1097, 1003, - /* 200 */ 906, 911, 912, 1054, 290, 880, 988, 988, 880, 988, - /* 210 */ 1011, 483, 995, 458, 452, 458, 483, 1081, 544, 920, - /* 220 */ 458, 1007, 1863, 1863, 1863, 1863, 1863, 1863, 287, 987, - /* 230 */ 1339, 754, 490, 836, 16, 118, 714, 321, 769, 484, - /* 240 */ 484, 484, 484, 484, 484, 484, 484, 236, 215, 473, - /* 250 */ 526, 717, 717, 717, 717, 776, 656, 338, 725, 726, - /* 260 */ 735, 748, 502, 558, 777, 817, 651, 778, 787, 788, - /* 270 */ 845, 678, 411, 161, 793, 379, 798, 806, 823, 842, - /* 280 */ 853, 856, 874, 847, 855, 876, 877, 903, 908, 910, - /* 290 */ 927, 826, 430, 1190, 1194, 1131, 1196, 1159, 1035, 1175, - /* 300 */ 1178, 1179, 1057, 1218, 1181, 1183, 1060, 1224, 1187, 1226, - /* 310 */ 1189, 1228, 1155, 1080, 1082, 1124, 1088, 1235, 1240, 1191, - /* 320 */ 1101, 1245, 1246, 1152, 1247, 1248, 1249, 1250, 1251, 1252, - /* 330 */ 1253, 1260, 1262, 1264, 1266, 1267, 1268, 1269, 1270, 1271, - /* 340 */ 1153, 1274, 1275, 1276, 1277, 1278, 1280, 1259, 1283, 1284, - /* 350 */ 1285, 1287, 1288, 1289, 1291, 1292, 1293, 1254, 1294, 1244, - /* 360 */ 1296, 1298, 1261, 1265, 1257, 1302, 1279, 1282, 1272, 1312, - /* 370 */ 1281, 1286, 1273, 1323, 1290, 1297, 1308, 1325, 1326, 1329, - /* 380 */ 1330, 1258, 1255, 1299, 1263, 1303, 1310, 1340, 1314, 1321, - /* 390 */ 1324, 1335, 1263, 1303, 1337, 1338, 1350, 1355, 1378, 1358, - /* 400 */ 1342, 1382, 1361, 1346, 1386, 1365, 1388, 1368, 1371, 1394, - /* 410 */ 1295, 1357, 1396, 1256, 1375, 1300, 1301, 1398, 1400, 1304, - /* 420 */ 1401, 1331, 1360, 1317, 1333, 1348, 1208, 1347, 1349, 1359, - /* 430 */ 1336, 1343, 1363, 1366, 1364, 1362, 1369, 1374, 1220, 1372, - /* 440 */ 1376, 1370, 1305, 1381, 1373, 1379, 1384, 1306, 1453, 1420, - /* 450 */ 1422, 1430, 1441, 1442, 1443, 1480, 1316, 1413, 1411, 1414, - /* 460 */ 1415, 1419, 1421, 1403, 1423, 1424, 1408, 1473, 1332, 1425, - /* 470 */ 1428, 1429, 1434, 1444, 1383, 1446, 1505, 1472, 1389, 1447, - /* 480 */ 1433, 1437, 1448, 1510, 1459, 1450, 1461, 1499, 1501, 1466, - /* 490 */ 1467, 1503, 1469, 1470, 1506, 1474, 1471, 1509, 1475, 1476, - /* 500 */ 1512, 1479, 1456, 1457, 1458, 1460, 1530, 1477, 1484, 1522, - /* 510 */ 1454, 1491, 1492, 1529, 1263, 1303, 1548, 1521, 1523, 1517, - /* 520 */ 1504, 1507, 1539, 1542, 1543, 1544, 1546, 1547, 1549, 1564, - /* 530 */ 1532, 1263, 1550, 1303, 1552, 1553, 1572, 1573, 1574, 1576, - /* 540 */ 1577, 1607, 1579, 1582, 1578, 1619, 1584, 1587, 1581, 1620, - /* 550 */ 1588, 1589, 1585, 1627, 1591, 1594, 1596, 1637, 1603, 1605, - /* 560 */ 1643, 1644, 1623, 1625, 1626, 1628, 1630, 1629, + /* 0 */ 841, 0, 39, 213, 213, 213, 213, 252, 213, 213, + /* 10 */ 426, 465, 639, 465, 465, 465, 465, 465, 465, 465, + /* 20 */ 465, 465, 465, 465, 465, 465, 465, 465, 465, 465, + /* 30 */ 465, 465, 465, 465, 465, 465, 34, 53, 53, 53, + /* 40 */ 44, 1644, 1644, 299, 74, 74, 151, 1644, 74, 74, + /* 50 */ 74, 74, 74, 74, 71, 74, 358, 472, 151, 508, + /* 60 */ 358, 74, 74, 358, 74, 358, 508, 358, 358, 74, + /* 70 */ 453, 216, 111, 177, 177, 430, 1008, 206, 647, 1008, + /* 80 */ 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, + /* 90 */ 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 339, 9, + /* 100 */ 193, 193, 168, 168, 168, 273, 193, 193, 674, 508, + /* 110 */ 358, 508, 358, 631, 459, 311, 311, 311, 311, 311, + /* 120 */ 311, 311, 727, 891, 1677, 302, 144, 30, 92, 72, + /* 130 */ 462, 735, 598, 487, 598, 724, 334, 628, 742, 978, + /* 140 */ 965, 971, 866, 978, 978, 895, 893, 893, 978, 1015, + /* 150 */ 71, 508, 1020, 71, 674, 1030, 71, 71, 978, 71, + /* 160 */ 1032, 358, 358, 358, 358, 358, 358, 358, 358, 358, + /* 170 */ 358, 358, 978, 1032, 1017, 1015, 453, 944, 508, 1020, + /* 180 */ 453, 674, 1030, 453, 1094, 909, 915, 1017, 909, 915, + /* 190 */ 1017, 1017, 931, 933, 947, 952, 956, 674, 1137, 1037, + /* 200 */ 939, 943, 948, 1099, 358, 915, 1017, 1017, 915, 1017, + /* 210 */ 1048, 674, 1030, 453, 631, 453, 674, 1119, 459, 978, + /* 220 */ 453, 1032, 1813, 1813, 1813, 1813, 1813, 1813, 787, 1167, + /* 230 */ 935, 519, 47, 863, 244, 555, 611, 187, 455, 361, + /* 240 */ 361, 361, 361, 361, 361, 361, 361, 514, 450, 615, + /* 250 */ 400, 342, 342, 342, 342, 766, 523, 546, 510, 753, + /* 260 */ 789, 790, 422, 709, 770, 775, 672, 803, 811, 812, + /* 270 */ 804, 654, 543, 643, 820, 823, 822, 475, 833, 838, + /* 280 */ 865, 873, 874, 209, 760, 876, 882, 897, 904, 912, + /* 290 */ 917, 810, 870, 1229, 1230, 1163, 1231, 1194, 1069, 1196, + /* 300 */ 1198, 1199, 1074, 1242, 1202, 1205, 1083, 1248, 1212, 1251, + /* 310 */ 1216, 1255, 1182, 1107, 1109, 1152, 1114, 1264, 1265, 1213, + /* 320 */ 1130, 1275, 1276, 1200, 1286, 1288, 1289, 1290, 1291, 1292, + /* 330 */ 1293, 1295, 1296, 1297, 1299, 1302, 1304, 1306, 1307, 1308, + /* 340 */ 1188, 1310, 1311, 1312, 1314, 1315, 1329, 1303, 1326, 1327, + /* 350 */ 1330, 1332, 1333, 1334, 1335, 1336, 1342, 1300, 1346, 1287, + /* 360 */ 1339, 1340, 1309, 1313, 1305, 1350, 1317, 1320, 1318, 1351, + /* 370 */ 1319, 1324, 1328, 1362, 1344, 1348, 1331, 1372, 1385, 1386, + /* 380 */ 1387, 1269, 1322, 1359, 1316, 1337, 1367, 1405, 1363, 1364, + /* 390 */ 1369, 1370, 1373, 1316, 1337, 1374, 1375, 1410, 1378, 1417, + /* 400 */ 1393, 1379, 1419, 1401, 1384, 1424, 1403, 1426, 1406, 1409, + /* 410 */ 1430, 1294, 1394, 1436, 1285, 1425, 1323, 1341, 1446, 1449, + /* 420 */ 1345, 1450, 1377, 1416, 1347, 1389, 1391, 1263, 1396, 1402, + /* 430 */ 1404, 1408, 1411, 1412, 1413, 1407, 1398, 1418, 1422, 1274, + /* 440 */ 1414, 1421, 1420, 1282, 1427, 1423, 1432, 1429, 1298, 1487, + /* 450 */ 1460, 1465, 1466, 1468, 1473, 1474, 1511, 1352, 1451, 1448, + /* 460 */ 1447, 1459, 1461, 1462, 1438, 1464, 1467, 1453, 1515, 1371, + /* 470 */ 1469, 1470, 1472, 1475, 1476, 1434, 1477, 1545, 1510, 1440, + /* 480 */ 1479, 1471, 1488, 1489, 1533, 1482, 1478, 1483, 1520, 1522, + /* 490 */ 1486, 1502, 1525, 1504, 1505, 1544, 1508, 1509, 1546, 1512, + /* 500 */ 1513, 1550, 1516, 1492, 1495, 1496, 1497, 1576, 1514, 1524, + /* 510 */ 1562, 1494, 1530, 1531, 1571, 1316, 1337, 1588, 1560, 1570, + /* 520 */ 1583, 1566, 1558, 1561, 1596, 1597, 1598, 1599, 1600, 1608, + /* 530 */ 1611, 1628, 1594, 1316, 1615, 1337, 1616, 1620, 1621, 1622, + /* 540 */ 1623, 1624, 1626, 1667, 1630, 1635, 1629, 1673, 1636, 1639, + /* 550 */ 1638, 1678, 1641, 1649, 1643, 1695, 1658, 1662, 1656, 1700, + /* 560 */ 1670, 1674, 1710, 1712, 1691, 1693, 1699, 1701, 1703, 1705, }; #define YY_REDUCE_COUNT (227) -#define YY_REDUCE_MIN (-311) -#define YY_REDUCE_MAX (1569) +#define YY_REDUCE_MIN (-292) +#define YY_REDUCE_MAX (1428) static const short yy_reduce_ofst[] = { - /* 0 */ -211, -208, 400, 451, 532, 588, 618, 648, 703, 753, - /* 10 */ 801, 812, 883, 921, 913, -220, 968, 1018, 1056, 1067, - /* 20 */ 1125, 1138, 1176, 1185, 1223, 1238, 1307, 1315, 1345, 1393, - /* 30 */ 1431, 1440, 1478, 1493, 1531, 1569, 179, -182, -2, 174, - /* 40 */ -186, -247, -228, 58, -221, -139, 181, -257, -154, -5, - /* 50 */ -4, -3, -1, 224, 128, 307, -109, -102, -311, -101, - /* 60 */ 69, 353, 417, 214, 424, 216, 278, 346, 420, 431, - /* 70 */ 228, -222, -292, -292, -292, -117, -223, -95, -204, -174, - /* 80 */ 62, 271, 282, 286, 288, 326, 404, 440, 454, 457, - /* 90 */ 480, 481, 486, 489, 512, 546, 569, 139, -33, -189, - /* 100 */ 46, 173, 415, 462, 494, -130, 193, 432, 324, -254, - /* 110 */ 550, 460, 487, 352, 54, -246, 385, 413, 469, 545, - /* 120 */ 567, 576, 555, 615, 612, 534, 560, 610, 607, 579, - /* 130 */ 665, 630, 593, 593, 593, 675, 599, 619, 675, 724, - /* 140 */ 674, 739, 685, 740, 746, 718, 737, 741, 779, 728, - /* 150 */ 780, 745, 742, 781, 759, 751, 791, 794, 789, 795, - /* 160 */ 803, 783, 790, 800, 804, 805, 809, 810, 811, 815, - /* 170 */ 820, 821, 807, 813, 782, 786, 833, 796, 808, 799, - /* 180 */ 846, 824, 816, 849, 797, 757, 828, 818, 763, 835, - /* 190 */ 839, 843, 802, 827, 819, 825, 593, 859, 832, 829, - /* 200 */ 830, 831, 834, 840, 675, 860, 865, 870, 862, 881, - /* 210 */ 882, 896, 887, 926, 915, 929, 902, 930, 925, 935, - /* 220 */ 937, 941, 907, 899, 942, 945, 957, 967, + /* 0 */ -211, -209, -158, 217, 366, 438, 488, 612, 642, 731, + /* 10 */ 289, 779, 788, 840, -220, 848, 878, 930, 980, 991, + /* 20 */ 1029, 1076, 1089, 1104, 1151, 1166, 1179, 1227, 1240, 1278, + /* 30 */ 1325, 1338, 1353, 1400, 1415, 1428, 219, -25, -207, 188, + /* 40 */ -34, -252, -250, -35, -225, -1, -5, -258, -212, -117, + /* 50 */ -89, -88, -2, 236, -229, 260, 287, -247, 150, -106, + /* 60 */ 233, 304, 317, 416, 435, 431, -228, 441, 432, 38, + /* 70 */ -188, -154, -292, -292, -292, -77, -72, 66, -193, 318, + /* 80 */ 404, 452, 473, 478, 482, 492, 495, 496, 498, 499, + /* 90 */ 524, 528, 530, 534, 557, 559, 560, 564, -141, 321, + /* 100 */ 96, 218, -169, -115, 203, 454, 385, 395, -102, 427, + /* 110 */ 163, 417, 486, 139, -32, 484, 576, 595, 629, 644, + /* 120 */ 664, 677, 447, 715, 710, 623, 633, 717, 687, 659, + /* 130 */ 751, 701, 681, 681, 681, 746, 668, 683, 746, 769, + /* 140 */ 723, 776, 738, 784, 785, 754, 763, 768, 801, 758, + /* 150 */ 806, 777, 772, 809, 792, 783, 819, 824, 825, 826, + /* 160 */ 828, 813, 814, 815, 835, 836, 839, 843, 844, 845, + /* 170 */ 846, 849, 829, 834, 817, 802, 860, 821, 842, 827, + /* 180 */ 872, 853, 850, 875, 837, 796, 851, 855, 799, 871, + /* 190 */ 856, 877, 831, 830, 847, 857, 681, 901, 886, 858, + /* 200 */ 852, 832, 854, 879, 746, 905, 914, 918, 911, 919, + /* 210 */ 922, 936, 924, 963, 949, 967, 942, 950, 960, 972, + /* 220 */ 976, 981, 932, 926, 968, 974, 992, 1003, }; static const YYACTIONTYPE yy_default[] = { - /* 0 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 10 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 20 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 30 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 40 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 50 */ 1276, 1276, 1276, 1276, 1335, 1276, 1276, 1276, 1276, 1276, - /* 60 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 70 */ 1333, 1475, 1276, 1631, 1276, 1276, 1276, 1276, 1276, 1276, - /* 80 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 90 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1335, - /* 100 */ 1276, 1276, 1642, 1642, 1642, 1333, 1276, 1276, 1276, 1276, - /* 110 */ 1276, 1276, 1276, 1428, 1276, 1276, 1276, 1276, 1276, 1276, - /* 120 */ 1276, 1276, 1509, 1276, 1276, 1706, 1276, 1381, 1515, 1666, - /* 130 */ 1276, 1658, 1634, 1648, 1635, 1276, 1691, 1651, 1276, 1276, - /* 140 */ 1276, 1276, 1501, 1276, 1276, 1480, 1477, 1477, 1276, 1276, - /* 150 */ 1335, 1276, 1276, 1335, 1276, 1276, 1335, 1335, 1276, 1335, - /* 160 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 170 */ 1276, 1276, 1276, 1276, 1276, 1276, 1333, 1511, 1276, 1276, - /* 180 */ 1333, 1276, 1276, 1333, 1276, 1673, 1671, 1276, 1673, 1671, - /* 190 */ 1276, 1276, 1685, 1681, 1664, 1662, 1648, 1276, 1276, 1276, - /* 200 */ 1709, 1697, 1693, 1276, 1276, 1671, 1276, 1276, 1671, 1276, - /* 210 */ 1488, 1276, 1276, 1333, 1276, 1333, 1276, 1397, 1276, 1276, - /* 220 */ 1333, 1276, 1503, 1517, 1431, 1431, 1336, 1281, 1276, 1276, - /* 230 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1578, - /* 240 */ 1684, 1683, 1607, 1606, 1605, 1603, 1577, 1276, 1276, 1276, - /* 250 */ 1276, 1571, 1572, 1570, 1569, 1276, 1276, 1276, 1276, 1276, - /* 260 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 270 */ 1632, 1276, 1694, 1698, 1276, 1276, 1276, 1555, 1276, 1276, - /* 280 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 290 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 300 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 310 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 320 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 330 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 340 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 350 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 360 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 370 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 380 */ 1276, 1276, 1276, 1276, 1444, 1443, 1276, 1276, 1276, 1276, - /* 390 */ 1276, 1276, 1362, 1361, 1276, 1276, 1276, 1276, 1276, 1276, - /* 400 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 410 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 420 */ 1276, 1276, 1276, 1276, 1655, 1665, 1276, 1276, 1276, 1276, - /* 430 */ 1276, 1276, 1276, 1276, 1276, 1555, 1276, 1682, 1276, 1641, - /* 440 */ 1637, 1276, 1276, 1633, 1276, 1276, 1692, 1276, 1276, 1276, - /* 450 */ 1276, 1276, 1276, 1276, 1276, 1627, 1276, 1600, 1276, 1276, - /* 460 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1565, 1276, - /* 470 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 480 */ 1276, 1554, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1425, - /* 490 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 500 */ 1276, 1276, 1410, 1408, 1407, 1406, 1276, 1403, 1276, 1276, - /* 510 */ 1276, 1276, 1276, 1276, 1434, 1433, 1276, 1276, 1276, 1276, - /* 520 */ 1276, 1356, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 530 */ 1276, 1347, 1276, 1346, 1276, 1276, 1276, 1276, 1276, 1276, - /* 540 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 550 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, - /* 560 */ 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, + /* 0 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 10 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 20 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 30 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 40 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 50 */ 1282, 1282, 1282, 1282, 1341, 1282, 1282, 1282, 1282, 1282, + /* 60 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 70 */ 1339, 1483, 1282, 1639, 1282, 1282, 1282, 1282, 1282, 1282, + /* 80 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 90 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1341, + /* 100 */ 1282, 1282, 1650, 1650, 1650, 1339, 1282, 1282, 1282, 1282, + /* 110 */ 1282, 1282, 1282, 1436, 1282, 1282, 1282, 1282, 1282, 1282, + /* 120 */ 1282, 1282, 1517, 1282, 1282, 1714, 1282, 1389, 1523, 1674, + /* 130 */ 1282, 1666, 1642, 1656, 1643, 1282, 1699, 1659, 1282, 1282, + /* 140 */ 1282, 1282, 1509, 1282, 1282, 1488, 1485, 1485, 1282, 1282, + /* 150 */ 1341, 1282, 1282, 1341, 1282, 1282, 1341, 1341, 1282, 1341, + /* 160 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 170 */ 1282, 1282, 1282, 1282, 1282, 1282, 1339, 1519, 1282, 1282, + /* 180 */ 1339, 1282, 1282, 1339, 1282, 1681, 1679, 1282, 1681, 1679, + /* 190 */ 1282, 1282, 1693, 1689, 1672, 1670, 1656, 1282, 1282, 1282, + /* 200 */ 1717, 1705, 1701, 1282, 1282, 1679, 1282, 1282, 1679, 1282, + /* 210 */ 1496, 1282, 1282, 1339, 1282, 1339, 1282, 1405, 1282, 1282, + /* 220 */ 1339, 1282, 1511, 1525, 1439, 1439, 1342, 1287, 1282, 1282, + /* 230 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1586, + /* 240 */ 1692, 1691, 1615, 1614, 1613, 1611, 1585, 1282, 1282, 1282, + /* 250 */ 1282, 1579, 1580, 1578, 1577, 1282, 1282, 1282, 1282, 1282, + /* 260 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 270 */ 1640, 1282, 1702, 1706, 1282, 1282, 1282, 1563, 1282, 1282, + /* 280 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 290 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 300 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 310 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 320 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 330 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 340 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 350 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 360 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 370 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 380 */ 1282, 1282, 1282, 1282, 1452, 1451, 1282, 1282, 1282, 1282, + /* 390 */ 1282, 1282, 1282, 1369, 1368, 1282, 1282, 1282, 1282, 1282, + /* 400 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 410 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 420 */ 1282, 1282, 1282, 1282, 1282, 1663, 1673, 1282, 1282, 1282, + /* 430 */ 1282, 1282, 1282, 1282, 1282, 1282, 1563, 1282, 1690, 1282, + /* 440 */ 1649, 1645, 1282, 1282, 1641, 1282, 1282, 1700, 1282, 1282, + /* 450 */ 1282, 1282, 1282, 1282, 1282, 1282, 1635, 1282, 1608, 1282, + /* 460 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1573, + /* 470 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 480 */ 1282, 1282, 1562, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 490 */ 1433, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 500 */ 1282, 1282, 1282, 1418, 1416, 1415, 1414, 1282, 1411, 1282, + /* 510 */ 1282, 1282, 1282, 1282, 1282, 1442, 1441, 1282, 1282, 1282, + /* 520 */ 1282, 1282, 1282, 1362, 1282, 1282, 1282, 1282, 1282, 1282, + /* 530 */ 1282, 1282, 1282, 1353, 1282, 1352, 1282, 1282, 1282, 1282, + /* 540 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 550 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, + /* 560 */ 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, }; /********** End of lemon-generated parsing tables *****************************/ @@ -914,269 +916,270 @@ static const char *const yyTokenName[] = { /* 68 */ "SINGLE_STABLE", /* 69 */ "STREAM_MODE", /* 70 */ "RETENTIONS", - /* 71 */ "NK_COMMA", - /* 72 */ "NK_COLON", - /* 73 */ "TABLE", - /* 74 */ "NK_LP", - /* 75 */ "NK_RP", - /* 76 */ "STABLE", - /* 77 */ "ADD", - /* 78 */ "COLUMN", - /* 79 */ "MODIFY", - /* 80 */ "RENAME", - /* 81 */ "TAG", - /* 82 */ "SET", - /* 83 */ "NK_EQ", - /* 84 */ "USING", - /* 85 */ "TAGS", - /* 86 */ "NK_DOT", - /* 87 */ "COMMENT", - /* 88 */ "BOOL", - /* 89 */ "TINYINT", - /* 90 */ "SMALLINT", - /* 91 */ "INT", - /* 92 */ "INTEGER", - /* 93 */ "BIGINT", - /* 94 */ "FLOAT", - /* 95 */ "DOUBLE", - /* 96 */ "BINARY", - /* 97 */ "TIMESTAMP", - /* 98 */ "NCHAR", - /* 99 */ "UNSIGNED", - /* 100 */ "JSON", - /* 101 */ "VARCHAR", - /* 102 */ "MEDIUMBLOB", - /* 103 */ "BLOB", - /* 104 */ "VARBINARY", - /* 105 */ "DECIMAL", - /* 106 */ "SMA", - /* 107 */ "ROLLUP", - /* 108 */ "FILE_FACTOR", - /* 109 */ "NK_FLOAT", - /* 110 */ "DELAY", - /* 111 */ "SHOW", - /* 112 */ "DATABASES", - /* 113 */ "TABLES", - /* 114 */ "STABLES", - /* 115 */ "MNODES", - /* 116 */ "MODULES", - /* 117 */ "QNODES", - /* 118 */ "FUNCTIONS", - /* 119 */ "INDEXES", - /* 120 */ "FROM", - /* 121 */ "ACCOUNTS", - /* 122 */ "APPS", - /* 123 */ "CONNECTIONS", - /* 124 */ "LICENCE", - /* 125 */ "GRANTS", - /* 126 */ "QUERIES", - /* 127 */ "SCORES", - /* 128 */ "TOPICS", - /* 129 */ "VARIABLES", - /* 130 */ "BNODES", - /* 131 */ "SNODES", - /* 132 */ "LIKE", - /* 133 */ "INDEX", - /* 134 */ "FULLTEXT", - /* 135 */ "FUNCTION", - /* 136 */ "INTERVAL", - /* 137 */ "TOPIC", - /* 138 */ "AS", - /* 139 */ "DESC", - /* 140 */ "DESCRIBE", - /* 141 */ "RESET", - /* 142 */ "QUERY", - /* 143 */ "EXPLAIN", - /* 144 */ "ANALYZE", - /* 145 */ "VERBOSE", - /* 146 */ "NK_BOOL", - /* 147 */ "RATIO", - /* 148 */ "COMPACT", - /* 149 */ "VNODES", - /* 150 */ "IN", - /* 151 */ "OUTPUTTYPE", - /* 152 */ "AGGREGATE", - /* 153 */ "BUFSIZE", - /* 154 */ "STREAM", - /* 155 */ "INTO", - /* 156 */ "TRIGGER", - /* 157 */ "AT_ONCE", - /* 158 */ "WINDOW_CLOSE", - /* 159 */ "WATERMARK", - /* 160 */ "KILL", - /* 161 */ "CONNECTION", - /* 162 */ "MERGE", - /* 163 */ "VGROUP", - /* 164 */ "REDISTRIBUTE", - /* 165 */ "SPLIT", - /* 166 */ "SYNCDB", - /* 167 */ "NULL", - /* 168 */ "NK_QUESTION", - /* 169 */ "NK_ARROW", - /* 170 */ "ROWTS", - /* 171 */ "TBNAME", - /* 172 */ "QSTARTTS", - /* 173 */ "QENDTS", - /* 174 */ "WSTARTTS", - /* 175 */ "WENDTS", - /* 176 */ "WDURATION", - /* 177 */ "CAST", - /* 178 */ "NOW", - /* 179 */ "TODAY", - /* 180 */ "TIMEZONE", - /* 181 */ "COUNT", - /* 182 */ "FIRST", - /* 183 */ "LAST", - /* 184 */ "LAST_ROW", - /* 185 */ "BETWEEN", - /* 186 */ "IS", - /* 187 */ "NK_LT", - /* 188 */ "NK_GT", - /* 189 */ "NK_LE", - /* 190 */ "NK_GE", - /* 191 */ "NK_NE", - /* 192 */ "MATCH", - /* 193 */ "NMATCH", - /* 194 */ "CONTAINS", - /* 195 */ "JOIN", - /* 196 */ "INNER", - /* 197 */ "SELECT", - /* 198 */ "DISTINCT", - /* 199 */ "WHERE", - /* 200 */ "PARTITION", - /* 201 */ "BY", - /* 202 */ "SESSION", - /* 203 */ "STATE_WINDOW", - /* 204 */ "SLIDING", - /* 205 */ "FILL", - /* 206 */ "VALUE", - /* 207 */ "NONE", - /* 208 */ "PREV", - /* 209 */ "LINEAR", - /* 210 */ "NEXT", - /* 211 */ "GROUP", - /* 212 */ "HAVING", - /* 213 */ "ORDER", - /* 214 */ "SLIMIT", - /* 215 */ "SOFFSET", - /* 216 */ "LIMIT", - /* 217 */ "OFFSET", - /* 218 */ "ASC", - /* 219 */ "NULLS", - /* 220 */ "cmd", - /* 221 */ "account_options", - /* 222 */ "alter_account_options", - /* 223 */ "literal", - /* 224 */ "alter_account_option", - /* 225 */ "user_name", - /* 226 */ "dnode_endpoint", - /* 227 */ "dnode_host_name", - /* 228 */ "not_exists_opt", - /* 229 */ "db_name", - /* 230 */ "db_options", - /* 231 */ "exists_opt", - /* 232 */ "alter_db_options", - /* 233 */ "integer_list", - /* 234 */ "variable_list", - /* 235 */ "retention_list", - /* 236 */ "alter_db_option", - /* 237 */ "retention", - /* 238 */ "full_table_name", - /* 239 */ "column_def_list", - /* 240 */ "tags_def_opt", - /* 241 */ "table_options", - /* 242 */ "multi_create_clause", - /* 243 */ "tags_def", - /* 244 */ "multi_drop_clause", - /* 245 */ "alter_table_clause", - /* 246 */ "alter_table_options", - /* 247 */ "column_name", - /* 248 */ "type_name", - /* 249 */ "create_subtable_clause", - /* 250 */ "specific_tags_opt", - /* 251 */ "literal_list", - /* 252 */ "drop_table_clause", - /* 253 */ "col_name_list", - /* 254 */ "table_name", - /* 255 */ "column_def", - /* 256 */ "func_name_list", - /* 257 */ "alter_table_option", - /* 258 */ "col_name", - /* 259 */ "db_name_cond_opt", - /* 260 */ "like_pattern_opt", - /* 261 */ "table_name_cond", - /* 262 */ "from_db_opt", - /* 263 */ "func_name", - /* 264 */ "function_name", - /* 265 */ "index_name", - /* 266 */ "index_options", - /* 267 */ "func_list", - /* 268 */ "duration_literal", - /* 269 */ "sliding_opt", - /* 270 */ "func", - /* 271 */ "expression_list", - /* 272 */ "topic_name", - /* 273 */ "query_expression", - /* 274 */ "analyze_opt", - /* 275 */ "explain_options", - /* 276 */ "agg_func_opt", - /* 277 */ "bufsize_opt", - /* 278 */ "stream_name", - /* 279 */ "stream_options", - /* 280 */ "into_opt", - /* 281 */ "dnode_list", - /* 282 */ "signed", - /* 283 */ "signed_literal", - /* 284 */ "table_alias", - /* 285 */ "column_alias", - /* 286 */ "expression", - /* 287 */ "pseudo_column", - /* 288 */ "column_reference", - /* 289 */ "function_expression", - /* 290 */ "subquery", - /* 291 */ "star_func", - /* 292 */ "star_func_para_list", - /* 293 */ "noarg_func", - /* 294 */ "other_para_list", - /* 295 */ "star_func_para", - /* 296 */ "predicate", - /* 297 */ "compare_op", - /* 298 */ "in_op", - /* 299 */ "in_predicate_value", - /* 300 */ "boolean_value_expression", - /* 301 */ "boolean_primary", - /* 302 */ "common_expression", - /* 303 */ "from_clause", - /* 304 */ "table_reference_list", - /* 305 */ "table_reference", - /* 306 */ "table_primary", - /* 307 */ "joined_table", - /* 308 */ "alias_opt", - /* 309 */ "parenthesized_joined_table", - /* 310 */ "join_type", - /* 311 */ "search_condition", - /* 312 */ "query_specification", - /* 313 */ "set_quantifier_opt", - /* 314 */ "select_list", - /* 315 */ "where_clause_opt", - /* 316 */ "partition_by_clause_opt", - /* 317 */ "twindow_clause_opt", - /* 318 */ "group_by_clause_opt", - /* 319 */ "having_clause_opt", - /* 320 */ "select_sublist", - /* 321 */ "select_item", - /* 322 */ "fill_opt", - /* 323 */ "fill_mode", - /* 324 */ "group_by_list", - /* 325 */ "query_expression_body", - /* 326 */ "order_by_clause_opt", - /* 327 */ "slimit_clause_opt", - /* 328 */ "limit_clause_opt", - /* 329 */ "query_primary", - /* 330 */ "sort_specification_list", - /* 331 */ "sort_specification", - /* 332 */ "ordering_specification_opt", - /* 333 */ "null_ordering_opt", + /* 71 */ "STRICT", + /* 72 */ "NK_COMMA", + /* 73 */ "NK_COLON", + /* 74 */ "TABLE", + /* 75 */ "NK_LP", + /* 76 */ "NK_RP", + /* 77 */ "STABLE", + /* 78 */ "ADD", + /* 79 */ "COLUMN", + /* 80 */ "MODIFY", + /* 81 */ "RENAME", + /* 82 */ "TAG", + /* 83 */ "SET", + /* 84 */ "NK_EQ", + /* 85 */ "USING", + /* 86 */ "TAGS", + /* 87 */ "NK_DOT", + /* 88 */ "COMMENT", + /* 89 */ "BOOL", + /* 90 */ "TINYINT", + /* 91 */ "SMALLINT", + /* 92 */ "INT", + /* 93 */ "INTEGER", + /* 94 */ "BIGINT", + /* 95 */ "FLOAT", + /* 96 */ "DOUBLE", + /* 97 */ "BINARY", + /* 98 */ "TIMESTAMP", + /* 99 */ "NCHAR", + /* 100 */ "UNSIGNED", + /* 101 */ "JSON", + /* 102 */ "VARCHAR", + /* 103 */ "MEDIUMBLOB", + /* 104 */ "BLOB", + /* 105 */ "VARBINARY", + /* 106 */ "DECIMAL", + /* 107 */ "SMA", + /* 108 */ "ROLLUP", + /* 109 */ "FILE_FACTOR", + /* 110 */ "NK_FLOAT", + /* 111 */ "DELAY", + /* 112 */ "SHOW", + /* 113 */ "DATABASES", + /* 114 */ "TABLES", + /* 115 */ "STABLES", + /* 116 */ "MNODES", + /* 117 */ "MODULES", + /* 118 */ "QNODES", + /* 119 */ "FUNCTIONS", + /* 120 */ "INDEXES", + /* 121 */ "FROM", + /* 122 */ "ACCOUNTS", + /* 123 */ "APPS", + /* 124 */ "CONNECTIONS", + /* 125 */ "LICENCE", + /* 126 */ "GRANTS", + /* 127 */ "QUERIES", + /* 128 */ "SCORES", + /* 129 */ "TOPICS", + /* 130 */ "VARIABLES", + /* 131 */ "BNODES", + /* 132 */ "SNODES", + /* 133 */ "LIKE", + /* 134 */ "INDEX", + /* 135 */ "FULLTEXT", + /* 136 */ "FUNCTION", + /* 137 */ "INTERVAL", + /* 138 */ "TOPIC", + /* 139 */ "AS", + /* 140 */ "DESC", + /* 141 */ "DESCRIBE", + /* 142 */ "RESET", + /* 143 */ "QUERY", + /* 144 */ "EXPLAIN", + /* 145 */ "ANALYZE", + /* 146 */ "VERBOSE", + /* 147 */ "NK_BOOL", + /* 148 */ "RATIO", + /* 149 */ "COMPACT", + /* 150 */ "VNODES", + /* 151 */ "IN", + /* 152 */ "OUTPUTTYPE", + /* 153 */ "AGGREGATE", + /* 154 */ "BUFSIZE", + /* 155 */ "STREAM", + /* 156 */ "INTO", + /* 157 */ "TRIGGER", + /* 158 */ "AT_ONCE", + /* 159 */ "WINDOW_CLOSE", + /* 160 */ "WATERMARK", + /* 161 */ "KILL", + /* 162 */ "CONNECTION", + /* 163 */ "MERGE", + /* 164 */ "VGROUP", + /* 165 */ "REDISTRIBUTE", + /* 166 */ "SPLIT", + /* 167 */ "SYNCDB", + /* 168 */ "NULL", + /* 169 */ "NK_QUESTION", + /* 170 */ "NK_ARROW", + /* 171 */ "ROWTS", + /* 172 */ "TBNAME", + /* 173 */ "QSTARTTS", + /* 174 */ "QENDTS", + /* 175 */ "WSTARTTS", + /* 176 */ "WENDTS", + /* 177 */ "WDURATION", + /* 178 */ "CAST", + /* 179 */ "NOW", + /* 180 */ "TODAY", + /* 181 */ "TIMEZONE", + /* 182 */ "COUNT", + /* 183 */ "FIRST", + /* 184 */ "LAST", + /* 185 */ "LAST_ROW", + /* 186 */ "BETWEEN", + /* 187 */ "IS", + /* 188 */ "NK_LT", + /* 189 */ "NK_GT", + /* 190 */ "NK_LE", + /* 191 */ "NK_GE", + /* 192 */ "NK_NE", + /* 193 */ "MATCH", + /* 194 */ "NMATCH", + /* 195 */ "CONTAINS", + /* 196 */ "JOIN", + /* 197 */ "INNER", + /* 198 */ "SELECT", + /* 199 */ "DISTINCT", + /* 200 */ "WHERE", + /* 201 */ "PARTITION", + /* 202 */ "BY", + /* 203 */ "SESSION", + /* 204 */ "STATE_WINDOW", + /* 205 */ "SLIDING", + /* 206 */ "FILL", + /* 207 */ "VALUE", + /* 208 */ "NONE", + /* 209 */ "PREV", + /* 210 */ "LINEAR", + /* 211 */ "NEXT", + /* 212 */ "GROUP", + /* 213 */ "HAVING", + /* 214 */ "ORDER", + /* 215 */ "SLIMIT", + /* 216 */ "SOFFSET", + /* 217 */ "LIMIT", + /* 218 */ "OFFSET", + /* 219 */ "ASC", + /* 220 */ "NULLS", + /* 221 */ "cmd", + /* 222 */ "account_options", + /* 223 */ "alter_account_options", + /* 224 */ "literal", + /* 225 */ "alter_account_option", + /* 226 */ "user_name", + /* 227 */ "dnode_endpoint", + /* 228 */ "dnode_host_name", + /* 229 */ "not_exists_opt", + /* 230 */ "db_name", + /* 231 */ "db_options", + /* 232 */ "exists_opt", + /* 233 */ "alter_db_options", + /* 234 */ "integer_list", + /* 235 */ "variable_list", + /* 236 */ "retention_list", + /* 237 */ "alter_db_option", + /* 238 */ "retention", + /* 239 */ "full_table_name", + /* 240 */ "column_def_list", + /* 241 */ "tags_def_opt", + /* 242 */ "table_options", + /* 243 */ "multi_create_clause", + /* 244 */ "tags_def", + /* 245 */ "multi_drop_clause", + /* 246 */ "alter_table_clause", + /* 247 */ "alter_table_options", + /* 248 */ "column_name", + /* 249 */ "type_name", + /* 250 */ "create_subtable_clause", + /* 251 */ "specific_tags_opt", + /* 252 */ "literal_list", + /* 253 */ "drop_table_clause", + /* 254 */ "col_name_list", + /* 255 */ "table_name", + /* 256 */ "column_def", + /* 257 */ "func_name_list", + /* 258 */ "alter_table_option", + /* 259 */ "col_name", + /* 260 */ "db_name_cond_opt", + /* 261 */ "like_pattern_opt", + /* 262 */ "table_name_cond", + /* 263 */ "from_db_opt", + /* 264 */ "func_name", + /* 265 */ "function_name", + /* 266 */ "index_name", + /* 267 */ "index_options", + /* 268 */ "func_list", + /* 269 */ "duration_literal", + /* 270 */ "sliding_opt", + /* 271 */ "func", + /* 272 */ "expression_list", + /* 273 */ "topic_name", + /* 274 */ "query_expression", + /* 275 */ "analyze_opt", + /* 276 */ "explain_options", + /* 277 */ "agg_func_opt", + /* 278 */ "bufsize_opt", + /* 279 */ "stream_name", + /* 280 */ "stream_options", + /* 281 */ "into_opt", + /* 282 */ "dnode_list", + /* 283 */ "signed", + /* 284 */ "signed_literal", + /* 285 */ "table_alias", + /* 286 */ "column_alias", + /* 287 */ "expression", + /* 288 */ "pseudo_column", + /* 289 */ "column_reference", + /* 290 */ "function_expression", + /* 291 */ "subquery", + /* 292 */ "star_func", + /* 293 */ "star_func_para_list", + /* 294 */ "noarg_func", + /* 295 */ "other_para_list", + /* 296 */ "star_func_para", + /* 297 */ "predicate", + /* 298 */ "compare_op", + /* 299 */ "in_op", + /* 300 */ "in_predicate_value", + /* 301 */ "boolean_value_expression", + /* 302 */ "boolean_primary", + /* 303 */ "common_expression", + /* 304 */ "from_clause", + /* 305 */ "table_reference_list", + /* 306 */ "table_reference", + /* 307 */ "table_primary", + /* 308 */ "joined_table", + /* 309 */ "alias_opt", + /* 310 */ "parenthesized_joined_table", + /* 311 */ "join_type", + /* 312 */ "search_condition", + /* 313 */ "query_specification", + /* 314 */ "set_quantifier_opt", + /* 315 */ "select_list", + /* 316 */ "where_clause_opt", + /* 317 */ "partition_by_clause_opt", + /* 318 */ "twindow_clause_opt", + /* 319 */ "group_by_clause_opt", + /* 320 */ "having_clause_opt", + /* 321 */ "select_sublist", + /* 322 */ "select_item", + /* 323 */ "fill_opt", + /* 324 */ "fill_mode", + /* 325 */ "group_by_list", + /* 326 */ "query_expression_body", + /* 327 */ "order_by_clause_opt", + /* 328 */ "slimit_clause_opt", + /* 329 */ "limit_clause_opt", + /* 330 */ "query_primary", + /* 331 */ "sort_specification_list", + /* 332 */ "sort_specification", + /* 333 */ "ordering_specification_opt", + /* 334 */ "null_ordering_opt", }; #endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ @@ -1262,361 +1265,363 @@ static const char *const yyRuleName[] = { /* 75 */ "db_options ::= db_options SINGLE_STABLE NK_INTEGER", /* 76 */ "db_options ::= db_options STREAM_MODE NK_INTEGER", /* 77 */ "db_options ::= db_options RETENTIONS retention_list", - /* 78 */ "alter_db_options ::= alter_db_option", - /* 79 */ "alter_db_options ::= alter_db_options alter_db_option", - /* 80 */ "alter_db_option ::= BLOCKS NK_INTEGER", - /* 81 */ "alter_db_option ::= FSYNC NK_INTEGER", - /* 82 */ "alter_db_option ::= KEEP integer_list", - /* 83 */ "alter_db_option ::= KEEP variable_list", - /* 84 */ "alter_db_option ::= WAL NK_INTEGER", - /* 85 */ "alter_db_option ::= QUORUM NK_INTEGER", - /* 86 */ "alter_db_option ::= CACHELAST NK_INTEGER", - /* 87 */ "alter_db_option ::= REPLICA NK_INTEGER", - /* 88 */ "integer_list ::= NK_INTEGER", - /* 89 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", - /* 90 */ "variable_list ::= NK_VARIABLE", - /* 91 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", - /* 92 */ "retention_list ::= retention", - /* 93 */ "retention_list ::= retention_list NK_COMMA retention", - /* 94 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", - /* 95 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", - /* 96 */ "cmd ::= CREATE TABLE multi_create_clause", - /* 97 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", - /* 98 */ "cmd ::= DROP TABLE multi_drop_clause", - /* 99 */ "cmd ::= DROP STABLE exists_opt full_table_name", - /* 100 */ "cmd ::= ALTER TABLE alter_table_clause", - /* 101 */ "cmd ::= ALTER STABLE alter_table_clause", - /* 102 */ "alter_table_clause ::= full_table_name alter_table_options", - /* 103 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", - /* 104 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", - /* 105 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", - /* 106 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", - /* 107 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", - /* 108 */ "alter_table_clause ::= full_table_name DROP TAG column_name", - /* 109 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", - /* 110 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", - /* 111 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal", - /* 112 */ "multi_create_clause ::= create_subtable_clause", - /* 113 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", - /* 114 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP", - /* 115 */ "multi_drop_clause ::= drop_table_clause", - /* 116 */ "multi_drop_clause ::= multi_drop_clause drop_table_clause", - /* 117 */ "drop_table_clause ::= exists_opt full_table_name", - /* 118 */ "specific_tags_opt ::=", - /* 119 */ "specific_tags_opt ::= NK_LP col_name_list NK_RP", - /* 120 */ "full_table_name ::= table_name", - /* 121 */ "full_table_name ::= db_name NK_DOT table_name", - /* 122 */ "column_def_list ::= column_def", - /* 123 */ "column_def_list ::= column_def_list NK_COMMA column_def", - /* 124 */ "column_def ::= column_name type_name", - /* 125 */ "column_def ::= column_name type_name COMMENT NK_STRING", - /* 126 */ "type_name ::= BOOL", - /* 127 */ "type_name ::= TINYINT", - /* 128 */ "type_name ::= SMALLINT", - /* 129 */ "type_name ::= INT", - /* 130 */ "type_name ::= INTEGER", - /* 131 */ "type_name ::= BIGINT", - /* 132 */ "type_name ::= FLOAT", - /* 133 */ "type_name ::= DOUBLE", - /* 134 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", - /* 135 */ "type_name ::= TIMESTAMP", - /* 136 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", - /* 137 */ "type_name ::= TINYINT UNSIGNED", - /* 138 */ "type_name ::= SMALLINT UNSIGNED", - /* 139 */ "type_name ::= INT UNSIGNED", - /* 140 */ "type_name ::= BIGINT UNSIGNED", - /* 141 */ "type_name ::= JSON", - /* 142 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", - /* 143 */ "type_name ::= MEDIUMBLOB", - /* 144 */ "type_name ::= BLOB", - /* 145 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", - /* 146 */ "type_name ::= DECIMAL", - /* 147 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", - /* 148 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", - /* 149 */ "tags_def_opt ::=", - /* 150 */ "tags_def_opt ::= tags_def", - /* 151 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", - /* 152 */ "table_options ::=", - /* 153 */ "table_options ::= table_options COMMENT NK_STRING", - /* 154 */ "table_options ::= table_options KEEP integer_list", - /* 155 */ "table_options ::= table_options KEEP variable_list", - /* 156 */ "table_options ::= table_options TTL NK_INTEGER", - /* 157 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", - /* 158 */ "table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP", - /* 159 */ "table_options ::= table_options FILE_FACTOR NK_FLOAT", - /* 160 */ "table_options ::= table_options DELAY NK_INTEGER", - /* 161 */ "alter_table_options ::= alter_table_option", - /* 162 */ "alter_table_options ::= alter_table_options alter_table_option", - /* 163 */ "alter_table_option ::= COMMENT NK_STRING", - /* 164 */ "alter_table_option ::= KEEP integer_list", - /* 165 */ "alter_table_option ::= KEEP variable_list", - /* 166 */ "alter_table_option ::= TTL NK_INTEGER", - /* 167 */ "col_name_list ::= col_name", - /* 168 */ "col_name_list ::= col_name_list NK_COMMA col_name", - /* 169 */ "col_name ::= column_name", - /* 170 */ "cmd ::= SHOW DNODES", - /* 171 */ "cmd ::= SHOW USERS", - /* 172 */ "cmd ::= SHOW DATABASES", - /* 173 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", - /* 174 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", - /* 175 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", - /* 176 */ "cmd ::= SHOW MNODES", - /* 177 */ "cmd ::= SHOW MODULES", - /* 178 */ "cmd ::= SHOW QNODES", - /* 179 */ "cmd ::= SHOW FUNCTIONS", - /* 180 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", - /* 181 */ "cmd ::= SHOW STREAMS", - /* 182 */ "cmd ::= SHOW ACCOUNTS", - /* 183 */ "cmd ::= SHOW APPS", - /* 184 */ "cmd ::= SHOW CONNECTIONS", - /* 185 */ "cmd ::= SHOW LICENCE", - /* 186 */ "cmd ::= SHOW GRANTS", - /* 187 */ "cmd ::= SHOW CREATE DATABASE db_name", - /* 188 */ "cmd ::= SHOW CREATE TABLE full_table_name", - /* 189 */ "cmd ::= SHOW CREATE STABLE full_table_name", - /* 190 */ "cmd ::= SHOW QUERIES", - /* 191 */ "cmd ::= SHOW SCORES", - /* 192 */ "cmd ::= SHOW TOPICS", - /* 193 */ "cmd ::= SHOW VARIABLES", - /* 194 */ "cmd ::= SHOW BNODES", - /* 195 */ "cmd ::= SHOW SNODES", - /* 196 */ "db_name_cond_opt ::=", - /* 197 */ "db_name_cond_opt ::= db_name NK_DOT", - /* 198 */ "like_pattern_opt ::=", - /* 199 */ "like_pattern_opt ::= LIKE NK_STRING", - /* 200 */ "table_name_cond ::= table_name", - /* 201 */ "from_db_opt ::=", - /* 202 */ "from_db_opt ::= FROM db_name", - /* 203 */ "func_name_list ::= func_name", - /* 204 */ "func_name_list ::= func_name_list NK_COMMA col_name", - /* 205 */ "func_name ::= function_name", - /* 206 */ "cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options", - /* 207 */ "cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP", - /* 208 */ "cmd ::= DROP INDEX exists_opt index_name ON table_name", - /* 209 */ "index_options ::=", - /* 210 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt", - /* 211 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt", - /* 212 */ "func_list ::= func", - /* 213 */ "func_list ::= func_list NK_COMMA func", - /* 214 */ "func ::= function_name NK_LP expression_list NK_RP", - /* 215 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression", - /* 216 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name", - /* 217 */ "cmd ::= DROP TOPIC exists_opt topic_name", - /* 218 */ "cmd ::= DESC full_table_name", - /* 219 */ "cmd ::= DESCRIBE full_table_name", - /* 220 */ "cmd ::= RESET QUERY CACHE", - /* 221 */ "cmd ::= EXPLAIN analyze_opt explain_options query_expression", - /* 222 */ "analyze_opt ::=", - /* 223 */ "analyze_opt ::= ANALYZE", - /* 224 */ "explain_options ::=", - /* 225 */ "explain_options ::= explain_options VERBOSE NK_BOOL", - /* 226 */ "explain_options ::= explain_options RATIO NK_FLOAT", - /* 227 */ "cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP", - /* 228 */ "cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", - /* 229 */ "cmd ::= DROP FUNCTION function_name", - /* 230 */ "agg_func_opt ::=", - /* 231 */ "agg_func_opt ::= AGGREGATE", - /* 232 */ "bufsize_opt ::=", - /* 233 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", - /* 234 */ "cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression", - /* 235 */ "cmd ::= DROP STREAM exists_opt stream_name", - /* 236 */ "into_opt ::=", - /* 237 */ "into_opt ::= INTO full_table_name", - /* 238 */ "stream_options ::=", - /* 239 */ "stream_options ::= stream_options TRIGGER AT_ONCE", - /* 240 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", - /* 241 */ "stream_options ::= stream_options WATERMARK duration_literal", - /* 242 */ "cmd ::= KILL CONNECTION NK_INTEGER", - /* 243 */ "cmd ::= KILL QUERY NK_INTEGER", - /* 244 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", - /* 245 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", - /* 246 */ "cmd ::= SPLIT VGROUP NK_INTEGER", - /* 247 */ "dnode_list ::= DNODE NK_INTEGER", - /* 248 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", - /* 249 */ "cmd ::= SYNCDB db_name REPLICA", - /* 250 */ "cmd ::= query_expression", - /* 251 */ "literal ::= NK_INTEGER", - /* 252 */ "literal ::= NK_FLOAT", - /* 253 */ "literal ::= NK_STRING", - /* 254 */ "literal ::= NK_BOOL", - /* 255 */ "literal ::= TIMESTAMP NK_STRING", - /* 256 */ "literal ::= duration_literal", - /* 257 */ "literal ::= NULL", - /* 258 */ "literal ::= NK_QUESTION", - /* 259 */ "duration_literal ::= NK_VARIABLE", - /* 260 */ "signed ::= NK_INTEGER", - /* 261 */ "signed ::= NK_PLUS NK_INTEGER", - /* 262 */ "signed ::= NK_MINUS NK_INTEGER", - /* 263 */ "signed ::= NK_FLOAT", - /* 264 */ "signed ::= NK_PLUS NK_FLOAT", - /* 265 */ "signed ::= NK_MINUS NK_FLOAT", - /* 266 */ "signed_literal ::= signed", - /* 267 */ "signed_literal ::= NK_STRING", - /* 268 */ "signed_literal ::= NK_BOOL", - /* 269 */ "signed_literal ::= TIMESTAMP NK_STRING", - /* 270 */ "signed_literal ::= duration_literal", - /* 271 */ "signed_literal ::= NULL", - /* 272 */ "literal_list ::= signed_literal", - /* 273 */ "literal_list ::= literal_list NK_COMMA signed_literal", - /* 274 */ "db_name ::= NK_ID", - /* 275 */ "table_name ::= NK_ID", - /* 276 */ "column_name ::= NK_ID", - /* 277 */ "function_name ::= NK_ID", - /* 278 */ "table_alias ::= NK_ID", - /* 279 */ "column_alias ::= NK_ID", - /* 280 */ "user_name ::= NK_ID", - /* 281 */ "index_name ::= NK_ID", - /* 282 */ "topic_name ::= NK_ID", - /* 283 */ "stream_name ::= NK_ID", - /* 284 */ "expression ::= literal", - /* 285 */ "expression ::= pseudo_column", - /* 286 */ "expression ::= column_reference", - /* 287 */ "expression ::= function_expression", - /* 288 */ "expression ::= subquery", - /* 289 */ "expression ::= NK_LP expression NK_RP", - /* 290 */ "expression ::= NK_PLUS expression", - /* 291 */ "expression ::= NK_MINUS expression", - /* 292 */ "expression ::= expression NK_PLUS expression", - /* 293 */ "expression ::= expression NK_MINUS expression", - /* 294 */ "expression ::= expression NK_STAR expression", - /* 295 */ "expression ::= expression NK_SLASH expression", - /* 296 */ "expression ::= expression NK_REM expression", - /* 297 */ "expression ::= column_reference NK_ARROW NK_STRING", - /* 298 */ "expression_list ::= expression", - /* 299 */ "expression_list ::= expression_list NK_COMMA expression", - /* 300 */ "column_reference ::= column_name", - /* 301 */ "column_reference ::= table_name NK_DOT column_name", - /* 302 */ "pseudo_column ::= ROWTS", - /* 303 */ "pseudo_column ::= TBNAME", - /* 304 */ "pseudo_column ::= QSTARTTS", - /* 305 */ "pseudo_column ::= QENDTS", - /* 306 */ "pseudo_column ::= WSTARTTS", - /* 307 */ "pseudo_column ::= WENDTS", - /* 308 */ "pseudo_column ::= WDURATION", - /* 309 */ "function_expression ::= function_name NK_LP expression_list NK_RP", - /* 310 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", - /* 311 */ "function_expression ::= CAST NK_LP expression AS type_name NK_RP", - /* 312 */ "function_expression ::= noarg_func NK_LP NK_RP", - /* 313 */ "noarg_func ::= NOW", - /* 314 */ "noarg_func ::= TODAY", - /* 315 */ "noarg_func ::= TIMEZONE", - /* 316 */ "star_func ::= COUNT", - /* 317 */ "star_func ::= FIRST", - /* 318 */ "star_func ::= LAST", - /* 319 */ "star_func ::= LAST_ROW", - /* 320 */ "star_func_para_list ::= NK_STAR", - /* 321 */ "star_func_para_list ::= other_para_list", - /* 322 */ "other_para_list ::= star_func_para", - /* 323 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", - /* 324 */ "star_func_para ::= expression", - /* 325 */ "star_func_para ::= table_name NK_DOT NK_STAR", - /* 326 */ "predicate ::= expression compare_op expression", - /* 327 */ "predicate ::= expression BETWEEN expression AND expression", - /* 328 */ "predicate ::= expression NOT BETWEEN expression AND expression", - /* 329 */ "predicate ::= expression IS NULL", - /* 330 */ "predicate ::= expression IS NOT NULL", - /* 331 */ "predicate ::= expression in_op in_predicate_value", - /* 332 */ "compare_op ::= NK_LT", - /* 333 */ "compare_op ::= NK_GT", - /* 334 */ "compare_op ::= NK_LE", - /* 335 */ "compare_op ::= NK_GE", - /* 336 */ "compare_op ::= NK_NE", - /* 337 */ "compare_op ::= NK_EQ", - /* 338 */ "compare_op ::= LIKE", - /* 339 */ "compare_op ::= NOT LIKE", - /* 340 */ "compare_op ::= MATCH", - /* 341 */ "compare_op ::= NMATCH", - /* 342 */ "compare_op ::= CONTAINS", - /* 343 */ "in_op ::= IN", - /* 344 */ "in_op ::= NOT IN", - /* 345 */ "in_predicate_value ::= NK_LP expression_list NK_RP", - /* 346 */ "boolean_value_expression ::= boolean_primary", - /* 347 */ "boolean_value_expression ::= NOT boolean_primary", - /* 348 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", - /* 349 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", - /* 350 */ "boolean_primary ::= predicate", - /* 351 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", - /* 352 */ "common_expression ::= expression", - /* 353 */ "common_expression ::= boolean_value_expression", - /* 354 */ "from_clause ::= FROM table_reference_list", - /* 355 */ "table_reference_list ::= table_reference", - /* 356 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", - /* 357 */ "table_reference ::= table_primary", - /* 358 */ "table_reference ::= joined_table", - /* 359 */ "table_primary ::= table_name alias_opt", - /* 360 */ "table_primary ::= db_name NK_DOT table_name alias_opt", - /* 361 */ "table_primary ::= subquery alias_opt", - /* 362 */ "table_primary ::= parenthesized_joined_table", - /* 363 */ "alias_opt ::=", - /* 364 */ "alias_opt ::= table_alias", - /* 365 */ "alias_opt ::= AS table_alias", - /* 366 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", - /* 367 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", - /* 368 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", - /* 369 */ "join_type ::=", - /* 370 */ "join_type ::= INNER", - /* 371 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt", - /* 372 */ "set_quantifier_opt ::=", - /* 373 */ "set_quantifier_opt ::= DISTINCT", - /* 374 */ "set_quantifier_opt ::= ALL", - /* 375 */ "select_list ::= NK_STAR", - /* 376 */ "select_list ::= select_sublist", - /* 377 */ "select_sublist ::= select_item", - /* 378 */ "select_sublist ::= select_sublist NK_COMMA select_item", - /* 379 */ "select_item ::= common_expression", - /* 380 */ "select_item ::= common_expression column_alias", - /* 381 */ "select_item ::= common_expression AS column_alias", - /* 382 */ "select_item ::= table_name NK_DOT NK_STAR", - /* 383 */ "where_clause_opt ::=", - /* 384 */ "where_clause_opt ::= WHERE search_condition", - /* 385 */ "partition_by_clause_opt ::=", - /* 386 */ "partition_by_clause_opt ::= PARTITION BY expression_list", - /* 387 */ "twindow_clause_opt ::=", - /* 388 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", - /* 389 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP", - /* 390 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", - /* 391 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", - /* 392 */ "sliding_opt ::=", - /* 393 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", - /* 394 */ "fill_opt ::=", - /* 395 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", - /* 396 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", - /* 397 */ "fill_mode ::= NONE", - /* 398 */ "fill_mode ::= PREV", - /* 399 */ "fill_mode ::= NULL", - /* 400 */ "fill_mode ::= LINEAR", - /* 401 */ "fill_mode ::= NEXT", - /* 402 */ "group_by_clause_opt ::=", - /* 403 */ "group_by_clause_opt ::= GROUP BY group_by_list", - /* 404 */ "group_by_list ::= expression", - /* 405 */ "group_by_list ::= group_by_list NK_COMMA expression", - /* 406 */ "having_clause_opt ::=", - /* 407 */ "having_clause_opt ::= HAVING search_condition", - /* 408 */ "query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt", - /* 409 */ "query_expression_body ::= query_primary", - /* 410 */ "query_expression_body ::= query_expression_body UNION ALL query_expression_body", - /* 411 */ "query_primary ::= query_specification", - /* 412 */ "order_by_clause_opt ::=", - /* 413 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", - /* 414 */ "slimit_clause_opt ::=", - /* 415 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", - /* 416 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", - /* 417 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", - /* 418 */ "limit_clause_opt ::=", - /* 419 */ "limit_clause_opt ::= LIMIT NK_INTEGER", - /* 420 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", - /* 421 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", - /* 422 */ "subquery ::= NK_LP query_expression NK_RP", - /* 423 */ "search_condition ::= common_expression", - /* 424 */ "sort_specification_list ::= sort_specification", - /* 425 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", - /* 426 */ "sort_specification ::= expression ordering_specification_opt null_ordering_opt", - /* 427 */ "ordering_specification_opt ::=", - /* 428 */ "ordering_specification_opt ::= ASC", - /* 429 */ "ordering_specification_opt ::= DESC", - /* 430 */ "null_ordering_opt ::=", - /* 431 */ "null_ordering_opt ::= NULLS FIRST", - /* 432 */ "null_ordering_opt ::= NULLS LAST", + /* 78 */ "db_options ::= db_options STRICT NK_INTEGER", + /* 79 */ "alter_db_options ::= alter_db_option", + /* 80 */ "alter_db_options ::= alter_db_options alter_db_option", + /* 81 */ "alter_db_option ::= BLOCKS NK_INTEGER", + /* 82 */ "alter_db_option ::= FSYNC NK_INTEGER", + /* 83 */ "alter_db_option ::= KEEP integer_list", + /* 84 */ "alter_db_option ::= KEEP variable_list", + /* 85 */ "alter_db_option ::= WAL NK_INTEGER", + /* 86 */ "alter_db_option ::= QUORUM NK_INTEGER", + /* 87 */ "alter_db_option ::= CACHELAST NK_INTEGER", + /* 88 */ "alter_db_option ::= REPLICA NK_INTEGER", + /* 89 */ "alter_db_option ::= STRICT NK_INTEGER", + /* 90 */ "integer_list ::= NK_INTEGER", + /* 91 */ "integer_list ::= integer_list NK_COMMA NK_INTEGER", + /* 92 */ "variable_list ::= NK_VARIABLE", + /* 93 */ "variable_list ::= variable_list NK_COMMA NK_VARIABLE", + /* 94 */ "retention_list ::= retention", + /* 95 */ "retention_list ::= retention_list NK_COMMA retention", + /* 96 */ "retention ::= NK_VARIABLE NK_COLON NK_VARIABLE", + /* 97 */ "cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options", + /* 98 */ "cmd ::= CREATE TABLE multi_create_clause", + /* 99 */ "cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options", + /* 100 */ "cmd ::= DROP TABLE multi_drop_clause", + /* 101 */ "cmd ::= DROP STABLE exists_opt full_table_name", + /* 102 */ "cmd ::= ALTER TABLE alter_table_clause", + /* 103 */ "cmd ::= ALTER STABLE alter_table_clause", + /* 104 */ "alter_table_clause ::= full_table_name alter_table_options", + /* 105 */ "alter_table_clause ::= full_table_name ADD COLUMN column_name type_name", + /* 106 */ "alter_table_clause ::= full_table_name DROP COLUMN column_name", + /* 107 */ "alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name", + /* 108 */ "alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name", + /* 109 */ "alter_table_clause ::= full_table_name ADD TAG column_name type_name", + /* 110 */ "alter_table_clause ::= full_table_name DROP TAG column_name", + /* 111 */ "alter_table_clause ::= full_table_name MODIFY TAG column_name type_name", + /* 112 */ "alter_table_clause ::= full_table_name RENAME TAG column_name column_name", + /* 113 */ "alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal", + /* 114 */ "multi_create_clause ::= create_subtable_clause", + /* 115 */ "multi_create_clause ::= multi_create_clause create_subtable_clause", + /* 116 */ "create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP", + /* 117 */ "multi_drop_clause ::= drop_table_clause", + /* 118 */ "multi_drop_clause ::= multi_drop_clause drop_table_clause", + /* 119 */ "drop_table_clause ::= exists_opt full_table_name", + /* 120 */ "specific_tags_opt ::=", + /* 121 */ "specific_tags_opt ::= NK_LP col_name_list NK_RP", + /* 122 */ "full_table_name ::= table_name", + /* 123 */ "full_table_name ::= db_name NK_DOT table_name", + /* 124 */ "column_def_list ::= column_def", + /* 125 */ "column_def_list ::= column_def_list NK_COMMA column_def", + /* 126 */ "column_def ::= column_name type_name", + /* 127 */ "column_def ::= column_name type_name COMMENT NK_STRING", + /* 128 */ "type_name ::= BOOL", + /* 129 */ "type_name ::= TINYINT", + /* 130 */ "type_name ::= SMALLINT", + /* 131 */ "type_name ::= INT", + /* 132 */ "type_name ::= INTEGER", + /* 133 */ "type_name ::= BIGINT", + /* 134 */ "type_name ::= FLOAT", + /* 135 */ "type_name ::= DOUBLE", + /* 136 */ "type_name ::= BINARY NK_LP NK_INTEGER NK_RP", + /* 137 */ "type_name ::= TIMESTAMP", + /* 138 */ "type_name ::= NCHAR NK_LP NK_INTEGER NK_RP", + /* 139 */ "type_name ::= TINYINT UNSIGNED", + /* 140 */ "type_name ::= SMALLINT UNSIGNED", + /* 141 */ "type_name ::= INT UNSIGNED", + /* 142 */ "type_name ::= BIGINT UNSIGNED", + /* 143 */ "type_name ::= JSON", + /* 144 */ "type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP", + /* 145 */ "type_name ::= MEDIUMBLOB", + /* 146 */ "type_name ::= BLOB", + /* 147 */ "type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP", + /* 148 */ "type_name ::= DECIMAL", + /* 149 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP", + /* 150 */ "type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP", + /* 151 */ "tags_def_opt ::=", + /* 152 */ "tags_def_opt ::= tags_def", + /* 153 */ "tags_def ::= TAGS NK_LP column_def_list NK_RP", + /* 154 */ "table_options ::=", + /* 155 */ "table_options ::= table_options COMMENT NK_STRING", + /* 156 */ "table_options ::= table_options KEEP integer_list", + /* 157 */ "table_options ::= table_options KEEP variable_list", + /* 158 */ "table_options ::= table_options TTL NK_INTEGER", + /* 159 */ "table_options ::= table_options SMA NK_LP col_name_list NK_RP", + /* 160 */ "table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP", + /* 161 */ "table_options ::= table_options FILE_FACTOR NK_FLOAT", + /* 162 */ "table_options ::= table_options DELAY NK_INTEGER", + /* 163 */ "alter_table_options ::= alter_table_option", + /* 164 */ "alter_table_options ::= alter_table_options alter_table_option", + /* 165 */ "alter_table_option ::= COMMENT NK_STRING", + /* 166 */ "alter_table_option ::= KEEP integer_list", + /* 167 */ "alter_table_option ::= KEEP variable_list", + /* 168 */ "alter_table_option ::= TTL NK_INTEGER", + /* 169 */ "col_name_list ::= col_name", + /* 170 */ "col_name_list ::= col_name_list NK_COMMA col_name", + /* 171 */ "col_name ::= column_name", + /* 172 */ "cmd ::= SHOW DNODES", + /* 173 */ "cmd ::= SHOW USERS", + /* 174 */ "cmd ::= SHOW DATABASES", + /* 175 */ "cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt", + /* 176 */ "cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt", + /* 177 */ "cmd ::= SHOW db_name_cond_opt VGROUPS", + /* 178 */ "cmd ::= SHOW MNODES", + /* 179 */ "cmd ::= SHOW MODULES", + /* 180 */ "cmd ::= SHOW QNODES", + /* 181 */ "cmd ::= SHOW FUNCTIONS", + /* 182 */ "cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt", + /* 183 */ "cmd ::= SHOW STREAMS", + /* 184 */ "cmd ::= SHOW ACCOUNTS", + /* 185 */ "cmd ::= SHOW APPS", + /* 186 */ "cmd ::= SHOW CONNECTIONS", + /* 187 */ "cmd ::= SHOW LICENCE", + /* 188 */ "cmd ::= SHOW GRANTS", + /* 189 */ "cmd ::= SHOW CREATE DATABASE db_name", + /* 190 */ "cmd ::= SHOW CREATE TABLE full_table_name", + /* 191 */ "cmd ::= SHOW CREATE STABLE full_table_name", + /* 192 */ "cmd ::= SHOW QUERIES", + /* 193 */ "cmd ::= SHOW SCORES", + /* 194 */ "cmd ::= SHOW TOPICS", + /* 195 */ "cmd ::= SHOW VARIABLES", + /* 196 */ "cmd ::= SHOW BNODES", + /* 197 */ "cmd ::= SHOW SNODES", + /* 198 */ "db_name_cond_opt ::=", + /* 199 */ "db_name_cond_opt ::= db_name NK_DOT", + /* 200 */ "like_pattern_opt ::=", + /* 201 */ "like_pattern_opt ::= LIKE NK_STRING", + /* 202 */ "table_name_cond ::= table_name", + /* 203 */ "from_db_opt ::=", + /* 204 */ "from_db_opt ::= FROM db_name", + /* 205 */ "func_name_list ::= func_name", + /* 206 */ "func_name_list ::= func_name_list NK_COMMA func_name", + /* 207 */ "func_name ::= function_name", + /* 208 */ "cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options", + /* 209 */ "cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP", + /* 210 */ "cmd ::= DROP INDEX exists_opt index_name ON table_name", + /* 211 */ "index_options ::=", + /* 212 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt", + /* 213 */ "index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt", + /* 214 */ "func_list ::= func", + /* 215 */ "func_list ::= func_list NK_COMMA func", + /* 216 */ "func ::= function_name NK_LP expression_list NK_RP", + /* 217 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression", + /* 218 */ "cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name", + /* 219 */ "cmd ::= DROP TOPIC exists_opt topic_name", + /* 220 */ "cmd ::= DESC full_table_name", + /* 221 */ "cmd ::= DESCRIBE full_table_name", + /* 222 */ "cmd ::= RESET QUERY CACHE", + /* 223 */ "cmd ::= EXPLAIN analyze_opt explain_options query_expression", + /* 224 */ "analyze_opt ::=", + /* 225 */ "analyze_opt ::= ANALYZE", + /* 226 */ "explain_options ::=", + /* 227 */ "explain_options ::= explain_options VERBOSE NK_BOOL", + /* 228 */ "explain_options ::= explain_options RATIO NK_FLOAT", + /* 229 */ "cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP", + /* 230 */ "cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt", + /* 231 */ "cmd ::= DROP FUNCTION function_name", + /* 232 */ "agg_func_opt ::=", + /* 233 */ "agg_func_opt ::= AGGREGATE", + /* 234 */ "bufsize_opt ::=", + /* 235 */ "bufsize_opt ::= BUFSIZE NK_INTEGER", + /* 236 */ "cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression", + /* 237 */ "cmd ::= DROP STREAM exists_opt stream_name", + /* 238 */ "into_opt ::=", + /* 239 */ "into_opt ::= INTO full_table_name", + /* 240 */ "stream_options ::=", + /* 241 */ "stream_options ::= stream_options TRIGGER AT_ONCE", + /* 242 */ "stream_options ::= stream_options TRIGGER WINDOW_CLOSE", + /* 243 */ "stream_options ::= stream_options WATERMARK duration_literal", + /* 244 */ "cmd ::= KILL CONNECTION NK_INTEGER", + /* 245 */ "cmd ::= KILL QUERY NK_INTEGER", + /* 246 */ "cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER", + /* 247 */ "cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list", + /* 248 */ "cmd ::= SPLIT VGROUP NK_INTEGER", + /* 249 */ "dnode_list ::= DNODE NK_INTEGER", + /* 250 */ "dnode_list ::= dnode_list DNODE NK_INTEGER", + /* 251 */ "cmd ::= SYNCDB db_name REPLICA", + /* 252 */ "cmd ::= query_expression", + /* 253 */ "literal ::= NK_INTEGER", + /* 254 */ "literal ::= NK_FLOAT", + /* 255 */ "literal ::= NK_STRING", + /* 256 */ "literal ::= NK_BOOL", + /* 257 */ "literal ::= TIMESTAMP NK_STRING", + /* 258 */ "literal ::= duration_literal", + /* 259 */ "literal ::= NULL", + /* 260 */ "literal ::= NK_QUESTION", + /* 261 */ "duration_literal ::= NK_VARIABLE", + /* 262 */ "signed ::= NK_INTEGER", + /* 263 */ "signed ::= NK_PLUS NK_INTEGER", + /* 264 */ "signed ::= NK_MINUS NK_INTEGER", + /* 265 */ "signed ::= NK_FLOAT", + /* 266 */ "signed ::= NK_PLUS NK_FLOAT", + /* 267 */ "signed ::= NK_MINUS NK_FLOAT", + /* 268 */ "signed_literal ::= signed", + /* 269 */ "signed_literal ::= NK_STRING", + /* 270 */ "signed_literal ::= NK_BOOL", + /* 271 */ "signed_literal ::= TIMESTAMP NK_STRING", + /* 272 */ "signed_literal ::= duration_literal", + /* 273 */ "signed_literal ::= NULL", + /* 274 */ "literal_list ::= signed_literal", + /* 275 */ "literal_list ::= literal_list NK_COMMA signed_literal", + /* 276 */ "db_name ::= NK_ID", + /* 277 */ "table_name ::= NK_ID", + /* 278 */ "column_name ::= NK_ID", + /* 279 */ "function_name ::= NK_ID", + /* 280 */ "table_alias ::= NK_ID", + /* 281 */ "column_alias ::= NK_ID", + /* 282 */ "user_name ::= NK_ID", + /* 283 */ "index_name ::= NK_ID", + /* 284 */ "topic_name ::= NK_ID", + /* 285 */ "stream_name ::= NK_ID", + /* 286 */ "expression ::= literal", + /* 287 */ "expression ::= pseudo_column", + /* 288 */ "expression ::= column_reference", + /* 289 */ "expression ::= function_expression", + /* 290 */ "expression ::= subquery", + /* 291 */ "expression ::= NK_LP expression NK_RP", + /* 292 */ "expression ::= NK_PLUS expression", + /* 293 */ "expression ::= NK_MINUS expression", + /* 294 */ "expression ::= expression NK_PLUS expression", + /* 295 */ "expression ::= expression NK_MINUS expression", + /* 296 */ "expression ::= expression NK_STAR expression", + /* 297 */ "expression ::= expression NK_SLASH expression", + /* 298 */ "expression ::= expression NK_REM expression", + /* 299 */ "expression ::= column_reference NK_ARROW NK_STRING", + /* 300 */ "expression_list ::= expression", + /* 301 */ "expression_list ::= expression_list NK_COMMA expression", + /* 302 */ "column_reference ::= column_name", + /* 303 */ "column_reference ::= table_name NK_DOT column_name", + /* 304 */ "pseudo_column ::= ROWTS", + /* 305 */ "pseudo_column ::= TBNAME", + /* 306 */ "pseudo_column ::= QSTARTTS", + /* 307 */ "pseudo_column ::= QENDTS", + /* 308 */ "pseudo_column ::= WSTARTTS", + /* 309 */ "pseudo_column ::= WENDTS", + /* 310 */ "pseudo_column ::= WDURATION", + /* 311 */ "function_expression ::= function_name NK_LP expression_list NK_RP", + /* 312 */ "function_expression ::= star_func NK_LP star_func_para_list NK_RP", + /* 313 */ "function_expression ::= CAST NK_LP expression AS type_name NK_RP", + /* 314 */ "function_expression ::= noarg_func NK_LP NK_RP", + /* 315 */ "noarg_func ::= NOW", + /* 316 */ "noarg_func ::= TODAY", + /* 317 */ "noarg_func ::= TIMEZONE", + /* 318 */ "star_func ::= COUNT", + /* 319 */ "star_func ::= FIRST", + /* 320 */ "star_func ::= LAST", + /* 321 */ "star_func ::= LAST_ROW", + /* 322 */ "star_func_para_list ::= NK_STAR", + /* 323 */ "star_func_para_list ::= other_para_list", + /* 324 */ "other_para_list ::= star_func_para", + /* 325 */ "other_para_list ::= other_para_list NK_COMMA star_func_para", + /* 326 */ "star_func_para ::= expression", + /* 327 */ "star_func_para ::= table_name NK_DOT NK_STAR", + /* 328 */ "predicate ::= expression compare_op expression", + /* 329 */ "predicate ::= expression BETWEEN expression AND expression", + /* 330 */ "predicate ::= expression NOT BETWEEN expression AND expression", + /* 331 */ "predicate ::= expression IS NULL", + /* 332 */ "predicate ::= expression IS NOT NULL", + /* 333 */ "predicate ::= expression in_op in_predicate_value", + /* 334 */ "compare_op ::= NK_LT", + /* 335 */ "compare_op ::= NK_GT", + /* 336 */ "compare_op ::= NK_LE", + /* 337 */ "compare_op ::= NK_GE", + /* 338 */ "compare_op ::= NK_NE", + /* 339 */ "compare_op ::= NK_EQ", + /* 340 */ "compare_op ::= LIKE", + /* 341 */ "compare_op ::= NOT LIKE", + /* 342 */ "compare_op ::= MATCH", + /* 343 */ "compare_op ::= NMATCH", + /* 344 */ "compare_op ::= CONTAINS", + /* 345 */ "in_op ::= IN", + /* 346 */ "in_op ::= NOT IN", + /* 347 */ "in_predicate_value ::= NK_LP expression_list NK_RP", + /* 348 */ "boolean_value_expression ::= boolean_primary", + /* 349 */ "boolean_value_expression ::= NOT boolean_primary", + /* 350 */ "boolean_value_expression ::= boolean_value_expression OR boolean_value_expression", + /* 351 */ "boolean_value_expression ::= boolean_value_expression AND boolean_value_expression", + /* 352 */ "boolean_primary ::= predicate", + /* 353 */ "boolean_primary ::= NK_LP boolean_value_expression NK_RP", + /* 354 */ "common_expression ::= expression", + /* 355 */ "common_expression ::= boolean_value_expression", + /* 356 */ "from_clause ::= FROM table_reference_list", + /* 357 */ "table_reference_list ::= table_reference", + /* 358 */ "table_reference_list ::= table_reference_list NK_COMMA table_reference", + /* 359 */ "table_reference ::= table_primary", + /* 360 */ "table_reference ::= joined_table", + /* 361 */ "table_primary ::= table_name alias_opt", + /* 362 */ "table_primary ::= db_name NK_DOT table_name alias_opt", + /* 363 */ "table_primary ::= subquery alias_opt", + /* 364 */ "table_primary ::= parenthesized_joined_table", + /* 365 */ "alias_opt ::=", + /* 366 */ "alias_opt ::= table_alias", + /* 367 */ "alias_opt ::= AS table_alias", + /* 368 */ "parenthesized_joined_table ::= NK_LP joined_table NK_RP", + /* 369 */ "parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP", + /* 370 */ "joined_table ::= table_reference join_type JOIN table_reference ON search_condition", + /* 371 */ "join_type ::=", + /* 372 */ "join_type ::= INNER", + /* 373 */ "query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt", + /* 374 */ "set_quantifier_opt ::=", + /* 375 */ "set_quantifier_opt ::= DISTINCT", + /* 376 */ "set_quantifier_opt ::= ALL", + /* 377 */ "select_list ::= NK_STAR", + /* 378 */ "select_list ::= select_sublist", + /* 379 */ "select_sublist ::= select_item", + /* 380 */ "select_sublist ::= select_sublist NK_COMMA select_item", + /* 381 */ "select_item ::= common_expression", + /* 382 */ "select_item ::= common_expression column_alias", + /* 383 */ "select_item ::= common_expression AS column_alias", + /* 384 */ "select_item ::= table_name NK_DOT NK_STAR", + /* 385 */ "where_clause_opt ::=", + /* 386 */ "where_clause_opt ::= WHERE search_condition", + /* 387 */ "partition_by_clause_opt ::=", + /* 388 */ "partition_by_clause_opt ::= PARTITION BY expression_list", + /* 389 */ "twindow_clause_opt ::=", + /* 390 */ "twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP", + /* 391 */ "twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP", + /* 392 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt", + /* 393 */ "twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt", + /* 394 */ "sliding_opt ::=", + /* 395 */ "sliding_opt ::= SLIDING NK_LP duration_literal NK_RP", + /* 396 */ "fill_opt ::=", + /* 397 */ "fill_opt ::= FILL NK_LP fill_mode NK_RP", + /* 398 */ "fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP", + /* 399 */ "fill_mode ::= NONE", + /* 400 */ "fill_mode ::= PREV", + /* 401 */ "fill_mode ::= NULL", + /* 402 */ "fill_mode ::= LINEAR", + /* 403 */ "fill_mode ::= NEXT", + /* 404 */ "group_by_clause_opt ::=", + /* 405 */ "group_by_clause_opt ::= GROUP BY group_by_list", + /* 406 */ "group_by_list ::= expression", + /* 407 */ "group_by_list ::= group_by_list NK_COMMA expression", + /* 408 */ "having_clause_opt ::=", + /* 409 */ "having_clause_opt ::= HAVING search_condition", + /* 410 */ "query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt", + /* 411 */ "query_expression_body ::= query_primary", + /* 412 */ "query_expression_body ::= query_expression_body UNION ALL query_expression_body", + /* 413 */ "query_primary ::= query_specification", + /* 414 */ "order_by_clause_opt ::=", + /* 415 */ "order_by_clause_opt ::= ORDER BY sort_specification_list", + /* 416 */ "slimit_clause_opt ::=", + /* 417 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER", + /* 418 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER", + /* 419 */ "slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER", + /* 420 */ "limit_clause_opt ::=", + /* 421 */ "limit_clause_opt ::= LIMIT NK_INTEGER", + /* 422 */ "limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER", + /* 423 */ "limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER", + /* 424 */ "subquery ::= NK_LP query_expression NK_RP", + /* 425 */ "search_condition ::= common_expression", + /* 426 */ "sort_specification_list ::= sort_specification", + /* 427 */ "sort_specification_list ::= sort_specification_list NK_COMMA sort_specification", + /* 428 */ "sort_specification ::= expression ordering_specification_opt null_ordering_opt", + /* 429 */ "ordering_specification_opt ::=", + /* 430 */ "ordering_specification_opt ::= ASC", + /* 431 */ "ordering_specification_opt ::= DESC", + /* 432 */ "null_ordering_opt ::=", + /* 433 */ "null_ordering_opt ::= NULLS FIRST", + /* 434 */ "null_ordering_opt ::= NULLS LAST", }; #endif /* NDEBUG */ @@ -1743,164 +1748,164 @@ static void yy_destructor( */ /********* Begin destructor definitions ***************************************/ /* Default NON-TERMINAL Destructor */ - case 220: /* cmd */ - case 223: /* literal */ - case 230: /* db_options */ - case 232: /* alter_db_options */ - case 237: /* retention */ - case 238: /* full_table_name */ - case 241: /* table_options */ - case 245: /* alter_table_clause */ - case 246: /* alter_table_options */ - case 249: /* create_subtable_clause */ - case 252: /* drop_table_clause */ - case 255: /* column_def */ - case 258: /* col_name */ - case 259: /* db_name_cond_opt */ - case 260: /* like_pattern_opt */ - case 261: /* table_name_cond */ - case 262: /* from_db_opt */ - case 263: /* func_name */ - case 266: /* index_options */ - case 268: /* duration_literal */ - case 269: /* sliding_opt */ - case 270: /* func */ - case 273: /* query_expression */ - case 275: /* explain_options */ - case 279: /* stream_options */ - case 280: /* into_opt */ - case 282: /* signed */ - case 283: /* signed_literal */ - case 286: /* expression */ - case 287: /* pseudo_column */ - case 288: /* column_reference */ - case 289: /* function_expression */ - case 290: /* subquery */ - case 295: /* star_func_para */ - case 296: /* predicate */ - case 299: /* in_predicate_value */ - case 300: /* boolean_value_expression */ - case 301: /* boolean_primary */ - case 302: /* common_expression */ - case 303: /* from_clause */ - case 304: /* table_reference_list */ - case 305: /* table_reference */ - case 306: /* table_primary */ - case 307: /* joined_table */ - case 309: /* parenthesized_joined_table */ - case 311: /* search_condition */ - case 312: /* query_specification */ - case 315: /* where_clause_opt */ - case 317: /* twindow_clause_opt */ - case 319: /* having_clause_opt */ - case 321: /* select_item */ - case 322: /* fill_opt */ - case 325: /* query_expression_body */ - case 327: /* slimit_clause_opt */ - case 328: /* limit_clause_opt */ - case 329: /* query_primary */ - case 331: /* sort_specification */ + case 221: /* cmd */ + case 224: /* literal */ + case 231: /* db_options */ + case 233: /* alter_db_options */ + case 238: /* retention */ + case 239: /* full_table_name */ + case 242: /* table_options */ + case 246: /* alter_table_clause */ + case 247: /* alter_table_options */ + case 250: /* create_subtable_clause */ + case 253: /* drop_table_clause */ + case 256: /* column_def */ + case 259: /* col_name */ + case 260: /* db_name_cond_opt */ + case 261: /* like_pattern_opt */ + case 262: /* table_name_cond */ + case 263: /* from_db_opt */ + case 264: /* func_name */ + case 267: /* index_options */ + case 269: /* duration_literal */ + case 270: /* sliding_opt */ + case 271: /* func */ + case 274: /* query_expression */ + case 276: /* explain_options */ + case 280: /* stream_options */ + case 281: /* into_opt */ + case 283: /* signed */ + case 284: /* signed_literal */ + case 287: /* expression */ + case 288: /* pseudo_column */ + case 289: /* column_reference */ + case 290: /* function_expression */ + case 291: /* subquery */ + case 296: /* star_func_para */ + case 297: /* predicate */ + case 300: /* in_predicate_value */ + case 301: /* boolean_value_expression */ + case 302: /* boolean_primary */ + case 303: /* common_expression */ + case 304: /* from_clause */ + case 305: /* table_reference_list */ + case 306: /* table_reference */ + case 307: /* table_primary */ + case 308: /* joined_table */ + case 310: /* parenthesized_joined_table */ + case 312: /* search_condition */ + case 313: /* query_specification */ + case 316: /* where_clause_opt */ + case 318: /* twindow_clause_opt */ + case 320: /* having_clause_opt */ + case 322: /* select_item */ + case 323: /* fill_opt */ + case 326: /* query_expression_body */ + case 328: /* slimit_clause_opt */ + case 329: /* limit_clause_opt */ + case 330: /* query_primary */ + case 332: /* sort_specification */ { - nodesDestroyNode((yypminor->yy456)); + nodesDestroyNode((yypminor->yy42)); } break; - case 221: /* account_options */ - case 222: /* alter_account_options */ - case 224: /* alter_account_option */ - case 277: /* bufsize_opt */ + case 222: /* account_options */ + case 223: /* alter_account_options */ + case 225: /* alter_account_option */ + case 278: /* bufsize_opt */ { } break; - case 225: /* user_name */ - case 226: /* dnode_endpoint */ - case 227: /* dnode_host_name */ - case 229: /* db_name */ - case 247: /* column_name */ - case 254: /* table_name */ - case 264: /* function_name */ - case 265: /* index_name */ - case 272: /* topic_name */ - case 278: /* stream_name */ - case 284: /* table_alias */ - case 285: /* column_alias */ - case 291: /* star_func */ - case 293: /* noarg_func */ - case 308: /* alias_opt */ + case 226: /* user_name */ + case 227: /* dnode_endpoint */ + case 228: /* dnode_host_name */ + case 230: /* db_name */ + case 248: /* column_name */ + case 255: /* table_name */ + case 265: /* function_name */ + case 266: /* index_name */ + case 273: /* topic_name */ + case 279: /* stream_name */ + case 285: /* table_alias */ + case 286: /* column_alias */ + case 292: /* star_func */ + case 294: /* noarg_func */ + case 309: /* alias_opt */ { } break; - case 228: /* not_exists_opt */ - case 231: /* exists_opt */ - case 274: /* analyze_opt */ - case 276: /* agg_func_opt */ - case 313: /* set_quantifier_opt */ + case 229: /* not_exists_opt */ + case 232: /* exists_opt */ + case 275: /* analyze_opt */ + case 277: /* agg_func_opt */ + case 314: /* set_quantifier_opt */ { } break; - case 233: /* integer_list */ - case 234: /* variable_list */ - case 235: /* retention_list */ - case 239: /* column_def_list */ - case 240: /* tags_def_opt */ - case 242: /* multi_create_clause */ - case 243: /* tags_def */ - case 244: /* multi_drop_clause */ - case 250: /* specific_tags_opt */ - case 251: /* literal_list */ - case 253: /* col_name_list */ - case 256: /* func_name_list */ - case 267: /* func_list */ - case 271: /* expression_list */ - case 281: /* dnode_list */ - case 292: /* star_func_para_list */ - case 294: /* other_para_list */ - case 314: /* select_list */ - case 316: /* partition_by_clause_opt */ - case 318: /* group_by_clause_opt */ - case 320: /* select_sublist */ - case 324: /* group_by_list */ - case 326: /* order_by_clause_opt */ - case 330: /* sort_specification_list */ + case 234: /* integer_list */ + case 235: /* variable_list */ + case 236: /* retention_list */ + case 240: /* column_def_list */ + case 241: /* tags_def_opt */ + case 243: /* multi_create_clause */ + case 244: /* tags_def */ + case 245: /* multi_drop_clause */ + case 251: /* specific_tags_opt */ + case 252: /* literal_list */ + case 254: /* col_name_list */ + case 257: /* func_name_list */ + case 268: /* func_list */ + case 272: /* expression_list */ + case 282: /* dnode_list */ + case 293: /* star_func_para_list */ + case 295: /* other_para_list */ + case 315: /* select_list */ + case 317: /* partition_by_clause_opt */ + case 319: /* group_by_clause_opt */ + case 321: /* select_sublist */ + case 325: /* group_by_list */ + case 327: /* order_by_clause_opt */ + case 331: /* sort_specification_list */ { - nodesDestroyList((yypminor->yy632)); + nodesDestroyList((yypminor->yy244)); } break; - case 236: /* alter_db_option */ - case 257: /* alter_table_option */ + case 237: /* alter_db_option */ + case 258: /* alter_table_option */ { } break; - case 248: /* type_name */ + case 249: /* type_name */ { } break; - case 297: /* compare_op */ - case 298: /* in_op */ + case 298: /* compare_op */ + case 299: /* in_op */ { } break; - case 310: /* join_type */ + case 311: /* join_type */ { } break; - case 323: /* fill_mode */ + case 324: /* fill_mode */ { } break; - case 332: /* ordering_specification_opt */ + case 333: /* ordering_specification_opt */ { } break; - case 333: /* null_ordering_opt */ + case 334: /* null_ordering_opt */ { } @@ -2199,439 +2204,441 @@ static const struct { YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ signed char nrhs; /* Negative of the number of RHS symbols in the rule */ } yyRuleInfo[] = { - { 220, -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ - { 220, -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ - { 221, 0 }, /* (2) account_options ::= */ - { 221, -3 }, /* (3) account_options ::= account_options PPS literal */ - { 221, -3 }, /* (4) account_options ::= account_options TSERIES literal */ - { 221, -3 }, /* (5) account_options ::= account_options STORAGE literal */ - { 221, -3 }, /* (6) account_options ::= account_options STREAMS literal */ - { 221, -3 }, /* (7) account_options ::= account_options QTIME literal */ - { 221, -3 }, /* (8) account_options ::= account_options DBS literal */ - { 221, -3 }, /* (9) account_options ::= account_options USERS literal */ - { 221, -3 }, /* (10) account_options ::= account_options CONNS literal */ - { 221, -3 }, /* (11) account_options ::= account_options STATE literal */ - { 222, -1 }, /* (12) alter_account_options ::= alter_account_option */ - { 222, -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */ - { 224, -2 }, /* (14) alter_account_option ::= PASS literal */ - { 224, -2 }, /* (15) alter_account_option ::= PPS literal */ - { 224, -2 }, /* (16) alter_account_option ::= TSERIES literal */ - { 224, -2 }, /* (17) alter_account_option ::= STORAGE literal */ - { 224, -2 }, /* (18) alter_account_option ::= STREAMS literal */ - { 224, -2 }, /* (19) alter_account_option ::= QTIME literal */ - { 224, -2 }, /* (20) alter_account_option ::= DBS literal */ - { 224, -2 }, /* (21) alter_account_option ::= USERS literal */ - { 224, -2 }, /* (22) alter_account_option ::= CONNS literal */ - { 224, -2 }, /* (23) alter_account_option ::= STATE literal */ - { 220, -5 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING */ - { 220, -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */ - { 220, -5 }, /* (26) cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */ - { 220, -3 }, /* (27) cmd ::= DROP USER user_name */ - { 220, -3 }, /* (28) cmd ::= CREATE DNODE dnode_endpoint */ - { 220, -5 }, /* (29) cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */ - { 220, -3 }, /* (30) cmd ::= DROP DNODE NK_INTEGER */ - { 220, -3 }, /* (31) cmd ::= DROP DNODE dnode_endpoint */ - { 220, -4 }, /* (32) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ - { 220, -5 }, /* (33) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ - { 220, -4 }, /* (34) cmd ::= ALTER ALL DNODES NK_STRING */ - { 220, -5 }, /* (35) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ - { 226, -1 }, /* (36) dnode_endpoint ::= NK_STRING */ - { 227, -1 }, /* (37) dnode_host_name ::= NK_ID */ - { 227, -1 }, /* (38) dnode_host_name ::= NK_IPTOKEN */ - { 220, -3 }, /* (39) cmd ::= ALTER LOCAL NK_STRING */ - { 220, -4 }, /* (40) cmd ::= ALTER LOCAL NK_STRING NK_STRING */ - { 220, -5 }, /* (41) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (42) cmd ::= DROP QNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (43) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (44) cmd ::= DROP BNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (45) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (46) cmd ::= DROP SNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (47) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (48) cmd ::= DROP MNODE ON DNODE NK_INTEGER */ - { 220, -5 }, /* (49) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ - { 220, -4 }, /* (50) cmd ::= DROP DATABASE exists_opt db_name */ - { 220, -2 }, /* (51) cmd ::= USE db_name */ - { 220, -4 }, /* (52) cmd ::= ALTER DATABASE db_name alter_db_options */ - { 228, -3 }, /* (53) not_exists_opt ::= IF NOT EXISTS */ - { 228, 0 }, /* (54) not_exists_opt ::= */ - { 231, -2 }, /* (55) exists_opt ::= IF EXISTS */ - { 231, 0 }, /* (56) exists_opt ::= */ - { 230, 0 }, /* (57) db_options ::= */ - { 230, -3 }, /* (58) db_options ::= db_options BLOCKS NK_INTEGER */ - { 230, -3 }, /* (59) db_options ::= db_options CACHE NK_INTEGER */ - { 230, -3 }, /* (60) db_options ::= db_options CACHELAST NK_INTEGER */ - { 230, -3 }, /* (61) db_options ::= db_options COMP NK_INTEGER */ - { 230, -3 }, /* (62) db_options ::= db_options DAYS NK_INTEGER */ - { 230, -3 }, /* (63) db_options ::= db_options DAYS NK_VARIABLE */ - { 230, -3 }, /* (64) db_options ::= db_options FSYNC NK_INTEGER */ - { 230, -3 }, /* (65) db_options ::= db_options MAXROWS NK_INTEGER */ - { 230, -3 }, /* (66) db_options ::= db_options MINROWS NK_INTEGER */ - { 230, -3 }, /* (67) db_options ::= db_options KEEP integer_list */ - { 230, -3 }, /* (68) db_options ::= db_options KEEP variable_list */ - { 230, -3 }, /* (69) db_options ::= db_options PRECISION NK_STRING */ - { 230, -3 }, /* (70) db_options ::= db_options QUORUM NK_INTEGER */ - { 230, -3 }, /* (71) db_options ::= db_options REPLICA NK_INTEGER */ - { 230, -3 }, /* (72) db_options ::= db_options TTL NK_INTEGER */ - { 230, -3 }, /* (73) db_options ::= db_options WAL NK_INTEGER */ - { 230, -3 }, /* (74) db_options ::= db_options VGROUPS NK_INTEGER */ - { 230, -3 }, /* (75) db_options ::= db_options SINGLE_STABLE NK_INTEGER */ - { 230, -3 }, /* (76) db_options ::= db_options STREAM_MODE NK_INTEGER */ - { 230, -3 }, /* (77) db_options ::= db_options RETENTIONS retention_list */ - { 232, -1 }, /* (78) alter_db_options ::= alter_db_option */ - { 232, -2 }, /* (79) alter_db_options ::= alter_db_options alter_db_option */ - { 236, -2 }, /* (80) alter_db_option ::= BLOCKS NK_INTEGER */ - { 236, -2 }, /* (81) alter_db_option ::= FSYNC NK_INTEGER */ - { 236, -2 }, /* (82) alter_db_option ::= KEEP integer_list */ - { 236, -2 }, /* (83) alter_db_option ::= KEEP variable_list */ - { 236, -2 }, /* (84) alter_db_option ::= WAL NK_INTEGER */ - { 236, -2 }, /* (85) alter_db_option ::= QUORUM NK_INTEGER */ - { 236, -2 }, /* (86) alter_db_option ::= CACHELAST NK_INTEGER */ - { 236, -2 }, /* (87) alter_db_option ::= REPLICA NK_INTEGER */ - { 233, -1 }, /* (88) integer_list ::= NK_INTEGER */ - { 233, -3 }, /* (89) integer_list ::= integer_list NK_COMMA NK_INTEGER */ - { 234, -1 }, /* (90) variable_list ::= NK_VARIABLE */ - { 234, -3 }, /* (91) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ - { 235, -1 }, /* (92) retention_list ::= retention */ - { 235, -3 }, /* (93) retention_list ::= retention_list NK_COMMA retention */ - { 237, -3 }, /* (94) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ - { 220, -9 }, /* (95) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ - { 220, -3 }, /* (96) cmd ::= CREATE TABLE multi_create_clause */ - { 220, -9 }, /* (97) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ - { 220, -3 }, /* (98) cmd ::= DROP TABLE multi_drop_clause */ - { 220, -4 }, /* (99) cmd ::= DROP STABLE exists_opt full_table_name */ - { 220, -3 }, /* (100) cmd ::= ALTER TABLE alter_table_clause */ - { 220, -3 }, /* (101) cmd ::= ALTER STABLE alter_table_clause */ - { 245, -2 }, /* (102) alter_table_clause ::= full_table_name alter_table_options */ - { 245, -5 }, /* (103) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ - { 245, -4 }, /* (104) alter_table_clause ::= full_table_name DROP COLUMN column_name */ - { 245, -5 }, /* (105) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ - { 245, -5 }, /* (106) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ - { 245, -5 }, /* (107) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ - { 245, -4 }, /* (108) alter_table_clause ::= full_table_name DROP TAG column_name */ - { 245, -5 }, /* (109) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ - { 245, -5 }, /* (110) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ - { 245, -6 }, /* (111) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ - { 242, -1 }, /* (112) multi_create_clause ::= create_subtable_clause */ - { 242, -2 }, /* (113) multi_create_clause ::= multi_create_clause create_subtable_clause */ - { 249, -9 }, /* (114) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ - { 244, -1 }, /* (115) multi_drop_clause ::= drop_table_clause */ - { 244, -2 }, /* (116) multi_drop_clause ::= multi_drop_clause drop_table_clause */ - { 252, -2 }, /* (117) drop_table_clause ::= exists_opt full_table_name */ - { 250, 0 }, /* (118) specific_tags_opt ::= */ - { 250, -3 }, /* (119) specific_tags_opt ::= NK_LP col_name_list NK_RP */ - { 238, -1 }, /* (120) full_table_name ::= table_name */ - { 238, -3 }, /* (121) full_table_name ::= db_name NK_DOT table_name */ - { 239, -1 }, /* (122) column_def_list ::= column_def */ - { 239, -3 }, /* (123) column_def_list ::= column_def_list NK_COMMA column_def */ - { 255, -2 }, /* (124) column_def ::= column_name type_name */ - { 255, -4 }, /* (125) column_def ::= column_name type_name COMMENT NK_STRING */ - { 248, -1 }, /* (126) type_name ::= BOOL */ - { 248, -1 }, /* (127) type_name ::= TINYINT */ - { 248, -1 }, /* (128) type_name ::= SMALLINT */ - { 248, -1 }, /* (129) type_name ::= INT */ - { 248, -1 }, /* (130) type_name ::= INTEGER */ - { 248, -1 }, /* (131) type_name ::= BIGINT */ - { 248, -1 }, /* (132) type_name ::= FLOAT */ - { 248, -1 }, /* (133) type_name ::= DOUBLE */ - { 248, -4 }, /* (134) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ - { 248, -1 }, /* (135) type_name ::= TIMESTAMP */ - { 248, -4 }, /* (136) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ - { 248, -2 }, /* (137) type_name ::= TINYINT UNSIGNED */ - { 248, -2 }, /* (138) type_name ::= SMALLINT UNSIGNED */ - { 248, -2 }, /* (139) type_name ::= INT UNSIGNED */ - { 248, -2 }, /* (140) type_name ::= BIGINT UNSIGNED */ - { 248, -1 }, /* (141) type_name ::= JSON */ - { 248, -4 }, /* (142) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ - { 248, -1 }, /* (143) type_name ::= MEDIUMBLOB */ - { 248, -1 }, /* (144) type_name ::= BLOB */ - { 248, -4 }, /* (145) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ - { 248, -1 }, /* (146) type_name ::= DECIMAL */ - { 248, -4 }, /* (147) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ - { 248, -6 }, /* (148) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ - { 240, 0 }, /* (149) tags_def_opt ::= */ - { 240, -1 }, /* (150) tags_def_opt ::= tags_def */ - { 243, -4 }, /* (151) tags_def ::= TAGS NK_LP column_def_list NK_RP */ - { 241, 0 }, /* (152) table_options ::= */ - { 241, -3 }, /* (153) table_options ::= table_options COMMENT NK_STRING */ - { 241, -3 }, /* (154) table_options ::= table_options KEEP integer_list */ - { 241, -3 }, /* (155) table_options ::= table_options KEEP variable_list */ - { 241, -3 }, /* (156) table_options ::= table_options TTL NK_INTEGER */ - { 241, -5 }, /* (157) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ - { 241, -5 }, /* (158) table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ - { 241, -3 }, /* (159) table_options ::= table_options FILE_FACTOR NK_FLOAT */ - { 241, -3 }, /* (160) table_options ::= table_options DELAY NK_INTEGER */ - { 246, -1 }, /* (161) alter_table_options ::= alter_table_option */ - { 246, -2 }, /* (162) alter_table_options ::= alter_table_options alter_table_option */ - { 257, -2 }, /* (163) alter_table_option ::= COMMENT NK_STRING */ - { 257, -2 }, /* (164) alter_table_option ::= KEEP integer_list */ - { 257, -2 }, /* (165) alter_table_option ::= KEEP variable_list */ - { 257, -2 }, /* (166) alter_table_option ::= TTL NK_INTEGER */ - { 253, -1 }, /* (167) col_name_list ::= col_name */ - { 253, -3 }, /* (168) col_name_list ::= col_name_list NK_COMMA col_name */ - { 258, -1 }, /* (169) col_name ::= column_name */ - { 220, -2 }, /* (170) cmd ::= SHOW DNODES */ - { 220, -2 }, /* (171) cmd ::= SHOW USERS */ - { 220, -2 }, /* (172) cmd ::= SHOW DATABASES */ - { 220, -4 }, /* (173) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ - { 220, -4 }, /* (174) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ - { 220, -3 }, /* (175) cmd ::= SHOW db_name_cond_opt VGROUPS */ - { 220, -2 }, /* (176) cmd ::= SHOW MNODES */ - { 220, -2 }, /* (177) cmd ::= SHOW MODULES */ - { 220, -2 }, /* (178) cmd ::= SHOW QNODES */ - { 220, -2 }, /* (179) cmd ::= SHOW FUNCTIONS */ - { 220, -5 }, /* (180) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ - { 220, -2 }, /* (181) cmd ::= SHOW STREAMS */ - { 220, -2 }, /* (182) cmd ::= SHOW ACCOUNTS */ - { 220, -2 }, /* (183) cmd ::= SHOW APPS */ - { 220, -2 }, /* (184) cmd ::= SHOW CONNECTIONS */ - { 220, -2 }, /* (185) cmd ::= SHOW LICENCE */ - { 220, -2 }, /* (186) cmd ::= SHOW GRANTS */ - { 220, -4 }, /* (187) cmd ::= SHOW CREATE DATABASE db_name */ - { 220, -4 }, /* (188) cmd ::= SHOW CREATE TABLE full_table_name */ - { 220, -4 }, /* (189) cmd ::= SHOW CREATE STABLE full_table_name */ - { 220, -2 }, /* (190) cmd ::= SHOW QUERIES */ - { 220, -2 }, /* (191) cmd ::= SHOW SCORES */ - { 220, -2 }, /* (192) cmd ::= SHOW TOPICS */ - { 220, -2 }, /* (193) cmd ::= SHOW VARIABLES */ - { 220, -2 }, /* (194) cmd ::= SHOW BNODES */ - { 220, -2 }, /* (195) cmd ::= SHOW SNODES */ - { 259, 0 }, /* (196) db_name_cond_opt ::= */ - { 259, -2 }, /* (197) db_name_cond_opt ::= db_name NK_DOT */ - { 260, 0 }, /* (198) like_pattern_opt ::= */ - { 260, -2 }, /* (199) like_pattern_opt ::= LIKE NK_STRING */ - { 261, -1 }, /* (200) table_name_cond ::= table_name */ - { 262, 0 }, /* (201) from_db_opt ::= */ - { 262, -2 }, /* (202) from_db_opt ::= FROM db_name */ - { 256, -1 }, /* (203) func_name_list ::= func_name */ - { 256, -3 }, /* (204) func_name_list ::= func_name_list NK_COMMA col_name */ - { 263, -1 }, /* (205) func_name ::= function_name */ - { 220, -8 }, /* (206) cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ - { 220, -10 }, /* (207) cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ - { 220, -6 }, /* (208) cmd ::= DROP INDEX exists_opt index_name ON table_name */ - { 266, 0 }, /* (209) index_options ::= */ - { 266, -9 }, /* (210) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ - { 266, -11 }, /* (211) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ - { 267, -1 }, /* (212) func_list ::= func */ - { 267, -3 }, /* (213) func_list ::= func_list NK_COMMA func */ - { 270, -4 }, /* (214) func ::= function_name NK_LP expression_list NK_RP */ - { 220, -6 }, /* (215) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ - { 220, -6 }, /* (216) cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ - { 220, -4 }, /* (217) cmd ::= DROP TOPIC exists_opt topic_name */ - { 220, -2 }, /* (218) cmd ::= DESC full_table_name */ - { 220, -2 }, /* (219) cmd ::= DESCRIBE full_table_name */ - { 220, -3 }, /* (220) cmd ::= RESET QUERY CACHE */ - { 220, -4 }, /* (221) cmd ::= EXPLAIN analyze_opt explain_options query_expression */ - { 274, 0 }, /* (222) analyze_opt ::= */ - { 274, -1 }, /* (223) analyze_opt ::= ANALYZE */ - { 275, 0 }, /* (224) explain_options ::= */ - { 275, -3 }, /* (225) explain_options ::= explain_options VERBOSE NK_BOOL */ - { 275, -3 }, /* (226) explain_options ::= explain_options RATIO NK_FLOAT */ - { 220, -6 }, /* (227) cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ - { 220, -9 }, /* (228) cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ - { 220, -3 }, /* (229) cmd ::= DROP FUNCTION function_name */ - { 276, 0 }, /* (230) agg_func_opt ::= */ - { 276, -1 }, /* (231) agg_func_opt ::= AGGREGATE */ - { 277, 0 }, /* (232) bufsize_opt ::= */ - { 277, -2 }, /* (233) bufsize_opt ::= BUFSIZE NK_INTEGER */ - { 220, -8 }, /* (234) cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression */ - { 220, -4 }, /* (235) cmd ::= DROP STREAM exists_opt stream_name */ - { 280, 0 }, /* (236) into_opt ::= */ - { 280, -2 }, /* (237) into_opt ::= INTO full_table_name */ - { 279, 0 }, /* (238) stream_options ::= */ - { 279, -3 }, /* (239) stream_options ::= stream_options TRIGGER AT_ONCE */ - { 279, -3 }, /* (240) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ - { 279, -3 }, /* (241) stream_options ::= stream_options WATERMARK duration_literal */ - { 220, -3 }, /* (242) cmd ::= KILL CONNECTION NK_INTEGER */ - { 220, -3 }, /* (243) cmd ::= KILL QUERY NK_INTEGER */ - { 220, -4 }, /* (244) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ - { 220, -4 }, /* (245) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ - { 220, -3 }, /* (246) cmd ::= SPLIT VGROUP NK_INTEGER */ - { 281, -2 }, /* (247) dnode_list ::= DNODE NK_INTEGER */ - { 281, -3 }, /* (248) dnode_list ::= dnode_list DNODE NK_INTEGER */ - { 220, -3 }, /* (249) cmd ::= SYNCDB db_name REPLICA */ - { 220, -1 }, /* (250) cmd ::= query_expression */ - { 223, -1 }, /* (251) literal ::= NK_INTEGER */ - { 223, -1 }, /* (252) literal ::= NK_FLOAT */ - { 223, -1 }, /* (253) literal ::= NK_STRING */ - { 223, -1 }, /* (254) literal ::= NK_BOOL */ - { 223, -2 }, /* (255) literal ::= TIMESTAMP NK_STRING */ - { 223, -1 }, /* (256) literal ::= duration_literal */ - { 223, -1 }, /* (257) literal ::= NULL */ - { 223, -1 }, /* (258) literal ::= NK_QUESTION */ - { 268, -1 }, /* (259) duration_literal ::= NK_VARIABLE */ - { 282, -1 }, /* (260) signed ::= NK_INTEGER */ - { 282, -2 }, /* (261) signed ::= NK_PLUS NK_INTEGER */ - { 282, -2 }, /* (262) signed ::= NK_MINUS NK_INTEGER */ - { 282, -1 }, /* (263) signed ::= NK_FLOAT */ - { 282, -2 }, /* (264) signed ::= NK_PLUS NK_FLOAT */ - { 282, -2 }, /* (265) signed ::= NK_MINUS NK_FLOAT */ - { 283, -1 }, /* (266) signed_literal ::= signed */ - { 283, -1 }, /* (267) signed_literal ::= NK_STRING */ - { 283, -1 }, /* (268) signed_literal ::= NK_BOOL */ - { 283, -2 }, /* (269) signed_literal ::= TIMESTAMP NK_STRING */ - { 283, -1 }, /* (270) signed_literal ::= duration_literal */ - { 283, -1 }, /* (271) signed_literal ::= NULL */ - { 251, -1 }, /* (272) literal_list ::= signed_literal */ - { 251, -3 }, /* (273) literal_list ::= literal_list NK_COMMA signed_literal */ - { 229, -1 }, /* (274) db_name ::= NK_ID */ - { 254, -1 }, /* (275) table_name ::= NK_ID */ - { 247, -1 }, /* (276) column_name ::= NK_ID */ - { 264, -1 }, /* (277) function_name ::= NK_ID */ - { 284, -1 }, /* (278) table_alias ::= NK_ID */ - { 285, -1 }, /* (279) column_alias ::= NK_ID */ - { 225, -1 }, /* (280) user_name ::= NK_ID */ - { 265, -1 }, /* (281) index_name ::= NK_ID */ - { 272, -1 }, /* (282) topic_name ::= NK_ID */ - { 278, -1 }, /* (283) stream_name ::= NK_ID */ - { 286, -1 }, /* (284) expression ::= literal */ - { 286, -1 }, /* (285) expression ::= pseudo_column */ - { 286, -1 }, /* (286) expression ::= column_reference */ - { 286, -1 }, /* (287) expression ::= function_expression */ - { 286, -1 }, /* (288) expression ::= subquery */ - { 286, -3 }, /* (289) expression ::= NK_LP expression NK_RP */ - { 286, -2 }, /* (290) expression ::= NK_PLUS expression */ - { 286, -2 }, /* (291) expression ::= NK_MINUS expression */ - { 286, -3 }, /* (292) expression ::= expression NK_PLUS expression */ - { 286, -3 }, /* (293) expression ::= expression NK_MINUS expression */ - { 286, -3 }, /* (294) expression ::= expression NK_STAR expression */ - { 286, -3 }, /* (295) expression ::= expression NK_SLASH expression */ - { 286, -3 }, /* (296) expression ::= expression NK_REM expression */ - { 286, -3 }, /* (297) expression ::= column_reference NK_ARROW NK_STRING */ - { 271, -1 }, /* (298) expression_list ::= expression */ - { 271, -3 }, /* (299) expression_list ::= expression_list NK_COMMA expression */ - { 288, -1 }, /* (300) column_reference ::= column_name */ - { 288, -3 }, /* (301) column_reference ::= table_name NK_DOT column_name */ - { 287, -1 }, /* (302) pseudo_column ::= ROWTS */ - { 287, -1 }, /* (303) pseudo_column ::= TBNAME */ - { 287, -1 }, /* (304) pseudo_column ::= QSTARTTS */ - { 287, -1 }, /* (305) pseudo_column ::= QENDTS */ - { 287, -1 }, /* (306) pseudo_column ::= WSTARTTS */ - { 287, -1 }, /* (307) pseudo_column ::= WENDTS */ - { 287, -1 }, /* (308) pseudo_column ::= WDURATION */ - { 289, -4 }, /* (309) function_expression ::= function_name NK_LP expression_list NK_RP */ - { 289, -4 }, /* (310) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ - { 289, -6 }, /* (311) function_expression ::= CAST NK_LP expression AS type_name NK_RP */ - { 289, -3 }, /* (312) function_expression ::= noarg_func NK_LP NK_RP */ - { 293, -1 }, /* (313) noarg_func ::= NOW */ - { 293, -1 }, /* (314) noarg_func ::= TODAY */ - { 293, -1 }, /* (315) noarg_func ::= TIMEZONE */ - { 291, -1 }, /* (316) star_func ::= COUNT */ - { 291, -1 }, /* (317) star_func ::= FIRST */ - { 291, -1 }, /* (318) star_func ::= LAST */ - { 291, -1 }, /* (319) star_func ::= LAST_ROW */ - { 292, -1 }, /* (320) star_func_para_list ::= NK_STAR */ - { 292, -1 }, /* (321) star_func_para_list ::= other_para_list */ - { 294, -1 }, /* (322) other_para_list ::= star_func_para */ - { 294, -3 }, /* (323) other_para_list ::= other_para_list NK_COMMA star_func_para */ - { 295, -1 }, /* (324) star_func_para ::= expression */ - { 295, -3 }, /* (325) star_func_para ::= table_name NK_DOT NK_STAR */ - { 296, -3 }, /* (326) predicate ::= expression compare_op expression */ - { 296, -5 }, /* (327) predicate ::= expression BETWEEN expression AND expression */ - { 296, -6 }, /* (328) predicate ::= expression NOT BETWEEN expression AND expression */ - { 296, -3 }, /* (329) predicate ::= expression IS NULL */ - { 296, -4 }, /* (330) predicate ::= expression IS NOT NULL */ - { 296, -3 }, /* (331) predicate ::= expression in_op in_predicate_value */ - { 297, -1 }, /* (332) compare_op ::= NK_LT */ - { 297, -1 }, /* (333) compare_op ::= NK_GT */ - { 297, -1 }, /* (334) compare_op ::= NK_LE */ - { 297, -1 }, /* (335) compare_op ::= NK_GE */ - { 297, -1 }, /* (336) compare_op ::= NK_NE */ - { 297, -1 }, /* (337) compare_op ::= NK_EQ */ - { 297, -1 }, /* (338) compare_op ::= LIKE */ - { 297, -2 }, /* (339) compare_op ::= NOT LIKE */ - { 297, -1 }, /* (340) compare_op ::= MATCH */ - { 297, -1 }, /* (341) compare_op ::= NMATCH */ - { 297, -1 }, /* (342) compare_op ::= CONTAINS */ - { 298, -1 }, /* (343) in_op ::= IN */ - { 298, -2 }, /* (344) in_op ::= NOT IN */ - { 299, -3 }, /* (345) in_predicate_value ::= NK_LP expression_list NK_RP */ - { 300, -1 }, /* (346) boolean_value_expression ::= boolean_primary */ - { 300, -2 }, /* (347) boolean_value_expression ::= NOT boolean_primary */ - { 300, -3 }, /* (348) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ - { 300, -3 }, /* (349) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ - { 301, -1 }, /* (350) boolean_primary ::= predicate */ - { 301, -3 }, /* (351) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ - { 302, -1 }, /* (352) common_expression ::= expression */ - { 302, -1 }, /* (353) common_expression ::= boolean_value_expression */ - { 303, -2 }, /* (354) from_clause ::= FROM table_reference_list */ - { 304, -1 }, /* (355) table_reference_list ::= table_reference */ - { 304, -3 }, /* (356) table_reference_list ::= table_reference_list NK_COMMA table_reference */ - { 305, -1 }, /* (357) table_reference ::= table_primary */ - { 305, -1 }, /* (358) table_reference ::= joined_table */ - { 306, -2 }, /* (359) table_primary ::= table_name alias_opt */ - { 306, -4 }, /* (360) table_primary ::= db_name NK_DOT table_name alias_opt */ - { 306, -2 }, /* (361) table_primary ::= subquery alias_opt */ - { 306, -1 }, /* (362) table_primary ::= parenthesized_joined_table */ - { 308, 0 }, /* (363) alias_opt ::= */ - { 308, -1 }, /* (364) alias_opt ::= table_alias */ - { 308, -2 }, /* (365) alias_opt ::= AS table_alias */ - { 309, -3 }, /* (366) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ - { 309, -3 }, /* (367) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ - { 307, -6 }, /* (368) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ - { 310, 0 }, /* (369) join_type ::= */ - { 310, -1 }, /* (370) join_type ::= INNER */ - { 312, -9 }, /* (371) query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ - { 313, 0 }, /* (372) set_quantifier_opt ::= */ - { 313, -1 }, /* (373) set_quantifier_opt ::= DISTINCT */ - { 313, -1 }, /* (374) set_quantifier_opt ::= ALL */ - { 314, -1 }, /* (375) select_list ::= NK_STAR */ - { 314, -1 }, /* (376) select_list ::= select_sublist */ - { 320, -1 }, /* (377) select_sublist ::= select_item */ - { 320, -3 }, /* (378) select_sublist ::= select_sublist NK_COMMA select_item */ - { 321, -1 }, /* (379) select_item ::= common_expression */ - { 321, -2 }, /* (380) select_item ::= common_expression column_alias */ - { 321, -3 }, /* (381) select_item ::= common_expression AS column_alias */ - { 321, -3 }, /* (382) select_item ::= table_name NK_DOT NK_STAR */ - { 315, 0 }, /* (383) where_clause_opt ::= */ - { 315, -2 }, /* (384) where_clause_opt ::= WHERE search_condition */ - { 316, 0 }, /* (385) partition_by_clause_opt ::= */ - { 316, -3 }, /* (386) partition_by_clause_opt ::= PARTITION BY expression_list */ - { 317, 0 }, /* (387) twindow_clause_opt ::= */ - { 317, -6 }, /* (388) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ - { 317, -4 }, /* (389) twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ - { 317, -6 }, /* (390) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ - { 317, -8 }, /* (391) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ - { 269, 0 }, /* (392) sliding_opt ::= */ - { 269, -4 }, /* (393) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ - { 322, 0 }, /* (394) fill_opt ::= */ - { 322, -4 }, /* (395) fill_opt ::= FILL NK_LP fill_mode NK_RP */ - { 322, -6 }, /* (396) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ - { 323, -1 }, /* (397) fill_mode ::= NONE */ - { 323, -1 }, /* (398) fill_mode ::= PREV */ - { 323, -1 }, /* (399) fill_mode ::= NULL */ - { 323, -1 }, /* (400) fill_mode ::= LINEAR */ - { 323, -1 }, /* (401) fill_mode ::= NEXT */ - { 318, 0 }, /* (402) group_by_clause_opt ::= */ - { 318, -3 }, /* (403) group_by_clause_opt ::= GROUP BY group_by_list */ - { 324, -1 }, /* (404) group_by_list ::= expression */ - { 324, -3 }, /* (405) group_by_list ::= group_by_list NK_COMMA expression */ - { 319, 0 }, /* (406) having_clause_opt ::= */ - { 319, -2 }, /* (407) having_clause_opt ::= HAVING search_condition */ - { 273, -4 }, /* (408) query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ - { 325, -1 }, /* (409) query_expression_body ::= query_primary */ - { 325, -4 }, /* (410) query_expression_body ::= query_expression_body UNION ALL query_expression_body */ - { 329, -1 }, /* (411) query_primary ::= query_specification */ - { 326, 0 }, /* (412) order_by_clause_opt ::= */ - { 326, -3 }, /* (413) order_by_clause_opt ::= ORDER BY sort_specification_list */ - { 327, 0 }, /* (414) slimit_clause_opt ::= */ - { 327, -2 }, /* (415) slimit_clause_opt ::= SLIMIT NK_INTEGER */ - { 327, -4 }, /* (416) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ - { 327, -4 }, /* (417) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - { 328, 0 }, /* (418) limit_clause_opt ::= */ - { 328, -2 }, /* (419) limit_clause_opt ::= LIMIT NK_INTEGER */ - { 328, -4 }, /* (420) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ - { 328, -4 }, /* (421) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - { 290, -3 }, /* (422) subquery ::= NK_LP query_expression NK_RP */ - { 311, -1 }, /* (423) search_condition ::= common_expression */ - { 330, -1 }, /* (424) sort_specification_list ::= sort_specification */ - { 330, -3 }, /* (425) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ - { 331, -3 }, /* (426) sort_specification ::= expression ordering_specification_opt null_ordering_opt */ - { 332, 0 }, /* (427) ordering_specification_opt ::= */ - { 332, -1 }, /* (428) ordering_specification_opt ::= ASC */ - { 332, -1 }, /* (429) ordering_specification_opt ::= DESC */ - { 333, 0 }, /* (430) null_ordering_opt ::= */ - { 333, -2 }, /* (431) null_ordering_opt ::= NULLS FIRST */ - { 333, -2 }, /* (432) null_ordering_opt ::= NULLS LAST */ + { 221, -6 }, /* (0) cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ + { 221, -4 }, /* (1) cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ + { 222, 0 }, /* (2) account_options ::= */ + { 222, -3 }, /* (3) account_options ::= account_options PPS literal */ + { 222, -3 }, /* (4) account_options ::= account_options TSERIES literal */ + { 222, -3 }, /* (5) account_options ::= account_options STORAGE literal */ + { 222, -3 }, /* (6) account_options ::= account_options STREAMS literal */ + { 222, -3 }, /* (7) account_options ::= account_options QTIME literal */ + { 222, -3 }, /* (8) account_options ::= account_options DBS literal */ + { 222, -3 }, /* (9) account_options ::= account_options USERS literal */ + { 222, -3 }, /* (10) account_options ::= account_options CONNS literal */ + { 222, -3 }, /* (11) account_options ::= account_options STATE literal */ + { 223, -1 }, /* (12) alter_account_options ::= alter_account_option */ + { 223, -2 }, /* (13) alter_account_options ::= alter_account_options alter_account_option */ + { 225, -2 }, /* (14) alter_account_option ::= PASS literal */ + { 225, -2 }, /* (15) alter_account_option ::= PPS literal */ + { 225, -2 }, /* (16) alter_account_option ::= TSERIES literal */ + { 225, -2 }, /* (17) alter_account_option ::= STORAGE literal */ + { 225, -2 }, /* (18) alter_account_option ::= STREAMS literal */ + { 225, -2 }, /* (19) alter_account_option ::= QTIME literal */ + { 225, -2 }, /* (20) alter_account_option ::= DBS literal */ + { 225, -2 }, /* (21) alter_account_option ::= USERS literal */ + { 225, -2 }, /* (22) alter_account_option ::= CONNS literal */ + { 225, -2 }, /* (23) alter_account_option ::= STATE literal */ + { 221, -5 }, /* (24) cmd ::= CREATE USER user_name PASS NK_STRING */ + { 221, -5 }, /* (25) cmd ::= ALTER USER user_name PASS NK_STRING */ + { 221, -5 }, /* (26) cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */ + { 221, -3 }, /* (27) cmd ::= DROP USER user_name */ + { 221, -3 }, /* (28) cmd ::= CREATE DNODE dnode_endpoint */ + { 221, -5 }, /* (29) cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */ + { 221, -3 }, /* (30) cmd ::= DROP DNODE NK_INTEGER */ + { 221, -3 }, /* (31) cmd ::= DROP DNODE dnode_endpoint */ + { 221, -4 }, /* (32) cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ + { 221, -5 }, /* (33) cmd ::= ALTER DNODE NK_INTEGER NK_STRING NK_STRING */ + { 221, -4 }, /* (34) cmd ::= ALTER ALL DNODES NK_STRING */ + { 221, -5 }, /* (35) cmd ::= ALTER ALL DNODES NK_STRING NK_STRING */ + { 227, -1 }, /* (36) dnode_endpoint ::= NK_STRING */ + { 228, -1 }, /* (37) dnode_host_name ::= NK_ID */ + { 228, -1 }, /* (38) dnode_host_name ::= NK_IPTOKEN */ + { 221, -3 }, /* (39) cmd ::= ALTER LOCAL NK_STRING */ + { 221, -4 }, /* (40) cmd ::= ALTER LOCAL NK_STRING NK_STRING */ + { 221, -5 }, /* (41) cmd ::= CREATE QNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (42) cmd ::= DROP QNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (43) cmd ::= CREATE BNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (44) cmd ::= DROP BNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (45) cmd ::= CREATE SNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (46) cmd ::= DROP SNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (47) cmd ::= CREATE MNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (48) cmd ::= DROP MNODE ON DNODE NK_INTEGER */ + { 221, -5 }, /* (49) cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ + { 221, -4 }, /* (50) cmd ::= DROP DATABASE exists_opt db_name */ + { 221, -2 }, /* (51) cmd ::= USE db_name */ + { 221, -4 }, /* (52) cmd ::= ALTER DATABASE db_name alter_db_options */ + { 229, -3 }, /* (53) not_exists_opt ::= IF NOT EXISTS */ + { 229, 0 }, /* (54) not_exists_opt ::= */ + { 232, -2 }, /* (55) exists_opt ::= IF EXISTS */ + { 232, 0 }, /* (56) exists_opt ::= */ + { 231, 0 }, /* (57) db_options ::= */ + { 231, -3 }, /* (58) db_options ::= db_options BLOCKS NK_INTEGER */ + { 231, -3 }, /* (59) db_options ::= db_options CACHE NK_INTEGER */ + { 231, -3 }, /* (60) db_options ::= db_options CACHELAST NK_INTEGER */ + { 231, -3 }, /* (61) db_options ::= db_options COMP NK_INTEGER */ + { 231, -3 }, /* (62) db_options ::= db_options DAYS NK_INTEGER */ + { 231, -3 }, /* (63) db_options ::= db_options DAYS NK_VARIABLE */ + { 231, -3 }, /* (64) db_options ::= db_options FSYNC NK_INTEGER */ + { 231, -3 }, /* (65) db_options ::= db_options MAXROWS NK_INTEGER */ + { 231, -3 }, /* (66) db_options ::= db_options MINROWS NK_INTEGER */ + { 231, -3 }, /* (67) db_options ::= db_options KEEP integer_list */ + { 231, -3 }, /* (68) db_options ::= db_options KEEP variable_list */ + { 231, -3 }, /* (69) db_options ::= db_options PRECISION NK_STRING */ + { 231, -3 }, /* (70) db_options ::= db_options QUORUM NK_INTEGER */ + { 231, -3 }, /* (71) db_options ::= db_options REPLICA NK_INTEGER */ + { 231, -3 }, /* (72) db_options ::= db_options TTL NK_INTEGER */ + { 231, -3 }, /* (73) db_options ::= db_options WAL NK_INTEGER */ + { 231, -3 }, /* (74) db_options ::= db_options VGROUPS NK_INTEGER */ + { 231, -3 }, /* (75) db_options ::= db_options SINGLE_STABLE NK_INTEGER */ + { 231, -3 }, /* (76) db_options ::= db_options STREAM_MODE NK_INTEGER */ + { 231, -3 }, /* (77) db_options ::= db_options RETENTIONS retention_list */ + { 231, -3 }, /* (78) db_options ::= db_options STRICT NK_INTEGER */ + { 233, -1 }, /* (79) alter_db_options ::= alter_db_option */ + { 233, -2 }, /* (80) alter_db_options ::= alter_db_options alter_db_option */ + { 237, -2 }, /* (81) alter_db_option ::= BLOCKS NK_INTEGER */ + { 237, -2 }, /* (82) alter_db_option ::= FSYNC NK_INTEGER */ + { 237, -2 }, /* (83) alter_db_option ::= KEEP integer_list */ + { 237, -2 }, /* (84) alter_db_option ::= KEEP variable_list */ + { 237, -2 }, /* (85) alter_db_option ::= WAL NK_INTEGER */ + { 237, -2 }, /* (86) alter_db_option ::= QUORUM NK_INTEGER */ + { 237, -2 }, /* (87) alter_db_option ::= CACHELAST NK_INTEGER */ + { 237, -2 }, /* (88) alter_db_option ::= REPLICA NK_INTEGER */ + { 237, -2 }, /* (89) alter_db_option ::= STRICT NK_INTEGER */ + { 234, -1 }, /* (90) integer_list ::= NK_INTEGER */ + { 234, -3 }, /* (91) integer_list ::= integer_list NK_COMMA NK_INTEGER */ + { 235, -1 }, /* (92) variable_list ::= NK_VARIABLE */ + { 235, -3 }, /* (93) variable_list ::= variable_list NK_COMMA NK_VARIABLE */ + { 236, -1 }, /* (94) retention_list ::= retention */ + { 236, -3 }, /* (95) retention_list ::= retention_list NK_COMMA retention */ + { 238, -3 }, /* (96) retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ + { 221, -9 }, /* (97) cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ + { 221, -3 }, /* (98) cmd ::= CREATE TABLE multi_create_clause */ + { 221, -9 }, /* (99) cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ + { 221, -3 }, /* (100) cmd ::= DROP TABLE multi_drop_clause */ + { 221, -4 }, /* (101) cmd ::= DROP STABLE exists_opt full_table_name */ + { 221, -3 }, /* (102) cmd ::= ALTER TABLE alter_table_clause */ + { 221, -3 }, /* (103) cmd ::= ALTER STABLE alter_table_clause */ + { 246, -2 }, /* (104) alter_table_clause ::= full_table_name alter_table_options */ + { 246, -5 }, /* (105) alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ + { 246, -4 }, /* (106) alter_table_clause ::= full_table_name DROP COLUMN column_name */ + { 246, -5 }, /* (107) alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ + { 246, -5 }, /* (108) alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ + { 246, -5 }, /* (109) alter_table_clause ::= full_table_name ADD TAG column_name type_name */ + { 246, -4 }, /* (110) alter_table_clause ::= full_table_name DROP TAG column_name */ + { 246, -5 }, /* (111) alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ + { 246, -5 }, /* (112) alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ + { 246, -6 }, /* (113) alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ + { 243, -1 }, /* (114) multi_create_clause ::= create_subtable_clause */ + { 243, -2 }, /* (115) multi_create_clause ::= multi_create_clause create_subtable_clause */ + { 250, -9 }, /* (116) create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ + { 245, -1 }, /* (117) multi_drop_clause ::= drop_table_clause */ + { 245, -2 }, /* (118) multi_drop_clause ::= multi_drop_clause drop_table_clause */ + { 253, -2 }, /* (119) drop_table_clause ::= exists_opt full_table_name */ + { 251, 0 }, /* (120) specific_tags_opt ::= */ + { 251, -3 }, /* (121) specific_tags_opt ::= NK_LP col_name_list NK_RP */ + { 239, -1 }, /* (122) full_table_name ::= table_name */ + { 239, -3 }, /* (123) full_table_name ::= db_name NK_DOT table_name */ + { 240, -1 }, /* (124) column_def_list ::= column_def */ + { 240, -3 }, /* (125) column_def_list ::= column_def_list NK_COMMA column_def */ + { 256, -2 }, /* (126) column_def ::= column_name type_name */ + { 256, -4 }, /* (127) column_def ::= column_name type_name COMMENT NK_STRING */ + { 249, -1 }, /* (128) type_name ::= BOOL */ + { 249, -1 }, /* (129) type_name ::= TINYINT */ + { 249, -1 }, /* (130) type_name ::= SMALLINT */ + { 249, -1 }, /* (131) type_name ::= INT */ + { 249, -1 }, /* (132) type_name ::= INTEGER */ + { 249, -1 }, /* (133) type_name ::= BIGINT */ + { 249, -1 }, /* (134) type_name ::= FLOAT */ + { 249, -1 }, /* (135) type_name ::= DOUBLE */ + { 249, -4 }, /* (136) type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ + { 249, -1 }, /* (137) type_name ::= TIMESTAMP */ + { 249, -4 }, /* (138) type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ + { 249, -2 }, /* (139) type_name ::= TINYINT UNSIGNED */ + { 249, -2 }, /* (140) type_name ::= SMALLINT UNSIGNED */ + { 249, -2 }, /* (141) type_name ::= INT UNSIGNED */ + { 249, -2 }, /* (142) type_name ::= BIGINT UNSIGNED */ + { 249, -1 }, /* (143) type_name ::= JSON */ + { 249, -4 }, /* (144) type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ + { 249, -1 }, /* (145) type_name ::= MEDIUMBLOB */ + { 249, -1 }, /* (146) type_name ::= BLOB */ + { 249, -4 }, /* (147) type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ + { 249, -1 }, /* (148) type_name ::= DECIMAL */ + { 249, -4 }, /* (149) type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ + { 249, -6 }, /* (150) type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ + { 241, 0 }, /* (151) tags_def_opt ::= */ + { 241, -1 }, /* (152) tags_def_opt ::= tags_def */ + { 244, -4 }, /* (153) tags_def ::= TAGS NK_LP column_def_list NK_RP */ + { 242, 0 }, /* (154) table_options ::= */ + { 242, -3 }, /* (155) table_options ::= table_options COMMENT NK_STRING */ + { 242, -3 }, /* (156) table_options ::= table_options KEEP integer_list */ + { 242, -3 }, /* (157) table_options ::= table_options KEEP variable_list */ + { 242, -3 }, /* (158) table_options ::= table_options TTL NK_INTEGER */ + { 242, -5 }, /* (159) table_options ::= table_options SMA NK_LP col_name_list NK_RP */ + { 242, -5 }, /* (160) table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ + { 242, -3 }, /* (161) table_options ::= table_options FILE_FACTOR NK_FLOAT */ + { 242, -3 }, /* (162) table_options ::= table_options DELAY NK_INTEGER */ + { 247, -1 }, /* (163) alter_table_options ::= alter_table_option */ + { 247, -2 }, /* (164) alter_table_options ::= alter_table_options alter_table_option */ + { 258, -2 }, /* (165) alter_table_option ::= COMMENT NK_STRING */ + { 258, -2 }, /* (166) alter_table_option ::= KEEP integer_list */ + { 258, -2 }, /* (167) alter_table_option ::= KEEP variable_list */ + { 258, -2 }, /* (168) alter_table_option ::= TTL NK_INTEGER */ + { 254, -1 }, /* (169) col_name_list ::= col_name */ + { 254, -3 }, /* (170) col_name_list ::= col_name_list NK_COMMA col_name */ + { 259, -1 }, /* (171) col_name ::= column_name */ + { 221, -2 }, /* (172) cmd ::= SHOW DNODES */ + { 221, -2 }, /* (173) cmd ::= SHOW USERS */ + { 221, -2 }, /* (174) cmd ::= SHOW DATABASES */ + { 221, -4 }, /* (175) cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ + { 221, -4 }, /* (176) cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ + { 221, -3 }, /* (177) cmd ::= SHOW db_name_cond_opt VGROUPS */ + { 221, -2 }, /* (178) cmd ::= SHOW MNODES */ + { 221, -2 }, /* (179) cmd ::= SHOW MODULES */ + { 221, -2 }, /* (180) cmd ::= SHOW QNODES */ + { 221, -2 }, /* (181) cmd ::= SHOW FUNCTIONS */ + { 221, -5 }, /* (182) cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ + { 221, -2 }, /* (183) cmd ::= SHOW STREAMS */ + { 221, -2 }, /* (184) cmd ::= SHOW ACCOUNTS */ + { 221, -2 }, /* (185) cmd ::= SHOW APPS */ + { 221, -2 }, /* (186) cmd ::= SHOW CONNECTIONS */ + { 221, -2 }, /* (187) cmd ::= SHOW LICENCE */ + { 221, -2 }, /* (188) cmd ::= SHOW GRANTS */ + { 221, -4 }, /* (189) cmd ::= SHOW CREATE DATABASE db_name */ + { 221, -4 }, /* (190) cmd ::= SHOW CREATE TABLE full_table_name */ + { 221, -4 }, /* (191) cmd ::= SHOW CREATE STABLE full_table_name */ + { 221, -2 }, /* (192) cmd ::= SHOW QUERIES */ + { 221, -2 }, /* (193) cmd ::= SHOW SCORES */ + { 221, -2 }, /* (194) cmd ::= SHOW TOPICS */ + { 221, -2 }, /* (195) cmd ::= SHOW VARIABLES */ + { 221, -2 }, /* (196) cmd ::= SHOW BNODES */ + { 221, -2 }, /* (197) cmd ::= SHOW SNODES */ + { 260, 0 }, /* (198) db_name_cond_opt ::= */ + { 260, -2 }, /* (199) db_name_cond_opt ::= db_name NK_DOT */ + { 261, 0 }, /* (200) like_pattern_opt ::= */ + { 261, -2 }, /* (201) like_pattern_opt ::= LIKE NK_STRING */ + { 262, -1 }, /* (202) table_name_cond ::= table_name */ + { 263, 0 }, /* (203) from_db_opt ::= */ + { 263, -2 }, /* (204) from_db_opt ::= FROM db_name */ + { 257, -1 }, /* (205) func_name_list ::= func_name */ + { 257, -3 }, /* (206) func_name_list ::= func_name_list NK_COMMA func_name */ + { 264, -1 }, /* (207) func_name ::= function_name */ + { 221, -8 }, /* (208) cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ + { 221, -10 }, /* (209) cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ + { 221, -6 }, /* (210) cmd ::= DROP INDEX exists_opt index_name ON table_name */ + { 267, 0 }, /* (211) index_options ::= */ + { 267, -9 }, /* (212) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ + { 267, -11 }, /* (213) index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ + { 268, -1 }, /* (214) func_list ::= func */ + { 268, -3 }, /* (215) func_list ::= func_list NK_COMMA func */ + { 271, -4 }, /* (216) func ::= function_name NK_LP expression_list NK_RP */ + { 221, -6 }, /* (217) cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ + { 221, -6 }, /* (218) cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ + { 221, -4 }, /* (219) cmd ::= DROP TOPIC exists_opt topic_name */ + { 221, -2 }, /* (220) cmd ::= DESC full_table_name */ + { 221, -2 }, /* (221) cmd ::= DESCRIBE full_table_name */ + { 221, -3 }, /* (222) cmd ::= RESET QUERY CACHE */ + { 221, -4 }, /* (223) cmd ::= EXPLAIN analyze_opt explain_options query_expression */ + { 275, 0 }, /* (224) analyze_opt ::= */ + { 275, -1 }, /* (225) analyze_opt ::= ANALYZE */ + { 276, 0 }, /* (226) explain_options ::= */ + { 276, -3 }, /* (227) explain_options ::= explain_options VERBOSE NK_BOOL */ + { 276, -3 }, /* (228) explain_options ::= explain_options RATIO NK_FLOAT */ + { 221, -6 }, /* (229) cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ + { 221, -9 }, /* (230) cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ + { 221, -3 }, /* (231) cmd ::= DROP FUNCTION function_name */ + { 277, 0 }, /* (232) agg_func_opt ::= */ + { 277, -1 }, /* (233) agg_func_opt ::= AGGREGATE */ + { 278, 0 }, /* (234) bufsize_opt ::= */ + { 278, -2 }, /* (235) bufsize_opt ::= BUFSIZE NK_INTEGER */ + { 221, -8 }, /* (236) cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression */ + { 221, -4 }, /* (237) cmd ::= DROP STREAM exists_opt stream_name */ + { 281, 0 }, /* (238) into_opt ::= */ + { 281, -2 }, /* (239) into_opt ::= INTO full_table_name */ + { 280, 0 }, /* (240) stream_options ::= */ + { 280, -3 }, /* (241) stream_options ::= stream_options TRIGGER AT_ONCE */ + { 280, -3 }, /* (242) stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ + { 280, -3 }, /* (243) stream_options ::= stream_options WATERMARK duration_literal */ + { 221, -3 }, /* (244) cmd ::= KILL CONNECTION NK_INTEGER */ + { 221, -3 }, /* (245) cmd ::= KILL QUERY NK_INTEGER */ + { 221, -4 }, /* (246) cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ + { 221, -4 }, /* (247) cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ + { 221, -3 }, /* (248) cmd ::= SPLIT VGROUP NK_INTEGER */ + { 282, -2 }, /* (249) dnode_list ::= DNODE NK_INTEGER */ + { 282, -3 }, /* (250) dnode_list ::= dnode_list DNODE NK_INTEGER */ + { 221, -3 }, /* (251) cmd ::= SYNCDB db_name REPLICA */ + { 221, -1 }, /* (252) cmd ::= query_expression */ + { 224, -1 }, /* (253) literal ::= NK_INTEGER */ + { 224, -1 }, /* (254) literal ::= NK_FLOAT */ + { 224, -1 }, /* (255) literal ::= NK_STRING */ + { 224, -1 }, /* (256) literal ::= NK_BOOL */ + { 224, -2 }, /* (257) literal ::= TIMESTAMP NK_STRING */ + { 224, -1 }, /* (258) literal ::= duration_literal */ + { 224, -1 }, /* (259) literal ::= NULL */ + { 224, -1 }, /* (260) literal ::= NK_QUESTION */ + { 269, -1 }, /* (261) duration_literal ::= NK_VARIABLE */ + { 283, -1 }, /* (262) signed ::= NK_INTEGER */ + { 283, -2 }, /* (263) signed ::= NK_PLUS NK_INTEGER */ + { 283, -2 }, /* (264) signed ::= NK_MINUS NK_INTEGER */ + { 283, -1 }, /* (265) signed ::= NK_FLOAT */ + { 283, -2 }, /* (266) signed ::= NK_PLUS NK_FLOAT */ + { 283, -2 }, /* (267) signed ::= NK_MINUS NK_FLOAT */ + { 284, -1 }, /* (268) signed_literal ::= signed */ + { 284, -1 }, /* (269) signed_literal ::= NK_STRING */ + { 284, -1 }, /* (270) signed_literal ::= NK_BOOL */ + { 284, -2 }, /* (271) signed_literal ::= TIMESTAMP NK_STRING */ + { 284, -1 }, /* (272) signed_literal ::= duration_literal */ + { 284, -1 }, /* (273) signed_literal ::= NULL */ + { 252, -1 }, /* (274) literal_list ::= signed_literal */ + { 252, -3 }, /* (275) literal_list ::= literal_list NK_COMMA signed_literal */ + { 230, -1 }, /* (276) db_name ::= NK_ID */ + { 255, -1 }, /* (277) table_name ::= NK_ID */ + { 248, -1 }, /* (278) column_name ::= NK_ID */ + { 265, -1 }, /* (279) function_name ::= NK_ID */ + { 285, -1 }, /* (280) table_alias ::= NK_ID */ + { 286, -1 }, /* (281) column_alias ::= NK_ID */ + { 226, -1 }, /* (282) user_name ::= NK_ID */ + { 266, -1 }, /* (283) index_name ::= NK_ID */ + { 273, -1 }, /* (284) topic_name ::= NK_ID */ + { 279, -1 }, /* (285) stream_name ::= NK_ID */ + { 287, -1 }, /* (286) expression ::= literal */ + { 287, -1 }, /* (287) expression ::= pseudo_column */ + { 287, -1 }, /* (288) expression ::= column_reference */ + { 287, -1 }, /* (289) expression ::= function_expression */ + { 287, -1 }, /* (290) expression ::= subquery */ + { 287, -3 }, /* (291) expression ::= NK_LP expression NK_RP */ + { 287, -2 }, /* (292) expression ::= NK_PLUS expression */ + { 287, -2 }, /* (293) expression ::= NK_MINUS expression */ + { 287, -3 }, /* (294) expression ::= expression NK_PLUS expression */ + { 287, -3 }, /* (295) expression ::= expression NK_MINUS expression */ + { 287, -3 }, /* (296) expression ::= expression NK_STAR expression */ + { 287, -3 }, /* (297) expression ::= expression NK_SLASH expression */ + { 287, -3 }, /* (298) expression ::= expression NK_REM expression */ + { 287, -3 }, /* (299) expression ::= column_reference NK_ARROW NK_STRING */ + { 272, -1 }, /* (300) expression_list ::= expression */ + { 272, -3 }, /* (301) expression_list ::= expression_list NK_COMMA expression */ + { 289, -1 }, /* (302) column_reference ::= column_name */ + { 289, -3 }, /* (303) column_reference ::= table_name NK_DOT column_name */ + { 288, -1 }, /* (304) pseudo_column ::= ROWTS */ + { 288, -1 }, /* (305) pseudo_column ::= TBNAME */ + { 288, -1 }, /* (306) pseudo_column ::= QSTARTTS */ + { 288, -1 }, /* (307) pseudo_column ::= QENDTS */ + { 288, -1 }, /* (308) pseudo_column ::= WSTARTTS */ + { 288, -1 }, /* (309) pseudo_column ::= WENDTS */ + { 288, -1 }, /* (310) pseudo_column ::= WDURATION */ + { 290, -4 }, /* (311) function_expression ::= function_name NK_LP expression_list NK_RP */ + { 290, -4 }, /* (312) function_expression ::= star_func NK_LP star_func_para_list NK_RP */ + { 290, -6 }, /* (313) function_expression ::= CAST NK_LP expression AS type_name NK_RP */ + { 290, -3 }, /* (314) function_expression ::= noarg_func NK_LP NK_RP */ + { 294, -1 }, /* (315) noarg_func ::= NOW */ + { 294, -1 }, /* (316) noarg_func ::= TODAY */ + { 294, -1 }, /* (317) noarg_func ::= TIMEZONE */ + { 292, -1 }, /* (318) star_func ::= COUNT */ + { 292, -1 }, /* (319) star_func ::= FIRST */ + { 292, -1 }, /* (320) star_func ::= LAST */ + { 292, -1 }, /* (321) star_func ::= LAST_ROW */ + { 293, -1 }, /* (322) star_func_para_list ::= NK_STAR */ + { 293, -1 }, /* (323) star_func_para_list ::= other_para_list */ + { 295, -1 }, /* (324) other_para_list ::= star_func_para */ + { 295, -3 }, /* (325) other_para_list ::= other_para_list NK_COMMA star_func_para */ + { 296, -1 }, /* (326) star_func_para ::= expression */ + { 296, -3 }, /* (327) star_func_para ::= table_name NK_DOT NK_STAR */ + { 297, -3 }, /* (328) predicate ::= expression compare_op expression */ + { 297, -5 }, /* (329) predicate ::= expression BETWEEN expression AND expression */ + { 297, -6 }, /* (330) predicate ::= expression NOT BETWEEN expression AND expression */ + { 297, -3 }, /* (331) predicate ::= expression IS NULL */ + { 297, -4 }, /* (332) predicate ::= expression IS NOT NULL */ + { 297, -3 }, /* (333) predicate ::= expression in_op in_predicate_value */ + { 298, -1 }, /* (334) compare_op ::= NK_LT */ + { 298, -1 }, /* (335) compare_op ::= NK_GT */ + { 298, -1 }, /* (336) compare_op ::= NK_LE */ + { 298, -1 }, /* (337) compare_op ::= NK_GE */ + { 298, -1 }, /* (338) compare_op ::= NK_NE */ + { 298, -1 }, /* (339) compare_op ::= NK_EQ */ + { 298, -1 }, /* (340) compare_op ::= LIKE */ + { 298, -2 }, /* (341) compare_op ::= NOT LIKE */ + { 298, -1 }, /* (342) compare_op ::= MATCH */ + { 298, -1 }, /* (343) compare_op ::= NMATCH */ + { 298, -1 }, /* (344) compare_op ::= CONTAINS */ + { 299, -1 }, /* (345) in_op ::= IN */ + { 299, -2 }, /* (346) in_op ::= NOT IN */ + { 300, -3 }, /* (347) in_predicate_value ::= NK_LP expression_list NK_RP */ + { 301, -1 }, /* (348) boolean_value_expression ::= boolean_primary */ + { 301, -2 }, /* (349) boolean_value_expression ::= NOT boolean_primary */ + { 301, -3 }, /* (350) boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ + { 301, -3 }, /* (351) boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ + { 302, -1 }, /* (352) boolean_primary ::= predicate */ + { 302, -3 }, /* (353) boolean_primary ::= NK_LP boolean_value_expression NK_RP */ + { 303, -1 }, /* (354) common_expression ::= expression */ + { 303, -1 }, /* (355) common_expression ::= boolean_value_expression */ + { 304, -2 }, /* (356) from_clause ::= FROM table_reference_list */ + { 305, -1 }, /* (357) table_reference_list ::= table_reference */ + { 305, -3 }, /* (358) table_reference_list ::= table_reference_list NK_COMMA table_reference */ + { 306, -1 }, /* (359) table_reference ::= table_primary */ + { 306, -1 }, /* (360) table_reference ::= joined_table */ + { 307, -2 }, /* (361) table_primary ::= table_name alias_opt */ + { 307, -4 }, /* (362) table_primary ::= db_name NK_DOT table_name alias_opt */ + { 307, -2 }, /* (363) table_primary ::= subquery alias_opt */ + { 307, -1 }, /* (364) table_primary ::= parenthesized_joined_table */ + { 309, 0 }, /* (365) alias_opt ::= */ + { 309, -1 }, /* (366) alias_opt ::= table_alias */ + { 309, -2 }, /* (367) alias_opt ::= AS table_alias */ + { 310, -3 }, /* (368) parenthesized_joined_table ::= NK_LP joined_table NK_RP */ + { 310, -3 }, /* (369) parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ + { 308, -6 }, /* (370) joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ + { 311, 0 }, /* (371) join_type ::= */ + { 311, -1 }, /* (372) join_type ::= INNER */ + { 313, -9 }, /* (373) query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ + { 314, 0 }, /* (374) set_quantifier_opt ::= */ + { 314, -1 }, /* (375) set_quantifier_opt ::= DISTINCT */ + { 314, -1 }, /* (376) set_quantifier_opt ::= ALL */ + { 315, -1 }, /* (377) select_list ::= NK_STAR */ + { 315, -1 }, /* (378) select_list ::= select_sublist */ + { 321, -1 }, /* (379) select_sublist ::= select_item */ + { 321, -3 }, /* (380) select_sublist ::= select_sublist NK_COMMA select_item */ + { 322, -1 }, /* (381) select_item ::= common_expression */ + { 322, -2 }, /* (382) select_item ::= common_expression column_alias */ + { 322, -3 }, /* (383) select_item ::= common_expression AS column_alias */ + { 322, -3 }, /* (384) select_item ::= table_name NK_DOT NK_STAR */ + { 316, 0 }, /* (385) where_clause_opt ::= */ + { 316, -2 }, /* (386) where_clause_opt ::= WHERE search_condition */ + { 317, 0 }, /* (387) partition_by_clause_opt ::= */ + { 317, -3 }, /* (388) partition_by_clause_opt ::= PARTITION BY expression_list */ + { 318, 0 }, /* (389) twindow_clause_opt ::= */ + { 318, -6 }, /* (390) twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ + { 318, -4 }, /* (391) twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ + { 318, -6 }, /* (392) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ + { 318, -8 }, /* (393) twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ + { 270, 0 }, /* (394) sliding_opt ::= */ + { 270, -4 }, /* (395) sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ + { 323, 0 }, /* (396) fill_opt ::= */ + { 323, -4 }, /* (397) fill_opt ::= FILL NK_LP fill_mode NK_RP */ + { 323, -6 }, /* (398) fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ + { 324, -1 }, /* (399) fill_mode ::= NONE */ + { 324, -1 }, /* (400) fill_mode ::= PREV */ + { 324, -1 }, /* (401) fill_mode ::= NULL */ + { 324, -1 }, /* (402) fill_mode ::= LINEAR */ + { 324, -1 }, /* (403) fill_mode ::= NEXT */ + { 319, 0 }, /* (404) group_by_clause_opt ::= */ + { 319, -3 }, /* (405) group_by_clause_opt ::= GROUP BY group_by_list */ + { 325, -1 }, /* (406) group_by_list ::= expression */ + { 325, -3 }, /* (407) group_by_list ::= group_by_list NK_COMMA expression */ + { 320, 0 }, /* (408) having_clause_opt ::= */ + { 320, -2 }, /* (409) having_clause_opt ::= HAVING search_condition */ + { 274, -4 }, /* (410) query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ + { 326, -1 }, /* (411) query_expression_body ::= query_primary */ + { 326, -4 }, /* (412) query_expression_body ::= query_expression_body UNION ALL query_expression_body */ + { 330, -1 }, /* (413) query_primary ::= query_specification */ + { 327, 0 }, /* (414) order_by_clause_opt ::= */ + { 327, -3 }, /* (415) order_by_clause_opt ::= ORDER BY sort_specification_list */ + { 328, 0 }, /* (416) slimit_clause_opt ::= */ + { 328, -2 }, /* (417) slimit_clause_opt ::= SLIMIT NK_INTEGER */ + { 328, -4 }, /* (418) slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ + { 328, -4 }, /* (419) slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + { 329, 0 }, /* (420) limit_clause_opt ::= */ + { 329, -2 }, /* (421) limit_clause_opt ::= LIMIT NK_INTEGER */ + { 329, -4 }, /* (422) limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ + { 329, -4 }, /* (423) limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + { 291, -3 }, /* (424) subquery ::= NK_LP query_expression NK_RP */ + { 312, -1 }, /* (425) search_condition ::= common_expression */ + { 331, -1 }, /* (426) sort_specification_list ::= sort_specification */ + { 331, -3 }, /* (427) sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ + { 332, -3 }, /* (428) sort_specification ::= expression ordering_specification_opt null_ordering_opt */ + { 333, 0 }, /* (429) ordering_specification_opt ::= */ + { 333, -1 }, /* (430) ordering_specification_opt ::= ASC */ + { 333, -1 }, /* (431) ordering_specification_opt ::= DESC */ + { 334, 0 }, /* (432) null_ordering_opt ::= */ + { 334, -2 }, /* (433) null_ordering_opt ::= NULLS FIRST */ + { 334, -2 }, /* (434) null_ordering_opt ::= NULLS LAST */ }; static void yy_accept(yyParser*); /* Forward Declaration */ @@ -2720,11 +2727,11 @@ static YYACTIONTYPE yy_reduce( YYMINORTYPE yylhsminor; case 0: /* cmd ::= CREATE ACCOUNT NK_ID PASS NK_STRING account_options */ { pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } - yy_destructor(yypParser,221,&yymsp[0].minor); + yy_destructor(yypParser,222,&yymsp[0].minor); break; case 1: /* cmd ::= ALTER ACCOUNT NK_ID alter_account_options */ { pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } - yy_destructor(yypParser,222,&yymsp[0].minor); + yy_destructor(yypParser,223,&yymsp[0].minor); break; case 2: /* account_options ::= */ { } @@ -2738,20 +2745,20 @@ static YYACTIONTYPE yy_reduce( case 9: /* account_options ::= account_options USERS literal */ yytestcase(yyruleno==9); case 10: /* account_options ::= account_options CONNS literal */ yytestcase(yyruleno==10); case 11: /* account_options ::= account_options STATE literal */ yytestcase(yyruleno==11); -{ yy_destructor(yypParser,221,&yymsp[-2].minor); +{ yy_destructor(yypParser,222,&yymsp[-2].minor); { } - yy_destructor(yypParser,223,&yymsp[0].minor); + yy_destructor(yypParser,224,&yymsp[0].minor); } break; case 12: /* alter_account_options ::= alter_account_option */ -{ yy_destructor(yypParser,224,&yymsp[0].minor); +{ yy_destructor(yypParser,225,&yymsp[0].minor); { } } break; case 13: /* alter_account_options ::= alter_account_options alter_account_option */ -{ yy_destructor(yypParser,222,&yymsp[-1].minor); +{ yy_destructor(yypParser,223,&yymsp[-1].minor); { } - yy_destructor(yypParser,224,&yymsp[0].minor); + yy_destructor(yypParser,225,&yymsp[0].minor); } break; case 14: /* alter_account_option ::= PASS literal */ @@ -2765,31 +2772,31 @@ static YYACTIONTYPE yy_reduce( case 22: /* alter_account_option ::= CONNS literal */ yytestcase(yyruleno==22); case 23: /* alter_account_option ::= STATE literal */ yytestcase(yyruleno==23); { } - yy_destructor(yypParser,223,&yymsp[0].minor); + yy_destructor(yypParser,224,&yymsp[0].minor); break; case 24: /* cmd ::= CREATE USER user_name PASS NK_STRING */ -{ pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy0); } +{ pCxt->pRootNode = createCreateUserStmt(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy0); } break; case 25: /* cmd ::= ALTER USER user_name PASS NK_STRING */ -{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy537, TSDB_ALTER_USER_PASSWD, &yymsp[0].minor.yy0); } +{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy359, TSDB_ALTER_USER_PASSWD, &yymsp[0].minor.yy0); } break; case 26: /* cmd ::= ALTER USER user_name PRIVILEGE NK_STRING */ -{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy537, TSDB_ALTER_USER_PRIVILEGES, &yymsp[0].minor.yy0); } +{ pCxt->pRootNode = createAlterUserStmt(pCxt, &yymsp[-2].minor.yy359, TSDB_ALTER_USER_PRIVILEGES, &yymsp[0].minor.yy0); } break; case 27: /* cmd ::= DROP USER user_name */ -{ pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy537); } +{ pCxt->pRootNode = createDropUserStmt(pCxt, &yymsp[0].minor.yy359); } break; case 28: /* cmd ::= CREATE DNODE dnode_endpoint */ -{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy537, NULL); } +{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[0].minor.yy359, NULL); } break; case 29: /* cmd ::= CREATE DNODE dnode_host_name PORT NK_INTEGER */ -{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy0); } +{ pCxt->pRootNode = createCreateDnodeStmt(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy0); } break; case 30: /* cmd ::= DROP DNODE NK_INTEGER */ { pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy0); } break; case 31: /* cmd ::= DROP DNODE dnode_endpoint */ -{ pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy537); } +{ pCxt->pRootNode = createDropDnodeStmt(pCxt, &yymsp[0].minor.yy359); } break; case 32: /* cmd ::= ALTER DNODE NK_INTEGER NK_STRING */ { pCxt->pRootNode = createAlterDnodeStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, NULL); } @@ -2806,25 +2813,25 @@ static YYACTIONTYPE yy_reduce( case 36: /* dnode_endpoint ::= NK_STRING */ case 37: /* dnode_host_name ::= NK_ID */ yytestcase(yyruleno==37); case 38: /* dnode_host_name ::= NK_IPTOKEN */ yytestcase(yyruleno==38); - case 274: /* db_name ::= NK_ID */ yytestcase(yyruleno==274); - case 275: /* table_name ::= NK_ID */ yytestcase(yyruleno==275); - case 276: /* column_name ::= NK_ID */ yytestcase(yyruleno==276); - case 277: /* function_name ::= NK_ID */ yytestcase(yyruleno==277); - case 278: /* table_alias ::= NK_ID */ yytestcase(yyruleno==278); - case 279: /* column_alias ::= NK_ID */ yytestcase(yyruleno==279); - case 280: /* user_name ::= NK_ID */ yytestcase(yyruleno==280); - case 281: /* index_name ::= NK_ID */ yytestcase(yyruleno==281); - case 282: /* topic_name ::= NK_ID */ yytestcase(yyruleno==282); - case 283: /* stream_name ::= NK_ID */ yytestcase(yyruleno==283); - case 313: /* noarg_func ::= NOW */ yytestcase(yyruleno==313); - case 314: /* noarg_func ::= TODAY */ yytestcase(yyruleno==314); - case 315: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==315); - case 316: /* star_func ::= COUNT */ yytestcase(yyruleno==316); - case 317: /* star_func ::= FIRST */ yytestcase(yyruleno==317); - case 318: /* star_func ::= LAST */ yytestcase(yyruleno==318); - case 319: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==319); -{ yylhsminor.yy537 = yymsp[0].minor.yy0; } - yymsp[0].minor.yy537 = yylhsminor.yy537; + case 276: /* db_name ::= NK_ID */ yytestcase(yyruleno==276); + case 277: /* table_name ::= NK_ID */ yytestcase(yyruleno==277); + case 278: /* column_name ::= NK_ID */ yytestcase(yyruleno==278); + case 279: /* function_name ::= NK_ID */ yytestcase(yyruleno==279); + case 280: /* table_alias ::= NK_ID */ yytestcase(yyruleno==280); + case 281: /* column_alias ::= NK_ID */ yytestcase(yyruleno==281); + case 282: /* user_name ::= NK_ID */ yytestcase(yyruleno==282); + case 283: /* index_name ::= NK_ID */ yytestcase(yyruleno==283); + case 284: /* topic_name ::= NK_ID */ yytestcase(yyruleno==284); + case 285: /* stream_name ::= NK_ID */ yytestcase(yyruleno==285); + case 315: /* noarg_func ::= NOW */ yytestcase(yyruleno==315); + case 316: /* noarg_func ::= TODAY */ yytestcase(yyruleno==316); + case 317: /* noarg_func ::= TIMEZONE */ yytestcase(yyruleno==317); + case 318: /* star_func ::= COUNT */ yytestcase(yyruleno==318); + case 319: /* star_func ::= FIRST */ yytestcase(yyruleno==319); + case 320: /* star_func ::= LAST */ yytestcase(yyruleno==320); + case 321: /* star_func ::= LAST_ROW */ yytestcase(yyruleno==321); +{ yylhsminor.yy359 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy359 = yylhsminor.yy359; break; case 39: /* cmd ::= ALTER LOCAL NK_STRING */ { pCxt->pRootNode = createAlterLocalStmt(pCxt, &yymsp[0].minor.yy0, NULL); } @@ -2857,1125 +2864,1132 @@ static YYACTIONTYPE yy_reduce( { pCxt->pRootNode = createDropComponentNodeStmt(pCxt, QUERY_NODE_DROP_MNODE_STMT, &yymsp[0].minor.yy0); } break; case 49: /* cmd ::= CREATE DATABASE not_exists_opt db_name db_options */ -{ pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy649, &yymsp[-1].minor.yy537, yymsp[0].minor.yy456); } +{ pCxt->pRootNode = createCreateDatabaseStmt(pCxt, yymsp[-2].minor.yy237, &yymsp[-1].minor.yy359, yymsp[0].minor.yy42); } break; case 50: /* cmd ::= DROP DATABASE exists_opt db_name */ -{ pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy649, &yymsp[0].minor.yy537); } +{ pCxt->pRootNode = createDropDatabaseStmt(pCxt, yymsp[-1].minor.yy237, &yymsp[0].minor.yy359); } break; case 51: /* cmd ::= USE db_name */ -{ pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy537); } +{ pCxt->pRootNode = createUseDatabaseStmt(pCxt, &yymsp[0].minor.yy359); } break; case 52: /* cmd ::= ALTER DATABASE db_name alter_db_options */ -{ pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy537, yymsp[0].minor.yy456); } +{ pCxt->pRootNode = createAlterDatabaseStmt(pCxt, &yymsp[-1].minor.yy359, yymsp[0].minor.yy42); } break; case 53: /* not_exists_opt ::= IF NOT EXISTS */ -{ yymsp[-2].minor.yy649 = true; } +{ yymsp[-2].minor.yy237 = true; } break; case 54: /* not_exists_opt ::= */ case 56: /* exists_opt ::= */ yytestcase(yyruleno==56); - case 222: /* analyze_opt ::= */ yytestcase(yyruleno==222); - case 230: /* agg_func_opt ::= */ yytestcase(yyruleno==230); - case 372: /* set_quantifier_opt ::= */ yytestcase(yyruleno==372); -{ yymsp[1].minor.yy649 = false; } + case 224: /* analyze_opt ::= */ yytestcase(yyruleno==224); + case 232: /* agg_func_opt ::= */ yytestcase(yyruleno==232); + case 374: /* set_quantifier_opt ::= */ yytestcase(yyruleno==374); +{ yymsp[1].minor.yy237 = false; } break; case 55: /* exists_opt ::= IF EXISTS */ -{ yymsp[-1].minor.yy649 = true; } +{ yymsp[-1].minor.yy237 = true; } break; case 57: /* db_options ::= */ -{ yymsp[1].minor.yy456 = createDatabaseOptions(pCxt); } +{ yymsp[1].minor.yy42 = createDatabaseOptions(pCxt); } break; case 58: /* db_options ::= db_options BLOCKS NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pNumOfBlocks = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pNumOfBlocks = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 59: /* db_options ::= db_options CACHE NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pCacheBlockSize = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pCacheBlockSize = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 60: /* db_options ::= db_options CACHELAST NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pCachelast = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pCachelast = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 61: /* db_options ::= db_options COMP NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pCompressionLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pCompressionLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 62: /* db_options ::= db_options DAYS NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pDaysPerFile = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pDaysPerFile = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 63: /* db_options ::= db_options DAYS NK_VARIABLE */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pDaysPerFile = (SValueNode*)createDurationValueNode(pCxt, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pDaysPerFile = (SValueNode*)createDurationValueNode(pCxt, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 64: /* db_options ::= db_options FSYNC NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pFsyncPeriod = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pFsyncPeriod = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 65: /* db_options ::= db_options MAXROWS NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pMaxRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pMaxRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 66: /* db_options ::= db_options MINROWS NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pMinRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pMinRowsPerBlock = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 67: /* db_options ::= db_options KEEP integer_list */ case 68: /* db_options ::= db_options KEEP variable_list */ yytestcase(yyruleno==68); -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pKeep = yymsp[0].minor.yy632; yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pKeep = yymsp[0].minor.yy244; yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 69: /* db_options ::= db_options PRECISION NK_STRING */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pPrecision = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pPrecision = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 70: /* db_options ::= db_options QUORUM NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pQuorum = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pQuorum = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 71: /* db_options ::= db_options REPLICA NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pReplica = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pReplica = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 72: /* db_options ::= db_options TTL NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 73: /* db_options ::= db_options WAL NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pWalLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pWalLevel = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 74: /* db_options ::= db_options VGROUPS NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pNumOfVgroups = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pNumOfVgroups = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 75: /* db_options ::= db_options SINGLE_STABLE NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pSingleStable = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pSingleStable = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 76: /* db_options ::= db_options STREAM_MODE NK_INTEGER */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pStreamMode = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pStreamMode = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; case 77: /* db_options ::= db_options RETENTIONS retention_list */ -{ ((SDatabaseOptions*)yymsp[-2].minor.yy456)->pRetentions = yymsp[0].minor.yy632; yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 78: /* alter_db_options ::= alter_db_option */ -{ yylhsminor.yy456 = createDatabaseOptions(pCxt); yylhsminor.yy456 = setDatabaseAlterOption(pCxt, yylhsminor.yy456, &yymsp[0].minor.yy29); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 79: /* alter_db_options ::= alter_db_options alter_db_option */ -{ yylhsminor.yy456 = setDatabaseAlterOption(pCxt, yymsp[-1].minor.yy456, &yymsp[0].minor.yy29); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; - break; - case 80: /* alter_db_option ::= BLOCKS NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_BLOCKS; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 81: /* alter_db_option ::= FSYNC NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 82: /* alter_db_option ::= KEEP integer_list */ - case 83: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==83); -{ yymsp[-1].minor.yy29.type = DB_OPTION_KEEP; yymsp[-1].minor.yy29.pList = yymsp[0].minor.yy632; } - break; - case 84: /* alter_db_option ::= WAL NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_WAL; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 85: /* alter_db_option ::= QUORUM NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_QUORUM; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 86: /* alter_db_option ::= CACHELAST NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_CACHELAST; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 87: /* alter_db_option ::= REPLICA NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 88: /* integer_list ::= NK_INTEGER */ -{ yylhsminor.yy632 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy632 = yylhsminor.yy632; - break; - case 89: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ - case 248: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==248); -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-2].minor.yy632, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } - yymsp[-2].minor.yy632 = yylhsminor.yy632; - break; - case 90: /* variable_list ::= NK_VARIABLE */ -{ yylhsminor.yy632 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy632 = yylhsminor.yy632; - break; - case 91: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-2].minor.yy632, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } - yymsp[-2].minor.yy632 = yylhsminor.yy632; - break; - case 92: /* retention_list ::= retention */ - case 112: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==112); - case 115: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==115); - case 122: /* column_def_list ::= column_def */ yytestcase(yyruleno==122); - case 167: /* col_name_list ::= col_name */ yytestcase(yyruleno==167); - case 203: /* func_name_list ::= func_name */ yytestcase(yyruleno==203); - case 212: /* func_list ::= func */ yytestcase(yyruleno==212); - case 272: /* literal_list ::= signed_literal */ yytestcase(yyruleno==272); - case 322: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==322); - case 377: /* select_sublist ::= select_item */ yytestcase(yyruleno==377); - case 424: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==424); -{ yylhsminor.yy632 = createNodeList(pCxt, yymsp[0].minor.yy456); } - yymsp[0].minor.yy632 = yylhsminor.yy632; - break; - case 93: /* retention_list ::= retention_list NK_COMMA retention */ - case 123: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==123); - case 168: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==168); - case 204: /* func_name_list ::= func_name_list NK_COMMA col_name */ yytestcase(yyruleno==204); - case 213: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==213); - case 273: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==273); - case 323: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==323); - case 378: /* select_sublist ::= select_sublist NK_COMMA select_item */ yytestcase(yyruleno==378); - case 425: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==425); -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-2].minor.yy632, yymsp[0].minor.yy456); } - yymsp[-2].minor.yy632 = yylhsminor.yy632; - break; - case 94: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ -{ yylhsminor.yy456 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 95: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ - case 97: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==97); -{ pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy649, yymsp[-5].minor.yy456, yymsp[-3].minor.yy632, yymsp[-1].minor.yy632, yymsp[0].minor.yy456); } - break; - case 96: /* cmd ::= CREATE TABLE multi_create_clause */ -{ pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy632); } - break; - case 98: /* cmd ::= DROP TABLE multi_drop_clause */ -{ pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy632); } - break; - case 99: /* cmd ::= DROP STABLE exists_opt full_table_name */ -{ pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy649, yymsp[0].minor.yy456); } - break; - case 100: /* cmd ::= ALTER TABLE alter_table_clause */ - case 101: /* cmd ::= ALTER STABLE alter_table_clause */ yytestcase(yyruleno==101); - case 250: /* cmd ::= query_expression */ yytestcase(yyruleno==250); -{ pCxt->pRootNode = yymsp[0].minor.yy456; } - break; - case 102: /* alter_table_clause ::= full_table_name alter_table_options */ -{ yylhsminor.yy456 = createAlterTableOption(pCxt, yymsp[-1].minor.yy456, yymsp[0].minor.yy456); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; - break; - case 103: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ -{ yylhsminor.yy456 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy537, yymsp[0].minor.yy388); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; - break; - case 104: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ -{ yylhsminor.yy456 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy456, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy537); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; - break; - case 105: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ -{ yylhsminor.yy456 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy537, yymsp[0].minor.yy388); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pRetentions = yymsp[0].minor.yy244; yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 78: /* db_options ::= db_options STRICT NK_INTEGER */ +{ ((SDatabaseOptions*)yymsp[-2].minor.yy42)->pStrict = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 79: /* alter_db_options ::= alter_db_option */ +{ yylhsminor.yy42 = createDatabaseOptions(pCxt); yylhsminor.yy42 = setDatabaseAlterOption(pCxt, yylhsminor.yy42, &yymsp[0].minor.yy325); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 80: /* alter_db_options ::= alter_db_options alter_db_option */ +{ yylhsminor.yy42 = setDatabaseAlterOption(pCxt, yymsp[-1].minor.yy42, &yymsp[0].minor.yy325); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; + break; + case 81: /* alter_db_option ::= BLOCKS NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_BLOCKS; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 82: /* alter_db_option ::= FSYNC NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_FSYNC; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 83: /* alter_db_option ::= KEEP integer_list */ + case 84: /* alter_db_option ::= KEEP variable_list */ yytestcase(yyruleno==84); +{ yymsp[-1].minor.yy325.type = DB_OPTION_KEEP; yymsp[-1].minor.yy325.pList = yymsp[0].minor.yy244; } + break; + case 85: /* alter_db_option ::= WAL NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_WAL; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 86: /* alter_db_option ::= QUORUM NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_QUORUM; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 87: /* alter_db_option ::= CACHELAST NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_CACHELAST; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 88: /* alter_db_option ::= REPLICA NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_REPLICA; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 89: /* alter_db_option ::= STRICT NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = DB_OPTION_STRICT; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 90: /* integer_list ::= NK_INTEGER */ +{ yylhsminor.yy244 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy244 = yylhsminor.yy244; + break; + case 91: /* integer_list ::= integer_list NK_COMMA NK_INTEGER */ + case 250: /* dnode_list ::= dnode_list DNODE NK_INTEGER */ yytestcase(yyruleno==250); +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-2].minor.yy244, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; + break; + case 92: /* variable_list ::= NK_VARIABLE */ +{ yylhsminor.yy244 = createNodeList(pCxt, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy244 = yylhsminor.yy244; + break; + case 93: /* variable_list ::= variable_list NK_COMMA NK_VARIABLE */ +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-2].minor.yy244, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; + break; + case 94: /* retention_list ::= retention */ + case 114: /* multi_create_clause ::= create_subtable_clause */ yytestcase(yyruleno==114); + case 117: /* multi_drop_clause ::= drop_table_clause */ yytestcase(yyruleno==117); + case 124: /* column_def_list ::= column_def */ yytestcase(yyruleno==124); + case 169: /* col_name_list ::= col_name */ yytestcase(yyruleno==169); + case 205: /* func_name_list ::= func_name */ yytestcase(yyruleno==205); + case 214: /* func_list ::= func */ yytestcase(yyruleno==214); + case 274: /* literal_list ::= signed_literal */ yytestcase(yyruleno==274); + case 324: /* other_para_list ::= star_func_para */ yytestcase(yyruleno==324); + case 379: /* select_sublist ::= select_item */ yytestcase(yyruleno==379); + case 426: /* sort_specification_list ::= sort_specification */ yytestcase(yyruleno==426); +{ yylhsminor.yy244 = createNodeList(pCxt, yymsp[0].minor.yy42); } + yymsp[0].minor.yy244 = yylhsminor.yy244; + break; + case 95: /* retention_list ::= retention_list NK_COMMA retention */ + case 125: /* column_def_list ::= column_def_list NK_COMMA column_def */ yytestcase(yyruleno==125); + case 170: /* col_name_list ::= col_name_list NK_COMMA col_name */ yytestcase(yyruleno==170); + case 206: /* func_name_list ::= func_name_list NK_COMMA func_name */ yytestcase(yyruleno==206); + case 215: /* func_list ::= func_list NK_COMMA func */ yytestcase(yyruleno==215); + case 275: /* literal_list ::= literal_list NK_COMMA signed_literal */ yytestcase(yyruleno==275); + case 325: /* other_para_list ::= other_para_list NK_COMMA star_func_para */ yytestcase(yyruleno==325); + case 380: /* select_sublist ::= select_sublist NK_COMMA select_item */ yytestcase(yyruleno==380); + case 427: /* sort_specification_list ::= sort_specification_list NK_COMMA sort_specification */ yytestcase(yyruleno==427); +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-2].minor.yy244, yymsp[0].minor.yy42); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; + break; + case 96: /* retention ::= NK_VARIABLE NK_COLON NK_VARIABLE */ +{ yylhsminor.yy42 = createNodeListNodeEx(pCxt, createDurationValueNode(pCxt, &yymsp[-2].minor.yy0), createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 97: /* cmd ::= CREATE TABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def_opt table_options */ + case 99: /* cmd ::= CREATE STABLE not_exists_opt full_table_name NK_LP column_def_list NK_RP tags_def table_options */ yytestcase(yyruleno==99); +{ pCxt->pRootNode = createCreateTableStmt(pCxt, yymsp[-6].minor.yy237, yymsp[-5].minor.yy42, yymsp[-3].minor.yy244, yymsp[-1].minor.yy244, yymsp[0].minor.yy42); } + break; + case 98: /* cmd ::= CREATE TABLE multi_create_clause */ +{ pCxt->pRootNode = createCreateMultiTableStmt(pCxt, yymsp[0].minor.yy244); } + break; + case 100: /* cmd ::= DROP TABLE multi_drop_clause */ +{ pCxt->pRootNode = createDropTableStmt(pCxt, yymsp[0].minor.yy244); } + break; + case 101: /* cmd ::= DROP STABLE exists_opt full_table_name */ +{ pCxt->pRootNode = createDropSuperTableStmt(pCxt, yymsp[-1].minor.yy237, yymsp[0].minor.yy42); } + break; + case 102: /* cmd ::= ALTER TABLE alter_table_clause */ + case 103: /* cmd ::= ALTER STABLE alter_table_clause */ yytestcase(yyruleno==103); + case 252: /* cmd ::= query_expression */ yytestcase(yyruleno==252); +{ pCxt->pRootNode = yymsp[0].minor.yy42; } + break; + case 104: /* alter_table_clause ::= full_table_name alter_table_options */ +{ yylhsminor.yy42 = createAlterTableOption(pCxt, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; + break; + case 105: /* alter_table_clause ::= full_table_name ADD COLUMN column_name type_name */ +{ yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_ADD_COLUMN, &yymsp[-1].minor.yy359, yymsp[0].minor.yy314); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; + break; + case 106: /* alter_table_clause ::= full_table_name DROP COLUMN column_name */ +{ yylhsminor.yy42 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy42, TSDB_ALTER_TABLE_DROP_COLUMN, &yymsp[0].minor.yy359); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; + break; + case 107: /* alter_table_clause ::= full_table_name MODIFY COLUMN column_name type_name */ +{ yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES, &yymsp[-1].minor.yy359, yymsp[0].minor.yy314); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; + break; + case 108: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ +{ yylhsminor.yy42 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy359, &yymsp[0].minor.yy359); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; break; - case 106: /* alter_table_clause ::= full_table_name RENAME COLUMN column_name column_name */ -{ yylhsminor.yy456 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME, &yymsp[-1].minor.yy537, &yymsp[0].minor.yy537); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; - break; - case 107: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ -{ yylhsminor.yy456 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy537, yymsp[0].minor.yy388); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; - break; - case 108: /* alter_table_clause ::= full_table_name DROP TAG column_name */ -{ yylhsminor.yy456 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy456, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy537); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + case 109: /* alter_table_clause ::= full_table_name ADD TAG column_name type_name */ +{ yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_ADD_TAG, &yymsp[-1].minor.yy359, yymsp[0].minor.yy314); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; + break; + case 110: /* alter_table_clause ::= full_table_name DROP TAG column_name */ +{ yylhsminor.yy42 = createAlterTableDropCol(pCxt, yymsp[-3].minor.yy42, TSDB_ALTER_TABLE_DROP_TAG, &yymsp[0].minor.yy359); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 109: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ -{ yylhsminor.yy456 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy537, yymsp[0].minor.yy388); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; + case 111: /* alter_table_clause ::= full_table_name MODIFY TAG column_name type_name */ +{ yylhsminor.yy42 = createAlterTableAddModifyCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_TAG_BYTES, &yymsp[-1].minor.yy359, yymsp[0].minor.yy314); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; break; - case 110: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ -{ yylhsminor.yy456 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy456, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy537, &yymsp[0].minor.yy537); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; - break; - case 111: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ -{ yylhsminor.yy456 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy456, &yymsp[-2].minor.yy537, yymsp[0].minor.yy456); } - yymsp[-5].minor.yy456 = yylhsminor.yy456; + case 112: /* alter_table_clause ::= full_table_name RENAME TAG column_name column_name */ +{ yylhsminor.yy42 = createAlterTableRenameCol(pCxt, yymsp[-4].minor.yy42, TSDB_ALTER_TABLE_UPDATE_TAG_NAME, &yymsp[-1].minor.yy359, &yymsp[0].minor.yy359); } + yymsp[-4].minor.yy42 = yylhsminor.yy42; + break; + case 113: /* alter_table_clause ::= full_table_name SET TAG column_name NK_EQ literal */ +{ yylhsminor.yy42 = createAlterTableSetTag(pCxt, yymsp[-5].minor.yy42, &yymsp[-2].minor.yy359, yymsp[0].minor.yy42); } + yymsp[-5].minor.yy42 = yylhsminor.yy42; break; - case 113: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ - case 116: /* multi_drop_clause ::= multi_drop_clause drop_table_clause */ yytestcase(yyruleno==116); -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-1].minor.yy632, yymsp[0].minor.yy456); } - yymsp[-1].minor.yy632 = yylhsminor.yy632; + case 115: /* multi_create_clause ::= multi_create_clause create_subtable_clause */ + case 118: /* multi_drop_clause ::= multi_drop_clause drop_table_clause */ yytestcase(yyruleno==118); +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-1].minor.yy244, yymsp[0].minor.yy42); } + yymsp[-1].minor.yy244 = yylhsminor.yy244; break; - case 114: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ -{ yylhsminor.yy456 = createCreateSubTableClause(pCxt, yymsp[-8].minor.yy649, yymsp[-7].minor.yy456, yymsp[-5].minor.yy456, yymsp[-4].minor.yy632, yymsp[-1].minor.yy632); } - yymsp[-8].minor.yy456 = yylhsminor.yy456; + case 116: /* create_subtable_clause ::= not_exists_opt full_table_name USING full_table_name specific_tags_opt TAGS NK_LP literal_list NK_RP */ +{ yylhsminor.yy42 = createCreateSubTableClause(pCxt, yymsp[-8].minor.yy237, yymsp[-7].minor.yy42, yymsp[-5].minor.yy42, yymsp[-4].minor.yy244, yymsp[-1].minor.yy244); } + yymsp[-8].minor.yy42 = yylhsminor.yy42; break; - case 117: /* drop_table_clause ::= exists_opt full_table_name */ -{ yylhsminor.yy456 = createDropTableClause(pCxt, yymsp[-1].minor.yy649, yymsp[0].minor.yy456); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 119: /* drop_table_clause ::= exists_opt full_table_name */ +{ yylhsminor.yy42 = createDropTableClause(pCxt, yymsp[-1].minor.yy237, yymsp[0].minor.yy42); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 118: /* specific_tags_opt ::= */ - case 149: /* tags_def_opt ::= */ yytestcase(yyruleno==149); - case 385: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==385); - case 402: /* group_by_clause_opt ::= */ yytestcase(yyruleno==402); - case 412: /* order_by_clause_opt ::= */ yytestcase(yyruleno==412); -{ yymsp[1].minor.yy632 = NULL; } + case 120: /* specific_tags_opt ::= */ + case 151: /* tags_def_opt ::= */ yytestcase(yyruleno==151); + case 387: /* partition_by_clause_opt ::= */ yytestcase(yyruleno==387); + case 404: /* group_by_clause_opt ::= */ yytestcase(yyruleno==404); + case 414: /* order_by_clause_opt ::= */ yytestcase(yyruleno==414); +{ yymsp[1].minor.yy244 = NULL; } break; - case 119: /* specific_tags_opt ::= NK_LP col_name_list NK_RP */ -{ yymsp[-2].minor.yy632 = yymsp[-1].minor.yy632; } + case 121: /* specific_tags_opt ::= NK_LP col_name_list NK_RP */ +{ yymsp[-2].minor.yy244 = yymsp[-1].minor.yy244; } break; - case 120: /* full_table_name ::= table_name */ -{ yylhsminor.yy456 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy537, NULL); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 122: /* full_table_name ::= table_name */ +{ yylhsminor.yy42 = createRealTableNode(pCxt, NULL, &yymsp[0].minor.yy359, NULL); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 121: /* full_table_name ::= db_name NK_DOT table_name */ -{ yylhsminor.yy456 = createRealTableNode(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy537, NULL); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 123: /* full_table_name ::= db_name NK_DOT table_name */ +{ yylhsminor.yy42 = createRealTableNode(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy359, NULL); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 124: /* column_def ::= column_name type_name */ -{ yylhsminor.yy456 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy537, yymsp[0].minor.yy388, NULL); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 126: /* column_def ::= column_name type_name */ +{ yylhsminor.yy42 = createColumnDefNode(pCxt, &yymsp[-1].minor.yy359, yymsp[0].minor.yy314, NULL); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 125: /* column_def ::= column_name type_name COMMENT NK_STRING */ -{ yylhsminor.yy456 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy537, yymsp[-2].minor.yy388, &yymsp[0].minor.yy0); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + case 127: /* column_def ::= column_name type_name COMMENT NK_STRING */ +{ yylhsminor.yy42 = createColumnDefNode(pCxt, &yymsp[-3].minor.yy359, yymsp[-2].minor.yy314, &yymsp[0].minor.yy0); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 126: /* type_name ::= BOOL */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_BOOL); } + case 128: /* type_name ::= BOOL */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_BOOL); } break; - case 127: /* type_name ::= TINYINT */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_TINYINT); } + case 129: /* type_name ::= TINYINT */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_TINYINT); } break; - case 128: /* type_name ::= SMALLINT */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_SMALLINT); } + case 130: /* type_name ::= SMALLINT */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_SMALLINT); } break; - case 129: /* type_name ::= INT */ - case 130: /* type_name ::= INTEGER */ yytestcase(yyruleno==130); -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_INT); } + case 131: /* type_name ::= INT */ + case 132: /* type_name ::= INTEGER */ yytestcase(yyruleno==132); +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_INT); } break; - case 131: /* type_name ::= BIGINT */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_BIGINT); } + case 133: /* type_name ::= BIGINT */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_BIGINT); } break; - case 132: /* type_name ::= FLOAT */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_FLOAT); } + case 134: /* type_name ::= FLOAT */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_FLOAT); } break; - case 133: /* type_name ::= DOUBLE */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_DOUBLE); } + case 135: /* type_name ::= DOUBLE */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_DOUBLE); } break; - case 134: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ -{ yymsp[-3].minor.yy388 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } + case 136: /* type_name ::= BINARY NK_LP NK_INTEGER NK_RP */ +{ yymsp[-3].minor.yy314 = createVarLenDataType(TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy0); } break; - case 135: /* type_name ::= TIMESTAMP */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } + case 137: /* type_name ::= TIMESTAMP */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_TIMESTAMP); } break; - case 136: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ -{ yymsp[-3].minor.yy388 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } + case 138: /* type_name ::= NCHAR NK_LP NK_INTEGER NK_RP */ +{ yymsp[-3].minor.yy314 = createVarLenDataType(TSDB_DATA_TYPE_NCHAR, &yymsp[-1].minor.yy0); } break; - case 137: /* type_name ::= TINYINT UNSIGNED */ -{ yymsp[-1].minor.yy388 = createDataType(TSDB_DATA_TYPE_UTINYINT); } + case 139: /* type_name ::= TINYINT UNSIGNED */ +{ yymsp[-1].minor.yy314 = createDataType(TSDB_DATA_TYPE_UTINYINT); } break; - case 138: /* type_name ::= SMALLINT UNSIGNED */ -{ yymsp[-1].minor.yy388 = createDataType(TSDB_DATA_TYPE_USMALLINT); } + case 140: /* type_name ::= SMALLINT UNSIGNED */ +{ yymsp[-1].minor.yy314 = createDataType(TSDB_DATA_TYPE_USMALLINT); } break; - case 139: /* type_name ::= INT UNSIGNED */ -{ yymsp[-1].minor.yy388 = createDataType(TSDB_DATA_TYPE_UINT); } + case 141: /* type_name ::= INT UNSIGNED */ +{ yymsp[-1].minor.yy314 = createDataType(TSDB_DATA_TYPE_UINT); } break; - case 140: /* type_name ::= BIGINT UNSIGNED */ -{ yymsp[-1].minor.yy388 = createDataType(TSDB_DATA_TYPE_UBIGINT); } + case 142: /* type_name ::= BIGINT UNSIGNED */ +{ yymsp[-1].minor.yy314 = createDataType(TSDB_DATA_TYPE_UBIGINT); } break; - case 141: /* type_name ::= JSON */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_JSON); } + case 143: /* type_name ::= JSON */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_JSON); } break; - case 142: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ -{ yymsp[-3].minor.yy388 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } + case 144: /* type_name ::= VARCHAR NK_LP NK_INTEGER NK_RP */ +{ yymsp[-3].minor.yy314 = createVarLenDataType(TSDB_DATA_TYPE_VARCHAR, &yymsp[-1].minor.yy0); } break; - case 143: /* type_name ::= MEDIUMBLOB */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } + case 145: /* type_name ::= MEDIUMBLOB */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_MEDIUMBLOB); } break; - case 144: /* type_name ::= BLOB */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_BLOB); } + case 146: /* type_name ::= BLOB */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_BLOB); } break; - case 145: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ -{ yymsp[-3].minor.yy388 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } + case 147: /* type_name ::= VARBINARY NK_LP NK_INTEGER NK_RP */ +{ yymsp[-3].minor.yy314 = createVarLenDataType(TSDB_DATA_TYPE_VARBINARY, &yymsp[-1].minor.yy0); } break; - case 146: /* type_name ::= DECIMAL */ -{ yymsp[0].minor.yy388 = createDataType(TSDB_DATA_TYPE_DECIMAL); } + case 148: /* type_name ::= DECIMAL */ +{ yymsp[0].minor.yy314 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 147: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ -{ yymsp[-3].minor.yy388 = createDataType(TSDB_DATA_TYPE_DECIMAL); } + case 149: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_RP */ +{ yymsp[-3].minor.yy314 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 148: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ -{ yymsp[-5].minor.yy388 = createDataType(TSDB_DATA_TYPE_DECIMAL); } + case 150: /* type_name ::= DECIMAL NK_LP NK_INTEGER NK_COMMA NK_INTEGER NK_RP */ +{ yymsp[-5].minor.yy314 = createDataType(TSDB_DATA_TYPE_DECIMAL); } break; - case 150: /* tags_def_opt ::= tags_def */ - case 321: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==321); - case 376: /* select_list ::= select_sublist */ yytestcase(yyruleno==376); -{ yylhsminor.yy632 = yymsp[0].minor.yy632; } - yymsp[0].minor.yy632 = yylhsminor.yy632; + case 152: /* tags_def_opt ::= tags_def */ + case 323: /* star_func_para_list ::= other_para_list */ yytestcase(yyruleno==323); + case 378: /* select_list ::= select_sublist */ yytestcase(yyruleno==378); +{ yylhsminor.yy244 = yymsp[0].minor.yy244; } + yymsp[0].minor.yy244 = yylhsminor.yy244; break; - case 151: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ -{ yymsp[-3].minor.yy632 = yymsp[-1].minor.yy632; } + case 153: /* tags_def ::= TAGS NK_LP column_def_list NK_RP */ +{ yymsp[-3].minor.yy244 = yymsp[-1].minor.yy244; } break; - case 152: /* table_options ::= */ -{ yymsp[1].minor.yy456 = createTableOptions(pCxt); } + case 154: /* table_options ::= */ +{ yymsp[1].minor.yy42 = createTableOptions(pCxt); } break; - case 153: /* table_options ::= table_options COMMENT NK_STRING */ -{ ((STableOptions*)yymsp[-2].minor.yy456)->pComments = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 155: /* table_options ::= table_options COMMENT NK_STRING */ +{ ((STableOptions*)yymsp[-2].minor.yy42)->pComments = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 154: /* table_options ::= table_options KEEP integer_list */ - case 155: /* table_options ::= table_options KEEP variable_list */ yytestcase(yyruleno==155); -{ ((STableOptions*)yymsp[-2].minor.yy456)->pKeep = yymsp[0].minor.yy632; yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 156: /* table_options ::= table_options KEEP integer_list */ + case 157: /* table_options ::= table_options KEEP variable_list */ yytestcase(yyruleno==157); +{ ((STableOptions*)yymsp[-2].minor.yy42)->pKeep = yymsp[0].minor.yy244; yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 156: /* table_options ::= table_options TTL NK_INTEGER */ -{ ((STableOptions*)yymsp[-2].minor.yy456)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 158: /* table_options ::= table_options TTL NK_INTEGER */ +{ ((STableOptions*)yymsp[-2].minor.yy42)->pTtl = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 157: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ -{ ((STableOptions*)yymsp[-4].minor.yy456)->pSma = yymsp[-1].minor.yy632; yylhsminor.yy456 = yymsp[-4].minor.yy456; } - yymsp[-4].minor.yy456 = yylhsminor.yy456; + case 159: /* table_options ::= table_options SMA NK_LP col_name_list NK_RP */ +{ ((STableOptions*)yymsp[-4].minor.yy42)->pSma = yymsp[-1].minor.yy244; yylhsminor.yy42 = yymsp[-4].minor.yy42; } + yymsp[-4].minor.yy42 = yylhsminor.yy42; break; - case 158: /* table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ -{ ((STableOptions*)yymsp[-4].minor.yy456)->pFuncs = yymsp[-1].minor.yy632; yylhsminor.yy456 = yymsp[-4].minor.yy456; } - yymsp[-4].minor.yy456 = yylhsminor.yy456; + case 160: /* table_options ::= table_options ROLLUP NK_LP func_name_list NK_RP */ +{ ((STableOptions*)yymsp[-4].minor.yy42)->pFuncs = yymsp[-1].minor.yy244; yylhsminor.yy42 = yymsp[-4].minor.yy42; } + yymsp[-4].minor.yy42 = yylhsminor.yy42; break; - case 159: /* table_options ::= table_options FILE_FACTOR NK_FLOAT */ -{ ((STableOptions*)yymsp[-2].minor.yy456)->pFilesFactor = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 161: /* table_options ::= table_options FILE_FACTOR NK_FLOAT */ +{ ((STableOptions*)yymsp[-2].minor.yy42)->pFilesFactor = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 160: /* table_options ::= table_options DELAY NK_INTEGER */ -{ ((STableOptions*)yymsp[-2].minor.yy456)->pDelay = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 162: /* table_options ::= table_options DELAY NK_INTEGER */ +{ ((STableOptions*)yymsp[-2].minor.yy42)->pDelay = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 161: /* alter_table_options ::= alter_table_option */ -{ yylhsminor.yy456 = createTableOptions(pCxt); yylhsminor.yy456 = setTableAlterOption(pCxt, yylhsminor.yy456, &yymsp[0].minor.yy29); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 163: /* alter_table_options ::= alter_table_option */ +{ yylhsminor.yy42 = createTableOptions(pCxt); yylhsminor.yy42 = setTableAlterOption(pCxt, yylhsminor.yy42, &yymsp[0].minor.yy325); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 162: /* alter_table_options ::= alter_table_options alter_table_option */ -{ yylhsminor.yy456 = setTableAlterOption(pCxt, yymsp[-1].minor.yy456, &yymsp[0].minor.yy29); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 164: /* alter_table_options ::= alter_table_options alter_table_option */ +{ yylhsminor.yy42 = setTableAlterOption(pCxt, yymsp[-1].minor.yy42, &yymsp[0].minor.yy325); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 163: /* alter_table_option ::= COMMENT NK_STRING */ -{ yymsp[-1].minor.yy29.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } + case 165: /* alter_table_option ::= COMMENT NK_STRING */ +{ yymsp[-1].minor.yy325.type = TABLE_OPTION_COMMENT; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; - case 164: /* alter_table_option ::= KEEP integer_list */ - case 165: /* alter_table_option ::= KEEP variable_list */ yytestcase(yyruleno==165); -{ yymsp[-1].minor.yy29.type = TABLE_OPTION_KEEP; yymsp[-1].minor.yy29.pList = yymsp[0].minor.yy632; } + case 166: /* alter_table_option ::= KEEP integer_list */ + case 167: /* alter_table_option ::= KEEP variable_list */ yytestcase(yyruleno==167); +{ yymsp[-1].minor.yy325.type = TABLE_OPTION_KEEP; yymsp[-1].minor.yy325.pList = yymsp[0].minor.yy244; } break; - case 166: /* alter_table_option ::= TTL NK_INTEGER */ -{ yymsp[-1].minor.yy29.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy29.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + case 168: /* alter_table_option ::= TTL NK_INTEGER */ +{ yymsp[-1].minor.yy325.type = TABLE_OPTION_TTL; yymsp[-1].minor.yy325.pVal = (SValueNode*)createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } break; - case 169: /* col_name ::= column_name */ -{ yylhsminor.yy456 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy537); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 171: /* col_name ::= column_name */ +{ yylhsminor.yy42 = createColumnNode(pCxt, NULL, &yymsp[0].minor.yy359); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 170: /* cmd ::= SHOW DNODES */ + case 172: /* cmd ::= SHOW DNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DNODES_STMT, NULL, NULL); } break; - case 171: /* cmd ::= SHOW USERS */ + case 173: /* cmd ::= SHOW USERS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_USERS_STMT, NULL, NULL); } break; - case 172: /* cmd ::= SHOW DATABASES */ + case 174: /* cmd ::= SHOW DATABASES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_DATABASES_STMT, NULL, NULL); } break; - case 173: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ -{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy456, yymsp[0].minor.yy456); } + case 175: /* cmd ::= SHOW db_name_cond_opt TABLES like_pattern_opt */ +{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TABLES_STMT, yymsp[-2].minor.yy42, yymsp[0].minor.yy42); } break; - case 174: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ -{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy456, yymsp[0].minor.yy456); } + case 176: /* cmd ::= SHOW db_name_cond_opt STABLES like_pattern_opt */ +{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STABLES_STMT, yymsp[-2].minor.yy42, yymsp[0].minor.yy42); } break; - case 175: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ -{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy456, NULL); } + case 177: /* cmd ::= SHOW db_name_cond_opt VGROUPS */ +{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VGROUPS_STMT, yymsp[-1].minor.yy42, NULL); } break; - case 176: /* cmd ::= SHOW MNODES */ + case 178: /* cmd ::= SHOW MNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MNODES_STMT, NULL, NULL); } break; - case 177: /* cmd ::= SHOW MODULES */ + case 179: /* cmd ::= SHOW MODULES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_MODULES_STMT, NULL, NULL); } break; - case 178: /* cmd ::= SHOW QNODES */ + case 180: /* cmd ::= SHOW QNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QNODES_STMT, NULL, NULL); } break; - case 179: /* cmd ::= SHOW FUNCTIONS */ + case 181: /* cmd ::= SHOW FUNCTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_FUNCTIONS_STMT, NULL, NULL); } break; - case 180: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ -{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[-1].minor.yy456, yymsp[0].minor.yy456); } + case 182: /* cmd ::= SHOW INDEXES FROM table_name_cond from_db_opt */ +{ pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_INDEXES_STMT, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; - case 181: /* cmd ::= SHOW STREAMS */ + case 183: /* cmd ::= SHOW STREAMS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_STREAMS_STMT, NULL, NULL); } break; - case 182: /* cmd ::= SHOW ACCOUNTS */ + case 184: /* cmd ::= SHOW ACCOUNTS */ { pCxt->valid = false; generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_EXPRIE_STATEMENT); } break; - case 183: /* cmd ::= SHOW APPS */ + case 185: /* cmd ::= SHOW APPS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_APPS_STMT, NULL, NULL); } break; - case 184: /* cmd ::= SHOW CONNECTIONS */ + case 186: /* cmd ::= SHOW CONNECTIONS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_CONNECTIONS_STMT, NULL, NULL); } break; - case 185: /* cmd ::= SHOW LICENCE */ - case 186: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==186); + case 187: /* cmd ::= SHOW LICENCE */ + case 188: /* cmd ::= SHOW GRANTS */ yytestcase(yyruleno==188); { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_LICENCE_STMT, NULL, NULL); } break; - case 187: /* cmd ::= SHOW CREATE DATABASE db_name */ -{ pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy537); } + case 189: /* cmd ::= SHOW CREATE DATABASE db_name */ +{ pCxt->pRootNode = createShowCreateDatabaseStmt(pCxt, &yymsp[0].minor.yy359); } break; - case 188: /* cmd ::= SHOW CREATE TABLE full_table_name */ -{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy456); } + case 190: /* cmd ::= SHOW CREATE TABLE full_table_name */ +{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_TABLE_STMT, yymsp[0].minor.yy42); } break; - case 189: /* cmd ::= SHOW CREATE STABLE full_table_name */ -{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy456); } + case 191: /* cmd ::= SHOW CREATE STABLE full_table_name */ +{ pCxt->pRootNode = createShowCreateTableStmt(pCxt, QUERY_NODE_SHOW_CREATE_STABLE_STMT, yymsp[0].minor.yy42); } break; - case 190: /* cmd ::= SHOW QUERIES */ + case 192: /* cmd ::= SHOW QUERIES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_QUERIES_STMT, NULL, NULL); } break; - case 191: /* cmd ::= SHOW SCORES */ + case 193: /* cmd ::= SHOW SCORES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SCORES_STMT, NULL, NULL); } break; - case 192: /* cmd ::= SHOW TOPICS */ + case 194: /* cmd ::= SHOW TOPICS */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_TOPICS_STMT, NULL, NULL); } break; - case 193: /* cmd ::= SHOW VARIABLES */ + case 195: /* cmd ::= SHOW VARIABLES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_VARIABLE_STMT, NULL, NULL); } break; - case 194: /* cmd ::= SHOW BNODES */ + case 196: /* cmd ::= SHOW BNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_BNODES_STMT, NULL, NULL); } break; - case 195: /* cmd ::= SHOW SNODES */ + case 197: /* cmd ::= SHOW SNODES */ { pCxt->pRootNode = createShowStmt(pCxt, QUERY_NODE_SHOW_SNODES_STMT, NULL, NULL); } break; - case 196: /* db_name_cond_opt ::= */ - case 201: /* from_db_opt ::= */ yytestcase(yyruleno==201); -{ yymsp[1].minor.yy456 = createDefaultDatabaseCondValue(pCxt); } + case 198: /* db_name_cond_opt ::= */ + case 203: /* from_db_opt ::= */ yytestcase(yyruleno==203); +{ yymsp[1].minor.yy42 = createDefaultDatabaseCondValue(pCxt); } break; - case 197: /* db_name_cond_opt ::= db_name NK_DOT */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy537); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 199: /* db_name_cond_opt ::= db_name NK_DOT */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[-1].minor.yy359); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 198: /* like_pattern_opt ::= */ - case 209: /* index_options ::= */ yytestcase(yyruleno==209); - case 236: /* into_opt ::= */ yytestcase(yyruleno==236); - case 383: /* where_clause_opt ::= */ yytestcase(yyruleno==383); - case 387: /* twindow_clause_opt ::= */ yytestcase(yyruleno==387); - case 392: /* sliding_opt ::= */ yytestcase(yyruleno==392); - case 394: /* fill_opt ::= */ yytestcase(yyruleno==394); - case 406: /* having_clause_opt ::= */ yytestcase(yyruleno==406); - case 414: /* slimit_clause_opt ::= */ yytestcase(yyruleno==414); - case 418: /* limit_clause_opt ::= */ yytestcase(yyruleno==418); -{ yymsp[1].minor.yy456 = NULL; } + case 200: /* like_pattern_opt ::= */ + case 211: /* index_options ::= */ yytestcase(yyruleno==211); + case 238: /* into_opt ::= */ yytestcase(yyruleno==238); + case 385: /* where_clause_opt ::= */ yytestcase(yyruleno==385); + case 389: /* twindow_clause_opt ::= */ yytestcase(yyruleno==389); + case 394: /* sliding_opt ::= */ yytestcase(yyruleno==394); + case 396: /* fill_opt ::= */ yytestcase(yyruleno==396); + case 408: /* having_clause_opt ::= */ yytestcase(yyruleno==408); + case 416: /* slimit_clause_opt ::= */ yytestcase(yyruleno==416); + case 420: /* limit_clause_opt ::= */ yytestcase(yyruleno==420); +{ yymsp[1].minor.yy42 = NULL; } break; - case 199: /* like_pattern_opt ::= LIKE NK_STRING */ -{ yymsp[-1].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } + case 201: /* like_pattern_opt ::= LIKE NK_STRING */ +{ yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } break; - case 200: /* table_name_cond ::= table_name */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy537); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 202: /* table_name_cond ::= table_name */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy359); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 202: /* from_db_opt ::= FROM db_name */ -{ yymsp[-1].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy537); } + case 204: /* from_db_opt ::= FROM db_name */ +{ yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy359); } break; - case 205: /* func_name ::= function_name */ -{ yylhsminor.yy456 = createFunctionNode(pCxt, &yymsp[0].minor.yy537, NULL); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 207: /* func_name ::= function_name */ +{ yylhsminor.yy42 = createFunctionNode(pCxt, &yymsp[0].minor.yy359, NULL); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 206: /* cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ -{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy649, &yymsp[-3].minor.yy537, &yymsp[-1].minor.yy537, NULL, yymsp[0].minor.yy456); } + case 208: /* cmd ::= CREATE SMA INDEX not_exists_opt index_name ON table_name index_options */ +{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_SMA, yymsp[-4].minor.yy237, &yymsp[-3].minor.yy359, &yymsp[-1].minor.yy359, NULL, yymsp[0].minor.yy42); } break; - case 207: /* cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ -{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_FULLTEXT, yymsp[-6].minor.yy649, &yymsp[-5].minor.yy537, &yymsp[-3].minor.yy537, yymsp[-1].minor.yy632, NULL); } + case 209: /* cmd ::= CREATE FULLTEXT INDEX not_exists_opt index_name ON table_name NK_LP col_name_list NK_RP */ +{ pCxt->pRootNode = createCreateIndexStmt(pCxt, INDEX_TYPE_FULLTEXT, yymsp[-6].minor.yy237, &yymsp[-5].minor.yy359, &yymsp[-3].minor.yy359, yymsp[-1].minor.yy244, NULL); } break; - case 208: /* cmd ::= DROP INDEX exists_opt index_name ON table_name */ -{ pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-3].minor.yy649, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy537); } + case 210: /* cmd ::= DROP INDEX exists_opt index_name ON table_name */ +{ pCxt->pRootNode = createDropIndexStmt(pCxt, yymsp[-3].minor.yy237, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy359); } break; - case 210: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ -{ yymsp[-8].minor.yy456 = createIndexOption(pCxt, yymsp[-6].minor.yy632, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), NULL, yymsp[0].minor.yy456); } + case 212: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_RP sliding_opt */ +{ yymsp[-8].minor.yy42 = createIndexOption(pCxt, yymsp[-6].minor.yy244, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), NULL, yymsp[0].minor.yy42); } break; - case 211: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ -{ yymsp[-10].minor.yy456 = createIndexOption(pCxt, yymsp[-8].minor.yy632, releaseRawExprNode(pCxt, yymsp[-4].minor.yy456), releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), yymsp[0].minor.yy456); } + case 213: /* index_options ::= FUNCTION NK_LP func_list NK_RP INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt */ +{ yymsp[-10].minor.yy42 = createIndexOption(pCxt, yymsp[-8].minor.yy244, releaseRawExprNode(pCxt, yymsp[-4].minor.yy42), releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), yymsp[0].minor.yy42); } break; - case 214: /* func ::= function_name NK_LP expression_list NK_RP */ -{ yylhsminor.yy456 = createFunctionNode(pCxt, &yymsp[-3].minor.yy537, yymsp[-1].minor.yy632); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + case 216: /* func ::= function_name NK_LP expression_list NK_RP */ +{ yylhsminor.yy42 = createFunctionNode(pCxt, &yymsp[-3].minor.yy359, yymsp[-1].minor.yy244); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 215: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ -{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy649, &yymsp[-2].minor.yy537, yymsp[0].minor.yy456, NULL); } + case 217: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS query_expression */ +{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy237, &yymsp[-2].minor.yy359, yymsp[0].minor.yy42, NULL); } break; - case 216: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ -{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy649, &yymsp[-2].minor.yy537, NULL, &yymsp[0].minor.yy537); } + case 218: /* cmd ::= CREATE TOPIC not_exists_opt topic_name AS db_name */ +{ pCxt->pRootNode = createCreateTopicStmt(pCxt, yymsp[-3].minor.yy237, &yymsp[-2].minor.yy359, NULL, &yymsp[0].minor.yy359); } break; - case 217: /* cmd ::= DROP TOPIC exists_opt topic_name */ -{ pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy649, &yymsp[0].minor.yy537); } + case 219: /* cmd ::= DROP TOPIC exists_opt topic_name */ +{ pCxt->pRootNode = createDropTopicStmt(pCxt, yymsp[-1].minor.yy237, &yymsp[0].minor.yy359); } break; - case 218: /* cmd ::= DESC full_table_name */ - case 219: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==219); -{ pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy456); } + case 220: /* cmd ::= DESC full_table_name */ + case 221: /* cmd ::= DESCRIBE full_table_name */ yytestcase(yyruleno==221); +{ pCxt->pRootNode = createDescribeStmt(pCxt, yymsp[0].minor.yy42); } break; - case 220: /* cmd ::= RESET QUERY CACHE */ + case 222: /* cmd ::= RESET QUERY CACHE */ { pCxt->pRootNode = createResetQueryCacheStmt(pCxt); } break; - case 221: /* cmd ::= EXPLAIN analyze_opt explain_options query_expression */ -{ pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy649, yymsp[-1].minor.yy456, yymsp[0].minor.yy456); } + case 223: /* cmd ::= EXPLAIN analyze_opt explain_options query_expression */ +{ pCxt->pRootNode = createExplainStmt(pCxt, yymsp[-2].minor.yy237, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; - case 223: /* analyze_opt ::= ANALYZE */ - case 231: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==231); - case 373: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==373); -{ yymsp[0].minor.yy649 = true; } + case 225: /* analyze_opt ::= ANALYZE */ + case 233: /* agg_func_opt ::= AGGREGATE */ yytestcase(yyruleno==233); + case 375: /* set_quantifier_opt ::= DISTINCT */ yytestcase(yyruleno==375); +{ yymsp[0].minor.yy237 = true; } break; - case 224: /* explain_options ::= */ -{ yymsp[1].minor.yy456 = createDefaultExplainOptions(pCxt); } + case 226: /* explain_options ::= */ +{ yymsp[1].minor.yy42 = createDefaultExplainOptions(pCxt); } break; - case 225: /* explain_options ::= explain_options VERBOSE NK_BOOL */ -{ yylhsminor.yy456 = setExplainVerbose(pCxt, yymsp[-2].minor.yy456, &yymsp[0].minor.yy0); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 227: /* explain_options ::= explain_options VERBOSE NK_BOOL */ +{ yylhsminor.yy42 = setExplainVerbose(pCxt, yymsp[-2].minor.yy42, &yymsp[0].minor.yy0); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 226: /* explain_options ::= explain_options RATIO NK_FLOAT */ -{ yylhsminor.yy456 = setExplainRatio(pCxt, yymsp[-2].minor.yy456, &yymsp[0].minor.yy0); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 228: /* explain_options ::= explain_options RATIO NK_FLOAT */ +{ yylhsminor.yy42 = setExplainRatio(pCxt, yymsp[-2].minor.yy42, &yymsp[0].minor.yy0); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 227: /* cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ -{ pCxt->pRootNode = createCompactStmt(pCxt, yymsp[-1].minor.yy632); } + case 229: /* cmd ::= COMPACT VNODES IN NK_LP integer_list NK_RP */ +{ pCxt->pRootNode = createCompactStmt(pCxt, yymsp[-1].minor.yy244); } break; - case 228: /* cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ -{ pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-7].minor.yy649, &yymsp[-5].minor.yy537, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy388, yymsp[0].minor.yy652); } + case 230: /* cmd ::= CREATE agg_func_opt FUNCTION function_name AS NK_STRING OUTPUTTYPE type_name bufsize_opt */ +{ pCxt->pRootNode = createCreateFunctionStmt(pCxt, yymsp[-7].minor.yy237, &yymsp[-5].minor.yy359, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy314, yymsp[0].minor.yy240); } break; - case 229: /* cmd ::= DROP FUNCTION function_name */ -{ pCxt->pRootNode = createDropFunctionStmt(pCxt, &yymsp[0].minor.yy537); } + case 231: /* cmd ::= DROP FUNCTION function_name */ +{ pCxt->pRootNode = createDropFunctionStmt(pCxt, &yymsp[0].minor.yy359); } break; - case 232: /* bufsize_opt ::= */ -{ yymsp[1].minor.yy652 = 0; } + case 234: /* bufsize_opt ::= */ +{ yymsp[1].minor.yy240 = 0; } break; - case 233: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ -{ yymsp[-1].minor.yy652 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + case 235: /* bufsize_opt ::= BUFSIZE NK_INTEGER */ +{ yymsp[-1].minor.yy240 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 234: /* cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression */ -{ pCxt->pRootNode = createCreateStreamStmt(pCxt, yymsp[-5].minor.yy649, &yymsp[-4].minor.yy537, yymsp[-2].minor.yy456, yymsp[-3].minor.yy456, yymsp[0].minor.yy456); } + case 236: /* cmd ::= CREATE STREAM not_exists_opt stream_name stream_options into_opt AS query_expression */ +{ pCxt->pRootNode = createCreateStreamStmt(pCxt, yymsp[-5].minor.yy237, &yymsp[-4].minor.yy359, yymsp[-2].minor.yy42, yymsp[-3].minor.yy42, yymsp[0].minor.yy42); } break; - case 235: /* cmd ::= DROP STREAM exists_opt stream_name */ -{ pCxt->pRootNode = createDropStreamStmt(pCxt, yymsp[-1].minor.yy649, &yymsp[0].minor.yy537); } + case 237: /* cmd ::= DROP STREAM exists_opt stream_name */ +{ pCxt->pRootNode = createDropStreamStmt(pCxt, yymsp[-1].minor.yy237, &yymsp[0].minor.yy359); } break; - case 237: /* into_opt ::= INTO full_table_name */ - case 354: /* from_clause ::= FROM table_reference_list */ yytestcase(yyruleno==354); - case 384: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==384); - case 407: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==407); -{ yymsp[-1].minor.yy456 = yymsp[0].minor.yy456; } + case 239: /* into_opt ::= INTO full_table_name */ + case 356: /* from_clause ::= FROM table_reference_list */ yytestcase(yyruleno==356); + case 386: /* where_clause_opt ::= WHERE search_condition */ yytestcase(yyruleno==386); + case 409: /* having_clause_opt ::= HAVING search_condition */ yytestcase(yyruleno==409); +{ yymsp[-1].minor.yy42 = yymsp[0].minor.yy42; } break; - case 238: /* stream_options ::= */ -{ yymsp[1].minor.yy456 = createStreamOptions(pCxt); } + case 240: /* stream_options ::= */ +{ yymsp[1].minor.yy42 = createStreamOptions(pCxt); } break; - case 239: /* stream_options ::= stream_options TRIGGER AT_ONCE */ -{ ((SStreamOptions*)yymsp[-2].minor.yy456)->triggerType = STREAM_TRIGGER_AT_ONCE; yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 241: /* stream_options ::= stream_options TRIGGER AT_ONCE */ +{ ((SStreamOptions*)yymsp[-2].minor.yy42)->triggerType = STREAM_TRIGGER_AT_ONCE; yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 240: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ -{ ((SStreamOptions*)yymsp[-2].minor.yy456)->triggerType = STREAM_TRIGGER_WINDOW_CLOSE; yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 242: /* stream_options ::= stream_options TRIGGER WINDOW_CLOSE */ +{ ((SStreamOptions*)yymsp[-2].minor.yy42)->triggerType = STREAM_TRIGGER_WINDOW_CLOSE; yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 241: /* stream_options ::= stream_options WATERMARK duration_literal */ -{ ((SStreamOptions*)yymsp[-2].minor.yy456)->pWatermark = releaseRawExprNode(pCxt, yymsp[0].minor.yy456); yylhsminor.yy456 = yymsp[-2].minor.yy456; } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 243: /* stream_options ::= stream_options WATERMARK duration_literal */ +{ ((SStreamOptions*)yymsp[-2].minor.yy42)->pWatermark = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); yylhsminor.yy42 = yymsp[-2].minor.yy42; } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 242: /* cmd ::= KILL CONNECTION NK_INTEGER */ + case 244: /* cmd ::= KILL CONNECTION NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_CONNECTION_STMT, &yymsp[0].minor.yy0); } break; - case 243: /* cmd ::= KILL QUERY NK_INTEGER */ + case 245: /* cmd ::= KILL QUERY NK_INTEGER */ { pCxt->pRootNode = createKillStmt(pCxt, QUERY_NODE_KILL_QUERY_STMT, &yymsp[0].minor.yy0); } break; - case 244: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ + case 246: /* cmd ::= MERGE VGROUP NK_INTEGER NK_INTEGER */ { pCxt->pRootNode = createMergeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0); } break; - case 245: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ -{ pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy632); } + case 247: /* cmd ::= REDISTRIBUTE VGROUP NK_INTEGER dnode_list */ +{ pCxt->pRootNode = createRedistributeVgroupStmt(pCxt, &yymsp[-1].minor.yy0, yymsp[0].minor.yy244); } break; - case 246: /* cmd ::= SPLIT VGROUP NK_INTEGER */ + case 248: /* cmd ::= SPLIT VGROUP NK_INTEGER */ { pCxt->pRootNode = createSplitVgroupStmt(pCxt, &yymsp[0].minor.yy0); } break; - case 247: /* dnode_list ::= DNODE NK_INTEGER */ -{ yymsp[-1].minor.yy632 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } - break; - case 249: /* cmd ::= SYNCDB db_name REPLICA */ -{ pCxt->pRootNode = createSyncdbStmt(pCxt, &yymsp[-1].minor.yy537); } - break; - case 251: /* literal ::= NK_INTEGER */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 252: /* literal ::= NK_FLOAT */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 253: /* literal ::= NK_STRING */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 254: /* literal ::= NK_BOOL */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 255: /* literal ::= TIMESTAMP NK_STRING */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; - break; - case 256: /* literal ::= duration_literal */ - case 266: /* signed_literal ::= signed */ yytestcase(yyruleno==266); - case 284: /* expression ::= literal */ yytestcase(yyruleno==284); - case 285: /* expression ::= pseudo_column */ yytestcase(yyruleno==285); - case 286: /* expression ::= column_reference */ yytestcase(yyruleno==286); - case 287: /* expression ::= function_expression */ yytestcase(yyruleno==287); - case 288: /* expression ::= subquery */ yytestcase(yyruleno==288); - case 346: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==346); - case 350: /* boolean_primary ::= predicate */ yytestcase(yyruleno==350); - case 352: /* common_expression ::= expression */ yytestcase(yyruleno==352); - case 353: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==353); - case 355: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==355); - case 357: /* table_reference ::= table_primary */ yytestcase(yyruleno==357); - case 358: /* table_reference ::= joined_table */ yytestcase(yyruleno==358); - case 362: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==362); - case 409: /* query_expression_body ::= query_primary */ yytestcase(yyruleno==409); - case 411: /* query_primary ::= query_specification */ yytestcase(yyruleno==411); -{ yylhsminor.yy456 = yymsp[0].minor.yy456; } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 257: /* literal ::= NULL */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 258: /* literal ::= NK_QUESTION */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 259: /* duration_literal ::= NK_VARIABLE */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 260: /* signed ::= NK_INTEGER */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 261: /* signed ::= NK_PLUS NK_INTEGER */ -{ yymsp[-1].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } - break; - case 262: /* signed ::= NK_MINUS NK_INTEGER */ + case 249: /* dnode_list ::= DNODE NK_INTEGER */ +{ yymsp[-1].minor.yy244 = createNodeList(pCxt, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } + break; + case 251: /* cmd ::= SYNCDB db_name REPLICA */ +{ pCxt->pRootNode = createSyncdbStmt(pCxt, &yymsp[-1].minor.yy359); } + break; + case 253: /* literal ::= NK_INTEGER */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 254: /* literal ::= NK_FLOAT */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 255: /* literal ::= NK_STRING */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 256: /* literal ::= NK_BOOL */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 257: /* literal ::= TIMESTAMP NK_STRING */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0)); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; + break; + case 258: /* literal ::= duration_literal */ + case 268: /* signed_literal ::= signed */ yytestcase(yyruleno==268); + case 286: /* expression ::= literal */ yytestcase(yyruleno==286); + case 287: /* expression ::= pseudo_column */ yytestcase(yyruleno==287); + case 288: /* expression ::= column_reference */ yytestcase(yyruleno==288); + case 289: /* expression ::= function_expression */ yytestcase(yyruleno==289); + case 290: /* expression ::= subquery */ yytestcase(yyruleno==290); + case 348: /* boolean_value_expression ::= boolean_primary */ yytestcase(yyruleno==348); + case 352: /* boolean_primary ::= predicate */ yytestcase(yyruleno==352); + case 354: /* common_expression ::= expression */ yytestcase(yyruleno==354); + case 355: /* common_expression ::= boolean_value_expression */ yytestcase(yyruleno==355); + case 357: /* table_reference_list ::= table_reference */ yytestcase(yyruleno==357); + case 359: /* table_reference ::= table_primary */ yytestcase(yyruleno==359); + case 360: /* table_reference ::= joined_table */ yytestcase(yyruleno==360); + case 364: /* table_primary ::= parenthesized_joined_table */ yytestcase(yyruleno==364); + case 411: /* query_expression_body ::= query_primary */ yytestcase(yyruleno==411); + case 413: /* query_primary ::= query_specification */ yytestcase(yyruleno==413); +{ yylhsminor.yy42 = yymsp[0].minor.yy42; } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 259: /* literal ::= NULL */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createValueNode(pCxt, TSDB_DATA_TYPE_NULL, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 260: /* literal ::= NK_QUESTION */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createPlaceholderValueNode(pCxt, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 261: /* duration_literal ::= NK_VARIABLE */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createDurationValueNode(pCxt, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 262: /* signed ::= NK_INTEGER */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 263: /* signed ::= NK_PLUS NK_INTEGER */ +{ yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &yymsp[0].minor.yy0); } + break; + case 264: /* signed ::= NK_MINUS NK_INTEGER */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; - yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t); + yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BIGINT, &t); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 263: /* signed ::= NK_FLOAT */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 265: /* signed ::= NK_FLOAT */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 264: /* signed ::= NK_PLUS NK_FLOAT */ -{ yymsp[-1].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } + case 266: /* signed ::= NK_PLUS NK_FLOAT */ +{ yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &yymsp[0].minor.yy0); } break; - case 265: /* signed ::= NK_MINUS NK_FLOAT */ + case 267: /* signed ::= NK_MINUS NK_FLOAT */ { SToken t = yymsp[-1].minor.yy0; t.n = (yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z; - yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t); + yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_DOUBLE, &t); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 267: /* signed_literal ::= NK_STRING */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 269: /* signed_literal ::= NK_STRING */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 268: /* signed_literal ::= NK_BOOL */ -{ yylhsminor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 270: /* signed_literal ::= NK_BOOL */ +{ yylhsminor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_BOOL, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 269: /* signed_literal ::= TIMESTAMP NK_STRING */ -{ yymsp[-1].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } + case 271: /* signed_literal ::= TIMESTAMP NK_STRING */ +{ yymsp[-1].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_TIMESTAMP, &yymsp[0].minor.yy0); } break; - case 270: /* signed_literal ::= duration_literal */ - case 324: /* star_func_para ::= expression */ yytestcase(yyruleno==324); - case 379: /* select_item ::= common_expression */ yytestcase(yyruleno==379); - case 423: /* search_condition ::= common_expression */ yytestcase(yyruleno==423); -{ yylhsminor.yy456 = releaseRawExprNode(pCxt, yymsp[0].minor.yy456); } - yymsp[0].minor.yy456 = yylhsminor.yy456; + case 272: /* signed_literal ::= duration_literal */ + case 326: /* star_func_para ::= expression */ yytestcase(yyruleno==326); + case 381: /* select_item ::= common_expression */ yytestcase(yyruleno==381); + case 425: /* search_condition ::= common_expression */ yytestcase(yyruleno==425); +{ yylhsminor.yy42 = releaseRawExprNode(pCxt, yymsp[0].minor.yy42); } + yymsp[0].minor.yy42 = yylhsminor.yy42; break; - case 271: /* signed_literal ::= NULL */ -{ yymsp[0].minor.yy456 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL); } + case 273: /* signed_literal ::= NULL */ +{ yymsp[0].minor.yy42 = createValueNode(pCxt, TSDB_DATA_TYPE_NULL, NULL); } break; - case 289: /* expression ::= NK_LP expression NK_RP */ - case 351: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==351); -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy456)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 291: /* expression ::= NK_LP expression NK_RP */ + case 353: /* boolean_primary ::= NK_LP boolean_value_expression NK_RP */ yytestcase(yyruleno==353); +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 290: /* expression ::= NK_PLUS expression */ + case 292: /* expression ::= NK_PLUS expression */ { - SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy456)); + SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 291: /* expression ::= NK_MINUS expression */ + case 293: /* expression ::= NK_MINUS expression */ { - SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy456), NULL)); + SToken t = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &t, createOperatorNode(pCxt, OP_TYPE_MINUS, releaseRawExprNode(pCxt, yymsp[0].minor.yy42), NULL)); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 292: /* expression ::= expression NK_PLUS expression */ + case 294: /* expression ::= expression NK_PLUS expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_ADD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 293: /* expression ::= expression NK_MINUS expression */ + case 295: /* expression ::= expression NK_MINUS expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_SUB, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 294: /* expression ::= expression NK_STAR expression */ + case 296: /* expression ::= expression NK_STAR expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MULTI, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 295: /* expression ::= expression NK_SLASH expression */ + case 297: /* expression ::= expression NK_SLASH expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_DIV, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 296: /* expression ::= expression NK_REM expression */ + case 298: /* expression ::= expression NK_REM expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MOD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, OP_TYPE_MOD, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 297: /* expression ::= column_reference NK_ARROW NK_STRING */ + case 299: /* expression ::= column_reference NK_ARROW NK_STRING */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_JSON_GET_VALUE, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_JSON_GET_VALUE, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), createValueNode(pCxt, TSDB_DATA_TYPE_BINARY, &yymsp[0].minor.yy0))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 298: /* expression_list ::= expression */ -{ yylhsminor.yy632 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy456)); } - yymsp[0].minor.yy632 = yylhsminor.yy632; - break; - case 299: /* expression_list ::= expression_list NK_COMMA expression */ -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-2].minor.yy632, releaseRawExprNode(pCxt, yymsp[0].minor.yy456)); } - yymsp[-2].minor.yy632 = yylhsminor.yy632; - break; - case 300: /* column_reference ::= column_name */ -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy537, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy537)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 301: /* column_reference ::= table_name NK_DOT column_name */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy537, createColumnNode(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy537)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 302: /* pseudo_column ::= ROWTS */ - case 303: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==303); - case 304: /* pseudo_column ::= QSTARTTS */ yytestcase(yyruleno==304); - case 305: /* pseudo_column ::= QENDTS */ yytestcase(yyruleno==305); - case 306: /* pseudo_column ::= WSTARTTS */ yytestcase(yyruleno==306); - case 307: /* pseudo_column ::= WENDTS */ yytestcase(yyruleno==307); - case 308: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==308); -{ yylhsminor.yy456 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } - yymsp[0].minor.yy456 = yylhsminor.yy456; - break; - case 309: /* function_expression ::= function_name NK_LP expression_list NK_RP */ - case 310: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==310); -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy537, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy537, yymsp[-1].minor.yy632)); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; - break; - case 311: /* function_expression ::= CAST NK_LP expression AS type_name NK_RP */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0, createCastFunctionNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy456), yymsp[-1].minor.yy388)); } - yymsp[-5].minor.yy456 = yylhsminor.yy456; - break; - case 312: /* function_expression ::= noarg_func NK_LP NK_RP */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy0, createFunctionNodeNoArg(pCxt, &yymsp[-2].minor.yy537)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 320: /* star_func_para_list ::= NK_STAR */ -{ yylhsminor.yy632 = createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0)); } - yymsp[0].minor.yy632 = yylhsminor.yy632; - break; - case 325: /* star_func_para ::= table_name NK_DOT NK_STAR */ - case 382: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==382); -{ yylhsminor.yy456 = createColumnNode(pCxt, &yymsp[-2].minor.yy537, &yymsp[0].minor.yy0); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; - break; - case 326: /* predicate ::= expression compare_op expression */ - case 331: /* predicate ::= expression in_op in_predicate_value */ yytestcase(yyruleno==331); + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 300: /* expression_list ::= expression */ +{ yylhsminor.yy244 = createNodeList(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } + yymsp[0].minor.yy244 = yylhsminor.yy244; + break; + case 301: /* expression_list ::= expression_list NK_COMMA expression */ +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-2].minor.yy244, releaseRawExprNode(pCxt, yymsp[0].minor.yy42)); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; + break; + case 302: /* column_reference ::= column_name */ +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy359, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy359)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 303: /* column_reference ::= table_name NK_DOT column_name */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy359, createColumnNode(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy359)); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 304: /* pseudo_column ::= ROWTS */ + case 305: /* pseudo_column ::= TBNAME */ yytestcase(yyruleno==305); + case 306: /* pseudo_column ::= QSTARTTS */ yytestcase(yyruleno==306); + case 307: /* pseudo_column ::= QENDTS */ yytestcase(yyruleno==307); + case 308: /* pseudo_column ::= WSTARTTS */ yytestcase(yyruleno==308); + case 309: /* pseudo_column ::= WENDTS */ yytestcase(yyruleno==309); + case 310: /* pseudo_column ::= WDURATION */ yytestcase(yyruleno==310); +{ yylhsminor.yy42 = createRawExprNode(pCxt, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[0].minor.yy0, NULL)); } + yymsp[0].minor.yy42 = yylhsminor.yy42; + break; + case 311: /* function_expression ::= function_name NK_LP expression_list NK_RP */ + case 312: /* function_expression ::= star_func NK_LP star_func_para_list NK_RP */ yytestcase(yyruleno==312); +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-3].minor.yy359, &yymsp[0].minor.yy0, createFunctionNode(pCxt, &yymsp[-3].minor.yy359, yymsp[-1].minor.yy244)); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; + break; + case 313: /* function_expression ::= CAST NK_LP expression AS type_name NK_RP */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0, createCastFunctionNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-1].minor.yy314)); } + yymsp[-5].minor.yy42 = yylhsminor.yy42; + break; + case 314: /* function_expression ::= noarg_func NK_LP NK_RP */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy0, createFunctionNodeNoArg(pCxt, &yymsp[-2].minor.yy359)); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 322: /* star_func_para_list ::= NK_STAR */ +{ yylhsminor.yy244 = createNodeList(pCxt, createColumnNode(pCxt, NULL, &yymsp[0].minor.yy0)); } + yymsp[0].minor.yy244 = yylhsminor.yy244; + break; + case 327: /* star_func_para ::= table_name NK_DOT NK_STAR */ + case 384: /* select_item ::= table_name NK_DOT NK_STAR */ yytestcase(yyruleno==384); +{ yylhsminor.yy42 = createColumnNode(pCxt, &yymsp[-2].minor.yy359, &yymsp[0].minor.yy0); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; + break; + case 328: /* predicate ::= expression compare_op expression */ + case 333: /* predicate ::= expression in_op in_predicate_value */ yytestcase(yyruleno==333); { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy416, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createOperatorNode(pCxt, yymsp[-1].minor.yy270, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 327: /* predicate ::= expression BETWEEN expression AND expression */ + case 329: /* predicate ::= expression BETWEEN expression AND expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy456), releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-4].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-4].minor.yy42), releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-4].minor.yy456 = yylhsminor.yy456; + yymsp[-4].minor.yy42 = yylhsminor.yy42; break; - case 328: /* predicate ::= expression NOT BETWEEN expression AND expression */ + case 330: /* predicate ::= expression NOT BETWEEN expression AND expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy456), releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-5].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createNotBetweenAnd(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy42), releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-5].minor.yy456 = yylhsminor.yy456; + yymsp[-5].minor.yy42 = yylhsminor.yy42; break; - case 329: /* predicate ::= expression IS NULL */ + case 331: /* predicate ::= expression IS NULL */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), NULL)); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NULL, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), NULL)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 330: /* predicate ::= expression IS NOT NULL */ + case 332: /* predicate ::= expression IS NOT NULL */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy456), NULL)); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-3].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &yymsp[0].minor.yy0, createOperatorNode(pCxt, OP_TYPE_IS_NOT_NULL, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), NULL)); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 332: /* compare_op ::= NK_LT */ -{ yymsp[0].minor.yy416 = OP_TYPE_LOWER_THAN; } + case 334: /* compare_op ::= NK_LT */ +{ yymsp[0].minor.yy270 = OP_TYPE_LOWER_THAN; } break; - case 333: /* compare_op ::= NK_GT */ -{ yymsp[0].minor.yy416 = OP_TYPE_GREATER_THAN; } + case 335: /* compare_op ::= NK_GT */ +{ yymsp[0].minor.yy270 = OP_TYPE_GREATER_THAN; } break; - case 334: /* compare_op ::= NK_LE */ -{ yymsp[0].minor.yy416 = OP_TYPE_LOWER_EQUAL; } + case 336: /* compare_op ::= NK_LE */ +{ yymsp[0].minor.yy270 = OP_TYPE_LOWER_EQUAL; } break; - case 335: /* compare_op ::= NK_GE */ -{ yymsp[0].minor.yy416 = OP_TYPE_GREATER_EQUAL; } + case 337: /* compare_op ::= NK_GE */ +{ yymsp[0].minor.yy270 = OP_TYPE_GREATER_EQUAL; } break; - case 336: /* compare_op ::= NK_NE */ -{ yymsp[0].minor.yy416 = OP_TYPE_NOT_EQUAL; } + case 338: /* compare_op ::= NK_NE */ +{ yymsp[0].minor.yy270 = OP_TYPE_NOT_EQUAL; } break; - case 337: /* compare_op ::= NK_EQ */ -{ yymsp[0].minor.yy416 = OP_TYPE_EQUAL; } + case 339: /* compare_op ::= NK_EQ */ +{ yymsp[0].minor.yy270 = OP_TYPE_EQUAL; } break; - case 338: /* compare_op ::= LIKE */ -{ yymsp[0].minor.yy416 = OP_TYPE_LIKE; } + case 340: /* compare_op ::= LIKE */ +{ yymsp[0].minor.yy270 = OP_TYPE_LIKE; } break; - case 339: /* compare_op ::= NOT LIKE */ -{ yymsp[-1].minor.yy416 = OP_TYPE_NOT_LIKE; } + case 341: /* compare_op ::= NOT LIKE */ +{ yymsp[-1].minor.yy270 = OP_TYPE_NOT_LIKE; } break; - case 340: /* compare_op ::= MATCH */ -{ yymsp[0].minor.yy416 = OP_TYPE_MATCH; } + case 342: /* compare_op ::= MATCH */ +{ yymsp[0].minor.yy270 = OP_TYPE_MATCH; } break; - case 341: /* compare_op ::= NMATCH */ -{ yymsp[0].minor.yy416 = OP_TYPE_NMATCH; } + case 343: /* compare_op ::= NMATCH */ +{ yymsp[0].minor.yy270 = OP_TYPE_NMATCH; } break; - case 342: /* compare_op ::= CONTAINS */ -{ yymsp[0].minor.yy416 = OP_TYPE_JSON_CONTAINS; } + case 344: /* compare_op ::= CONTAINS */ +{ yymsp[0].minor.yy270 = OP_TYPE_JSON_CONTAINS; } break; - case 343: /* in_op ::= IN */ -{ yymsp[0].minor.yy416 = OP_TYPE_IN; } + case 345: /* in_op ::= IN */ +{ yymsp[0].minor.yy270 = OP_TYPE_IN; } break; - case 344: /* in_op ::= NOT IN */ -{ yymsp[-1].minor.yy416 = OP_TYPE_NOT_IN; } + case 346: /* in_op ::= NOT IN */ +{ yymsp[-1].minor.yy270 = OP_TYPE_NOT_IN; } break; - case 345: /* in_predicate_value ::= NK_LP expression_list NK_RP */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy632)); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 347: /* in_predicate_value ::= NK_LP expression_list NK_RP */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, createNodeListNode(pCxt, yymsp[-1].minor.yy244)); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 347: /* boolean_value_expression ::= NOT boolean_primary */ + case 349: /* boolean_value_expression ::= NOT boolean_primary */ { - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy456), NULL)); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-1].minor.yy0, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_NOT, releaseRawExprNode(pCxt, yymsp[0].minor.yy42), NULL)); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 348: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ + case 350: /* boolean_value_expression ::= boolean_value_expression OR boolean_value_expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_OR, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 349: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ + case 351: /* boolean_value_expression ::= boolean_value_expression AND boolean_value_expression */ { - SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy456); - SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy456); - yylhsminor.yy456 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); + SToken s = getTokenFromRawExprNode(pCxt, yymsp[-2].minor.yy42); + SToken e = getTokenFromRawExprNode(pCxt, yymsp[0].minor.yy42); + yylhsminor.yy42 = createRawExprNodeExt(pCxt, &s, &e, createLogicConditionNode(pCxt, LOGIC_COND_TYPE_AND, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 356: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ -{ yylhsminor.yy456 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy456, yymsp[0].minor.yy456, NULL); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 358: /* table_reference_list ::= table_reference_list NK_COMMA table_reference */ +{ yylhsminor.yy42 = createJoinTableNode(pCxt, JOIN_TYPE_INNER, yymsp[-2].minor.yy42, yymsp[0].minor.yy42, NULL); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 359: /* table_primary ::= table_name alias_opt */ -{ yylhsminor.yy456 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy537, &yymsp[0].minor.yy537); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 361: /* table_primary ::= table_name alias_opt */ +{ yylhsminor.yy42 = createRealTableNode(pCxt, NULL, &yymsp[-1].minor.yy359, &yymsp[0].minor.yy359); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 360: /* table_primary ::= db_name NK_DOT table_name alias_opt */ -{ yylhsminor.yy456 = createRealTableNode(pCxt, &yymsp[-3].minor.yy537, &yymsp[-1].minor.yy537, &yymsp[0].minor.yy537); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + case 362: /* table_primary ::= db_name NK_DOT table_name alias_opt */ +{ yylhsminor.yy42 = createRealTableNode(pCxt, &yymsp[-3].minor.yy359, &yymsp[-1].minor.yy359, &yymsp[0].minor.yy359); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 361: /* table_primary ::= subquery alias_opt */ -{ yylhsminor.yy456 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy456), &yymsp[0].minor.yy537); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 363: /* table_primary ::= subquery alias_opt */ +{ yylhsminor.yy42 = createTempTableNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42), &yymsp[0].minor.yy359); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 363: /* alias_opt ::= */ -{ yymsp[1].minor.yy537 = nil_token; } + case 365: /* alias_opt ::= */ +{ yymsp[1].minor.yy359 = nil_token; } break; - case 364: /* alias_opt ::= table_alias */ -{ yylhsminor.yy537 = yymsp[0].minor.yy537; } - yymsp[0].minor.yy537 = yylhsminor.yy537; + case 366: /* alias_opt ::= table_alias */ +{ yylhsminor.yy359 = yymsp[0].minor.yy359; } + yymsp[0].minor.yy359 = yylhsminor.yy359; break; - case 365: /* alias_opt ::= AS table_alias */ -{ yymsp[-1].minor.yy537 = yymsp[0].minor.yy537; } + case 367: /* alias_opt ::= AS table_alias */ +{ yymsp[-1].minor.yy359 = yymsp[0].minor.yy359; } break; - case 366: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ - case 367: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==367); -{ yymsp[-2].minor.yy456 = yymsp[-1].minor.yy456; } + case 368: /* parenthesized_joined_table ::= NK_LP joined_table NK_RP */ + case 369: /* parenthesized_joined_table ::= NK_LP parenthesized_joined_table NK_RP */ yytestcase(yyruleno==369); +{ yymsp[-2].minor.yy42 = yymsp[-1].minor.yy42; } break; - case 368: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ -{ yylhsminor.yy456 = createJoinTableNode(pCxt, yymsp[-4].minor.yy164, yymsp[-5].minor.yy456, yymsp[-2].minor.yy456, yymsp[0].minor.yy456); } - yymsp[-5].minor.yy456 = yylhsminor.yy456; + case 370: /* joined_table ::= table_reference join_type JOIN table_reference ON search_condition */ +{ yylhsminor.yy42 = createJoinTableNode(pCxt, yymsp[-4].minor.yy102, yymsp[-5].minor.yy42, yymsp[-2].minor.yy42, yymsp[0].minor.yy42); } + yymsp[-5].minor.yy42 = yylhsminor.yy42; break; - case 369: /* join_type ::= */ -{ yymsp[1].minor.yy164 = JOIN_TYPE_INNER; } + case 371: /* join_type ::= */ +{ yymsp[1].minor.yy102 = JOIN_TYPE_INNER; } break; - case 370: /* join_type ::= INNER */ -{ yymsp[0].minor.yy164 = JOIN_TYPE_INNER; } + case 372: /* join_type ::= INNER */ +{ yymsp[0].minor.yy102 = JOIN_TYPE_INNER; } break; - case 371: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ + case 373: /* query_specification ::= SELECT set_quantifier_opt select_list from_clause where_clause_opt partition_by_clause_opt twindow_clause_opt group_by_clause_opt having_clause_opt */ { - yymsp[-8].minor.yy456 = createSelectStmt(pCxt, yymsp[-7].minor.yy649, yymsp[-6].minor.yy632, yymsp[-5].minor.yy456); - yymsp[-8].minor.yy456 = addWhereClause(pCxt, yymsp[-8].minor.yy456, yymsp[-4].minor.yy456); - yymsp[-8].minor.yy456 = addPartitionByClause(pCxt, yymsp[-8].minor.yy456, yymsp[-3].minor.yy632); - yymsp[-8].minor.yy456 = addWindowClauseClause(pCxt, yymsp[-8].minor.yy456, yymsp[-2].minor.yy456); - yymsp[-8].minor.yy456 = addGroupByClause(pCxt, yymsp[-8].minor.yy456, yymsp[-1].minor.yy632); - yymsp[-8].minor.yy456 = addHavingClause(pCxt, yymsp[-8].minor.yy456, yymsp[0].minor.yy456); + yymsp[-8].minor.yy42 = createSelectStmt(pCxt, yymsp[-7].minor.yy237, yymsp[-6].minor.yy244, yymsp[-5].minor.yy42); + yymsp[-8].minor.yy42 = addWhereClause(pCxt, yymsp[-8].minor.yy42, yymsp[-4].minor.yy42); + yymsp[-8].minor.yy42 = addPartitionByClause(pCxt, yymsp[-8].minor.yy42, yymsp[-3].minor.yy244); + yymsp[-8].minor.yy42 = addWindowClauseClause(pCxt, yymsp[-8].minor.yy42, yymsp[-2].minor.yy42); + yymsp[-8].minor.yy42 = addGroupByClause(pCxt, yymsp[-8].minor.yy42, yymsp[-1].minor.yy244); + yymsp[-8].minor.yy42 = addHavingClause(pCxt, yymsp[-8].minor.yy42, yymsp[0].minor.yy42); } break; - case 374: /* set_quantifier_opt ::= ALL */ -{ yymsp[0].minor.yy649 = false; } + case 376: /* set_quantifier_opt ::= ALL */ +{ yymsp[0].minor.yy237 = false; } break; - case 375: /* select_list ::= NK_STAR */ -{ yymsp[0].minor.yy632 = NULL; } + case 377: /* select_list ::= NK_STAR */ +{ yymsp[0].minor.yy244 = NULL; } break; - case 380: /* select_item ::= common_expression column_alias */ -{ yylhsminor.yy456 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy456), &yymsp[0].minor.yy537); } - yymsp[-1].minor.yy456 = yylhsminor.yy456; + case 382: /* select_item ::= common_expression column_alias */ +{ yylhsminor.yy42 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42), &yymsp[0].minor.yy359); } + yymsp[-1].minor.yy42 = yylhsminor.yy42; break; - case 381: /* select_item ::= common_expression AS column_alias */ -{ yylhsminor.yy456 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), &yymsp[0].minor.yy537); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 383: /* select_item ::= common_expression AS column_alias */ +{ yylhsminor.yy42 = setProjectionAlias(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), &yymsp[0].minor.yy359); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 386: /* partition_by_clause_opt ::= PARTITION BY expression_list */ - case 403: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==403); - case 413: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==413); -{ yymsp[-2].minor.yy632 = yymsp[0].minor.yy632; } + case 388: /* partition_by_clause_opt ::= PARTITION BY expression_list */ + case 405: /* group_by_clause_opt ::= GROUP BY group_by_list */ yytestcase(yyruleno==405); + case 415: /* order_by_clause_opt ::= ORDER BY sort_specification_list */ yytestcase(yyruleno==415); +{ yymsp[-2].minor.yy244 = yymsp[0].minor.yy244; } break; - case 388: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ -{ yymsp[-5].minor.yy456 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy456), releaseRawExprNode(pCxt, yymsp[-1].minor.yy456)); } + case 390: /* twindow_clause_opt ::= SESSION NK_LP column_reference NK_COMMA duration_literal NK_RP */ +{ yymsp[-5].minor.yy42 = createSessionWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } break; - case 389: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ -{ yymsp[-3].minor.yy456 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy456)); } + case 391: /* twindow_clause_opt ::= STATE_WINDOW NK_LP expression NK_RP */ +{ yymsp[-3].minor.yy42 = createStateWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-1].minor.yy42)); } break; - case 390: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ -{ yymsp[-5].minor.yy456 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy456), NULL, yymsp[-1].minor.yy456, yymsp[0].minor.yy456); } + case 392: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_RP sliding_opt fill_opt */ +{ yymsp[-5].minor.yy42 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), NULL, yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; - case 391: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ -{ yymsp[-7].minor.yy456 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy456), releaseRawExprNode(pCxt, yymsp[-3].minor.yy456), yymsp[-1].minor.yy456, yymsp[0].minor.yy456); } + case 393: /* twindow_clause_opt ::= INTERVAL NK_LP duration_literal NK_COMMA duration_literal NK_RP sliding_opt fill_opt */ +{ yymsp[-7].minor.yy42 = createIntervalWindowNode(pCxt, releaseRawExprNode(pCxt, yymsp[-5].minor.yy42), releaseRawExprNode(pCxt, yymsp[-3].minor.yy42), yymsp[-1].minor.yy42, yymsp[0].minor.yy42); } break; - case 393: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ -{ yymsp[-3].minor.yy456 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy456); } + case 395: /* sliding_opt ::= SLIDING NK_LP duration_literal NK_RP */ +{ yymsp[-3].minor.yy42 = releaseRawExprNode(pCxt, yymsp[-1].minor.yy42); } break; - case 395: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ -{ yymsp[-3].minor.yy456 = createFillNode(pCxt, yymsp[-1].minor.yy646, NULL); } + case 397: /* fill_opt ::= FILL NK_LP fill_mode NK_RP */ +{ yymsp[-3].minor.yy42 = createFillNode(pCxt, yymsp[-1].minor.yy544, NULL); } break; - case 396: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ -{ yymsp[-5].minor.yy456 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy632)); } + case 398: /* fill_opt ::= FILL NK_LP VALUE NK_COMMA literal_list NK_RP */ +{ yymsp[-5].minor.yy42 = createFillNode(pCxt, FILL_MODE_VALUE, createNodeListNode(pCxt, yymsp[-1].minor.yy244)); } break; - case 397: /* fill_mode ::= NONE */ -{ yymsp[0].minor.yy646 = FILL_MODE_NONE; } + case 399: /* fill_mode ::= NONE */ +{ yymsp[0].minor.yy544 = FILL_MODE_NONE; } break; - case 398: /* fill_mode ::= PREV */ -{ yymsp[0].minor.yy646 = FILL_MODE_PREV; } + case 400: /* fill_mode ::= PREV */ +{ yymsp[0].minor.yy544 = FILL_MODE_PREV; } break; - case 399: /* fill_mode ::= NULL */ -{ yymsp[0].minor.yy646 = FILL_MODE_NULL; } + case 401: /* fill_mode ::= NULL */ +{ yymsp[0].minor.yy544 = FILL_MODE_NULL; } break; - case 400: /* fill_mode ::= LINEAR */ -{ yymsp[0].minor.yy646 = FILL_MODE_LINEAR; } + case 402: /* fill_mode ::= LINEAR */ +{ yymsp[0].minor.yy544 = FILL_MODE_LINEAR; } break; - case 401: /* fill_mode ::= NEXT */ -{ yymsp[0].minor.yy646 = FILL_MODE_NEXT; } + case 403: /* fill_mode ::= NEXT */ +{ yymsp[0].minor.yy544 = FILL_MODE_NEXT; } break; - case 404: /* group_by_list ::= expression */ -{ yylhsminor.yy632 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); } - yymsp[0].minor.yy632 = yylhsminor.yy632; + case 406: /* group_by_list ::= expression */ +{ yylhsminor.yy244 = createNodeList(pCxt, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } + yymsp[0].minor.yy244 = yylhsminor.yy244; break; - case 405: /* group_by_list ::= group_by_list NK_COMMA expression */ -{ yylhsminor.yy632 = addNodeToList(pCxt, yymsp[-2].minor.yy632, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy456))); } - yymsp[-2].minor.yy632 = yylhsminor.yy632; + case 407: /* group_by_list ::= group_by_list NK_COMMA expression */ +{ yylhsminor.yy244 = addNodeToList(pCxt, yymsp[-2].minor.yy244, createGroupingSetNode(pCxt, releaseRawExprNode(pCxt, yymsp[0].minor.yy42))); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; break; - case 408: /* query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ + case 410: /* query_expression ::= query_expression_body order_by_clause_opt slimit_clause_opt limit_clause_opt */ { - yylhsminor.yy456 = addOrderByClause(pCxt, yymsp[-3].minor.yy456, yymsp[-2].minor.yy632); - yylhsminor.yy456 = addSlimitClause(pCxt, yylhsminor.yy456, yymsp[-1].minor.yy456); - yylhsminor.yy456 = addLimitClause(pCxt, yylhsminor.yy456, yymsp[0].minor.yy456); + yylhsminor.yy42 = addOrderByClause(pCxt, yymsp[-3].minor.yy42, yymsp[-2].minor.yy244); + yylhsminor.yy42 = addSlimitClause(pCxt, yylhsminor.yy42, yymsp[-1].minor.yy42); + yylhsminor.yy42 = addLimitClause(pCxt, yylhsminor.yy42, yymsp[0].minor.yy42); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 410: /* query_expression_body ::= query_expression_body UNION ALL query_expression_body */ -{ yylhsminor.yy456 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy456, yymsp[0].minor.yy456); } - yymsp[-3].minor.yy456 = yylhsminor.yy456; + case 412: /* query_expression_body ::= query_expression_body UNION ALL query_expression_body */ +{ yylhsminor.yy42 = createSetOperator(pCxt, SET_OP_TYPE_UNION_ALL, yymsp[-3].minor.yy42, yymsp[0].minor.yy42); } + yymsp[-3].minor.yy42 = yylhsminor.yy42; break; - case 415: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ - case 419: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==419); -{ yymsp[-1].minor.yy456 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } + case 417: /* slimit_clause_opt ::= SLIMIT NK_INTEGER */ + case 421: /* limit_clause_opt ::= LIMIT NK_INTEGER */ yytestcase(yyruleno==421); +{ yymsp[-1].minor.yy42 = createLimitNode(pCxt, &yymsp[0].minor.yy0, NULL); } break; - case 416: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ - case 420: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==420); -{ yymsp[-3].minor.yy456 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } + case 418: /* slimit_clause_opt ::= SLIMIT NK_INTEGER SOFFSET NK_INTEGER */ + case 422: /* limit_clause_opt ::= LIMIT NK_INTEGER OFFSET NK_INTEGER */ yytestcase(yyruleno==422); +{ yymsp[-3].minor.yy42 = createLimitNode(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; - case 417: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ - case 421: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==421); -{ yymsp[-3].minor.yy456 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } + case 419: /* slimit_clause_opt ::= SLIMIT NK_INTEGER NK_COMMA NK_INTEGER */ + case 423: /* limit_clause_opt ::= LIMIT NK_INTEGER NK_COMMA NK_INTEGER */ yytestcase(yyruleno==423); +{ yymsp[-3].minor.yy42 = createLimitNode(pCxt, &yymsp[0].minor.yy0, &yymsp[-2].minor.yy0); } break; - case 422: /* subquery ::= NK_LP query_expression NK_RP */ -{ yylhsminor.yy456 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy456); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 424: /* subquery ::= NK_LP query_expression NK_RP */ +{ yylhsminor.yy42 = createRawExprNodeExt(pCxt, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-1].minor.yy42); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 426: /* sort_specification ::= expression ordering_specification_opt null_ordering_opt */ -{ yylhsminor.yy456 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy456), yymsp[-1].minor.yy626, yymsp[0].minor.yy209); } - yymsp[-2].minor.yy456 = yylhsminor.yy456; + case 428: /* sort_specification ::= expression ordering_specification_opt null_ordering_opt */ +{ yylhsminor.yy42 = createOrderByExprNode(pCxt, releaseRawExprNode(pCxt, yymsp[-2].minor.yy42), yymsp[-1].minor.yy508, yymsp[0].minor.yy197); } + yymsp[-2].minor.yy42 = yylhsminor.yy42; break; - case 427: /* ordering_specification_opt ::= */ -{ yymsp[1].minor.yy626 = ORDER_ASC; } + case 429: /* ordering_specification_opt ::= */ +{ yymsp[1].minor.yy508 = ORDER_ASC; } break; - case 428: /* ordering_specification_opt ::= ASC */ -{ yymsp[0].minor.yy626 = ORDER_ASC; } + case 430: /* ordering_specification_opt ::= ASC */ +{ yymsp[0].minor.yy508 = ORDER_ASC; } break; - case 429: /* ordering_specification_opt ::= DESC */ -{ yymsp[0].minor.yy626 = ORDER_DESC; } + case 431: /* ordering_specification_opt ::= DESC */ +{ yymsp[0].minor.yy508 = ORDER_DESC; } break; - case 430: /* null_ordering_opt ::= */ -{ yymsp[1].minor.yy209 = NULL_ORDER_DEFAULT; } + case 432: /* null_ordering_opt ::= */ +{ yymsp[1].minor.yy197 = NULL_ORDER_DEFAULT; } break; - case 431: /* null_ordering_opt ::= NULLS FIRST */ -{ yymsp[-1].minor.yy209 = NULL_ORDER_FIRST; } + case 433: /* null_ordering_opt ::= NULLS FIRST */ +{ yymsp[-1].minor.yy197 = NULL_ORDER_FIRST; } break; - case 432: /* null_ordering_opt ::= NULLS LAST */ -{ yymsp[-1].minor.yy209 = NULL_ORDER_LAST; } + case 434: /* null_ordering_opt ::= NULLS LAST */ +{ yymsp[-1].minor.yy197 = NULL_ORDER_LAST; } break; default: break;