From 151fd310722cdc4683d94efe357600a6196c199c Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Sat, 22 May 2021 23:04:43 +0800 Subject: [PATCH 01/15] support compact vnode --- src/client/src/tscSQLParser.c | 19 +- src/client/src/tscServer.c | 86 + src/common/inc/tcmdtype.h | 2 + src/dnode/src/dnodePeer.c | 3 +- src/dnode/src/dnodeVMgmt.c | 13 +- src/inc/taosmsg.h | 12 +- src/inc/ttokendef.h | 373 ++-- src/mnode/inc/mnodeVgroup.h | 1 + src/mnode/src/mnodeDb.c | 48 +- src/mnode/src/mnodeSdb.c | 2 +- src/mnode/src/mnodeVgroup.c | 31 +- src/query/inc/qSqlparser.h | 2 + src/query/inc/sql.y | 4 + src/query/src/qSqlParser.c | 4 + src/query/src/sql.c | 3547 ++++++++++++++------------------- src/util/src/ttokenizer.c | 3 +- 16 files changed, 1949 insertions(+), 2201 deletions(-) diff --git a/src/client/src/tscSQLParser.c b/src/client/src/tscSQLParser.c index acfc1b0cf5..3bc7377267 100644 --- a/src/client/src/tscSQLParser.c +++ b/src/client/src/tscSQLParser.c @@ -106,6 +106,7 @@ static int32_t validateDNodeConfig(SMiscInfo* pOptions); static int32_t validateLocalConfig(SMiscInfo* pOptions); static int32_t validateColumnName(char* name); static int32_t setKillInfo(SSqlObj* pSql, struct SSqlInfo* pInfo, int32_t killType); +static int32_t setCompactVnodeInfo(SSqlObj* pSql, struct SSqlInfo* pInfo); static bool validateOneTags(SSqlCmd* pCmd, TAOS_FIELD* pTagField); static bool hasTimestampForPointInterpQuery(SQueryInfo* pQueryInfo); @@ -377,7 +378,7 @@ int32_t tscToSQLCmd(SSqlObj* pSql, struct SSqlInfo* pInfo) { break; } - + case TSDB_SQL_CREATE_DNODE: { const char* msg = "invalid host name (ip address)"; @@ -686,7 +687,13 @@ int32_t tscToSQLCmd(SSqlObj* pSql, struct SSqlInfo* pInfo) { } break; } - + case TSDB_SQL_COMPACT_VNODE:{ + const char* msg = "invalid compact"; + if (setCompactVnodeInfo(pSql, pInfo) != TSDB_CODE_SUCCESS) { + return invalidSqlErrMsg(tscGetErrorMsgPayload(pCmd), msg); + } + break; + } default: return invalidSqlErrMsg(tscGetErrorMsgPayload(pCmd), "not support sql expression"); } @@ -2789,7 +2796,13 @@ int32_t setKillInfo(SSqlObj* pSql, struct SSqlInfo* pInfo, int32_t killType) { return TSDB_CODE_SUCCESS; } - +static int32_t setCompactVnodeInfo(SSqlObj* pSql, struct SSqlInfo* pInfo) { + SSqlCmd* pCmd = &pSql->cmd; + //STableMetaInfo* pTableMetaInfo = tscGetTableMetaInfoFromCmd(pCmd, pCmd->clauseIndex, 0); + pCmd->command = pInfo->type; + + return TSDB_CODE_SUCCESS; +} bool validateIpAddress(const char* ip, size_t size) { char tmp[128] = {0}; // buffer to build null-terminated string assert(size < 128); diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c index 9b7d5c0c7f..180dae0afb 100644 --- a/src/client/src/tscServer.c +++ b/src/client/src/tscServer.c @@ -47,6 +47,31 @@ static int32_t getWaitingTimeInterval(int32_t count) { return initial * ((2u)<<(count - 2)); } +static int32_t vgIdCompare(const void *lhs, const void *rhs) { + int32_t left = *(int32_t *)lhs; + int32_t right = *(int32_t *)rhs; + + if (left == right) { + return 0; + } else { + return left > right ? 1 : -1; + } +} +static int32_t removeDupVgid(int32_t *src, int32_t sz) { + if (src == NULL || sz <= 0) { + return 0; + } + qsort(src, sz, sizeof(src[0]), vgIdCompare); + + int32_t ret = 1; + for (int i = 1; i < sz; i++) { + if (src[i] != src[i - 1]) { + src[ret++] = src[i]; + } + } + return ret; +} + static void tscSetDnodeEpSet(SRpcEpSet* pEpSet, SVgroupInfo* pVgroupInfo) { assert(pEpSet != NULL && pVgroupInfo != NULL && pVgroupInfo->numOfEps > 0); @@ -1532,6 +1557,61 @@ int tscAlterDbMsg(SSqlObj *pSql, SSqlInfo *pInfo) { return TSDB_CODE_SUCCESS; } +int tscBuildCompactMsg(SSqlObj *pSql, SSqlInfo *pInfo) { + if (pInfo->list == NULL || taosArrayGetSize(pInfo->list) <= 0) { + return TSDB_CODE_TSC_INVALID_SQL; + } + //const char *msg = "invalid compact param"; + STscObj *pObj = pSql->pTscObj; + SSqlCmd *pCmd = &pSql->cmd; + SArray *pList = pInfo->list; + int32_t size = taosArrayGetSize(pList); + + int32_t *result = malloc(sizeof(int32_t) * size); + if (result == NULL) { + return TSDB_CODE_TSC_OUT_OF_MEMORY; + } + + for (int32_t i = 0; i < size; i++) { + tSqlExprItem* pSub = taosArrayGet(pList, i); + tVariant* pVar = &pSub->pNode->value; + if (pVar->nType >= TSDB_DATA_TYPE_TINYINT && pVar->nType <= TSDB_DATA_TYPE_INT) { + result[i] = (int32_t)(pVar->i64); + } else { + free(result); + return TSDB_CODE_TSC_INVALID_SQL; + } + } + + int count = removeDupVgid(result, size); + pCmd->payloadLen = sizeof(SCompactMsg) + count * sizeof(int32_t); + pCmd->msgType = TSDB_MSG_TYPE_CM_COMPACT_VNODE; + + if (TSDB_CODE_SUCCESS != tscAllocPayload(pCmd, pCmd->payloadLen)) { + tscError("0x%"PRIx64" failed to malloc for query msg", pSql->self); + free(result); + return TSDB_CODE_TSC_OUT_OF_MEMORY; + } + SCompactMsg *pCompactMsg = (SCompactMsg *)pCmd->payload; + + STableMetaInfo *pTableMetaInfo = tscGetTableMetaInfoFromCmd(pCmd, pCmd->clauseIndex, 0); + + if (tNameIsEmpty(&pTableMetaInfo->name)) { + pthread_mutex_lock(&pObj->mutex); + tstrncpy(pCompactMsg->db, pObj->db, sizeof(pCompactMsg->db)); + pthread_mutex_unlock(&pObj->mutex); + } else { + tNameGetFullDbName(&pTableMetaInfo->name, pCompactMsg->db); + } + + pCompactMsg->numOfVgroup = htons(count); + for (int32_t i = 0; i < count; i++) { + pCompactMsg->vgid[i] = htons(result[i]); + } + free(result); + + return TSDB_CODE_SUCCESS; +} int tscBuildRetrieveFromMgmtMsg(SSqlObj *pSql, SSqlInfo *pInfo) { SSqlCmd *pCmd = &pSql->cmd; @@ -2302,6 +2382,10 @@ int tscProcessAlterDbMsgRsp(SSqlObj *pSql) { UNUSED(pSql); return 0; } +int tscProcessCompactRsp(SSqlObj *pSql) { + UNUSED(pSql); + return TSDB_CODE_SUCCESS; +} int tscProcessShowCreateRsp(SSqlObj *pSql) { return tscLocalResultCommonBuilder(pSql, 1); @@ -2614,6 +2698,7 @@ void tscInitMsgsFp() { tscBuildMsg[TSDB_SQL_ALTER_TABLE] = tscBuildAlterTableMsg; tscBuildMsg[TSDB_SQL_UPDATE_TAGS_VAL] = tscBuildUpdateTagMsg; tscBuildMsg[TSDB_SQL_ALTER_DB] = tscAlterDbMsg; + tscBuildMsg[TSDB_SQL_COMPACT_VNODE] = tscBuildCompactMsg; tscBuildMsg[TSDB_SQL_CONNECT] = tscBuildConnectMsg; tscBuildMsg[TSDB_SQL_USE_DB] = tscBuildUseDbMsg; @@ -2655,6 +2740,7 @@ void tscInitMsgsFp() { tscProcessMsgRsp[TSDB_SQL_ALTER_TABLE] = tscProcessAlterTableMsgRsp; tscProcessMsgRsp[TSDB_SQL_ALTER_DB] = tscProcessAlterDbMsgRsp; + tscProcessMsgRsp[TSDB_SQL_COMPACT_VNODE] = tscProcessCompactRsp; tscProcessMsgRsp[TSDB_SQL_SHOW_CREATE_TABLE] = tscProcessShowCreateRsp; tscProcessMsgRsp[TSDB_SQL_SHOW_CREATE_STABLE] = tscProcessShowCreateRsp; diff --git a/src/common/inc/tcmdtype.h b/src/common/inc/tcmdtype.h index adf210cfeb..928964857b 100644 --- a/src/common/inc/tcmdtype.h +++ b/src/common/inc/tcmdtype.h @@ -51,6 +51,7 @@ enum { TSDB_DEFINE_SQL_TYPE( TSDB_SQL_ALTER_ACCT, "alter-acct" ) TSDB_DEFINE_SQL_TYPE( TSDB_SQL_ALTER_TABLE, "alter-table" ) TSDB_DEFINE_SQL_TYPE( TSDB_SQL_ALTER_DB, "alter-db" ) + TSDB_DEFINE_SQL_TYPE(TSDB_SQL_SYNC_DB_REPLICA, "sync db-replica") TSDB_DEFINE_SQL_TYPE( TSDB_SQL_CREATE_MNODE, "create-mnode" ) TSDB_DEFINE_SQL_TYPE( TSDB_SQL_DROP_MNODE, "drop-mnode" ) @@ -63,6 +64,7 @@ enum { TSDB_DEFINE_SQL_TYPE( TSDB_SQL_KILL_QUERY, "kill-query" ) TSDB_DEFINE_SQL_TYPE( TSDB_SQL_KILL_STREAM, "kill-stream" ) TSDB_DEFINE_SQL_TYPE( TSDB_SQL_KILL_CONNECTION, "kill-connection" ) + TSDB_DEFINE_SQL_TYPE( TSDB_SQL_COMPACT_VNODE, "compact-vnode" ) // SQL below is for read operation TSDB_DEFINE_SQL_TYPE( TSDB_SQL_READ, "read" ) diff --git a/src/dnode/src/dnodePeer.c b/src/dnode/src/dnodePeer.c index b8ce1c802b..08269c0bf6 100644 --- a/src/dnode/src/dnodePeer.c +++ b/src/dnode/src/dnodePeer.c @@ -47,7 +47,8 @@ int32_t dnodeInitServer() { dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_DROP_VNODE] = dnodeDispatchToVMgmtQueue; dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_ALTER_STREAM] = dnodeDispatchToVMgmtQueue; dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_CONFIG_DNODE] = dnodeDispatchToVMgmtQueue; - dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_CREATE_MNODE] = dnodeDispatchToVMgmtQueue; + dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_CREATE_MNODE] = dnodeDispatchToVMgmtQueue; + dnodeProcessReqMsgFp[TSDB_MSG_TYPE_MD_COMPACT_VNODE] = dnodeDispatchToVMgmtQueue; dnodeProcessReqMsgFp[TSDB_MSG_TYPE_DM_CONFIG_TABLE] = dnodeDispatchToMPeerQueue; dnodeProcessReqMsgFp[TSDB_MSG_TYPE_DM_CONFIG_VNODE] = dnodeDispatchToMPeerQueue; diff --git a/src/dnode/src/dnodeVMgmt.c b/src/dnode/src/dnodeVMgmt.c index 66c94bf675..d270ca7ea9 100644 --- a/src/dnode/src/dnodeVMgmt.c +++ b/src/dnode/src/dnodeVMgmt.c @@ -31,6 +31,7 @@ static void * dnodeProcessMgmtQueue(void *param); static int32_t dnodeProcessCreateVnodeMsg(SRpcMsg *pMsg); static int32_t dnodeProcessAlterVnodeMsg(SRpcMsg *pMsg); static int32_t dnodeProcessSyncVnodeMsg(SRpcMsg *pMsg); +static int32_t dnodeProcessCompactVnodeMsg(SRpcMsg *pMsg); static int32_t dnodeProcessDropVnodeMsg(SRpcMsg *pMsg); static int32_t dnodeProcessAlterStreamMsg(SRpcMsg *pMsg); static int32_t dnodeProcessConfigDnodeMsg(SRpcMsg *pMsg); @@ -40,7 +41,8 @@ static int32_t (*dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MAX])(SRpcMsg *pMsg); int32_t dnodeInitVMgmt() { dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_CREATE_VNODE] = dnodeProcessCreateVnodeMsg; dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_ALTER_VNODE] = dnodeProcessAlterVnodeMsg; - dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_SYNC_VNODE] = dnodeProcessSyncVnodeMsg; + dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_SYNC_VNODE] = dnodeProcessSyncVnodeMsg; + dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_COMPACT_VNODE]= dnodeProcessCompactVnodeMsg; dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_DROP_VNODE] = dnodeProcessDropVnodeMsg; dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_ALTER_STREAM] = dnodeProcessAlterStreamMsg; dnodeProcessMgmtMsgFp[TSDB_MSG_TYPE_MD_CONFIG_DNODE] = dnodeProcessConfigDnodeMsg; @@ -188,6 +190,15 @@ static int32_t dnodeProcessSyncVnodeMsg(SRpcMsg *rpcMsg) { return vnodeSync(pSyncVnode->vgId); } +static int32_t dnodeProcessCompactVnodeMsg(SRpcMsg *rpcMsg) { + SCompactVnodeMsg *pCompactVnode = rpcMsg->pCont; + pCompactVnode->vgId = htonl(pCompactVnode->vgId); + //do nothing + dDebug("trige compact at vgid: %d", pCompactVnode->vgId); + + return TSDB_CODE_SUCCESS; +} + static int32_t dnodeProcessDropVnodeMsg(SRpcMsg *rpcMsg) { SDropVnodeMsg *pDrop = rpcMsg->pCont; pDrop->vgId = htonl(pDrop->vgId); diff --git a/src/inc/taosmsg.h b/src/inc/taosmsg.h index 3b7022fb88..a4cee6d394 100644 --- a/src/inc/taosmsg.h +++ b/src/inc/taosmsg.h @@ -61,9 +61,11 @@ TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CONFIG_DNODE, "config-dnode" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_ALTER_VNODE, "alter-vnode" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_SYNC_VNODE, "sync-vnode" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CREATE_MNODE, "create-mnode" ) +TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_COMPACT_VNODE, "compact-vnode" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY6, "dummy6" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY7, "dummy7" ) + // message from client to mnode TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CONNECT, "connect" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_ACCT, "create-acct" ) @@ -84,6 +86,8 @@ TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_TABLE, "drop-table" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_TABLE, "alter-table" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_TABLE_META, "table-meta" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_STABLE_VGROUP, "stable-vgroup" ) +TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_COMPACT_VNODE, "compact-vnode" ) + TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_TABLES_META, "tables-meta" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_STREAM, "alter-stream" ) TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_SHOW, "show" ) @@ -390,7 +394,7 @@ typedef struct { typedef struct { int32_t vgId; -} SDropVnodeMsg, SSyncVnodeMsg; +} SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg; typedef struct SColIndex { int16_t colId; // column id @@ -775,6 +779,12 @@ typedef struct { char payload[]; } SShowMsg; +typedef struct { + char db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN]; + int32_t numOfVgroup; + int32_t vgid[]; +} SCompactMsg; + typedef struct SShowRsp { uint64_t qhandle; STableMetaMsg tableMeta; diff --git a/src/inc/ttokendef.h b/src/inc/ttokendef.h index ef3f8ed1fb..4f831fca98 100644 --- a/src/inc/ttokendef.h +++ b/src/inc/ttokendef.h @@ -17,192 +17,193 @@ #define TDENGINE_TTOKENDEF_H -#define TK_ID 1 -#define TK_BOOL 2 -#define TK_TINYINT 3 -#define TK_SMALLINT 4 -#define TK_INTEGER 5 -#define TK_BIGINT 6 -#define TK_FLOAT 7 -#define TK_DOUBLE 8 -#define TK_STRING 9 -#define TK_TIMESTAMP 10 -#define TK_BINARY 11 -#define TK_NCHAR 12 -#define TK_OR 13 -#define TK_AND 14 -#define TK_NOT 15 -#define TK_EQ 16 -#define TK_NE 17 -#define TK_ISNULL 18 -#define TK_NOTNULL 19 -#define TK_IS 20 -#define TK_LIKE 21 -#define TK_GLOB 22 -#define TK_BETWEEN 23 -#define TK_IN 24 -#define TK_GT 25 -#define TK_GE 26 -#define TK_LT 27 -#define TK_LE 28 -#define TK_BITAND 29 -#define TK_BITOR 30 -#define TK_LSHIFT 31 -#define TK_RSHIFT 32 -#define TK_PLUS 33 -#define TK_MINUS 34 -#define TK_DIVIDE 35 -#define TK_TIMES 36 -#define TK_STAR 37 -#define TK_SLASH 38 -#define TK_REM 39 -#define TK_CONCAT 40 -#define TK_UMINUS 41 -#define TK_UPLUS 42 -#define TK_BITNOT 43 -#define TK_SHOW 44 -#define TK_DATABASES 45 -#define TK_TOPICS 46 -#define TK_MNODES 47 -#define TK_DNODES 48 -#define TK_ACCOUNTS 49 -#define TK_USERS 50 -#define TK_MODULES 51 -#define TK_QUERIES 52 -#define TK_CONNECTIONS 53 -#define TK_STREAMS 54 -#define TK_VARIABLES 55 -#define TK_SCORES 56 -#define TK_GRANTS 57 -#define TK_VNODES 58 -#define TK_IPTOKEN 59 -#define TK_DOT 60 -#define TK_CREATE 61 -#define TK_TABLE 62 -#define TK_STABLE 63 -#define TK_DATABASE 64 -#define TK_TABLES 65 -#define TK_STABLES 66 -#define TK_VGROUPS 67 -#define TK_DROP 68 -#define TK_TOPIC 69 -#define TK_DNODE 70 -#define TK_USER 71 -#define TK_ACCOUNT 72 -#define TK_USE 73 -#define TK_DESCRIBE 74 -#define TK_ALTER 75 -#define TK_PASS 76 -#define TK_PRIVILEGE 77 -#define TK_LOCAL 78 -#define TK_IF 79 -#define TK_EXISTS 80 -#define TK_PPS 81 -#define TK_TSERIES 82 -#define TK_DBS 83 -#define TK_STORAGE 84 -#define TK_QTIME 85 -#define TK_CONNS 86 -#define TK_STATE 87 -#define TK_KEEP 88 -#define TK_CACHE 89 -#define TK_REPLICA 90 -#define TK_QUORUM 91 -#define TK_DAYS 92 -#define TK_MINROWS 93 -#define TK_MAXROWS 94 -#define TK_BLOCKS 95 -#define TK_CTIME 96 -#define TK_WAL 97 -#define TK_FSYNC 98 -#define TK_COMP 99 -#define TK_PRECISION 100 -#define TK_UPDATE 101 -#define TK_CACHELAST 102 -#define TK_PARTITIONS 103 -#define TK_LP 104 -#define TK_RP 105 -#define TK_UNSIGNED 106 -#define TK_TAGS 107 -#define TK_USING 108 -#define TK_COMMA 109 -#define TK_AS 110 -#define TK_NULL 111 -#define TK_SELECT 112 -#define TK_UNION 113 -#define TK_ALL 114 -#define TK_DISTINCT 115 -#define TK_FROM 116 -#define TK_VARIABLE 117 -#define TK_INTERVAL 118 -#define TK_SESSION 119 -#define TK_FILL 120 -#define TK_SLIDING 121 -#define TK_ORDER 122 -#define TK_BY 123 -#define TK_ASC 124 -#define TK_DESC 125 -#define TK_GROUP 126 -#define TK_HAVING 127 -#define TK_LIMIT 128 -#define TK_OFFSET 129 -#define TK_SLIMIT 130 -#define TK_SOFFSET 131 -#define TK_WHERE 132 -#define TK_NOW 133 -#define TK_RESET 134 -#define TK_QUERY 135 -#define TK_SYNCDB 136 -#define TK_ADD 137 -#define TK_COLUMN 138 -#define TK_TAG 139 -#define TK_CHANGE 140 -#define TK_SET 141 -#define TK_KILL 142 -#define TK_CONNECTION 143 -#define TK_STREAM 144 -#define TK_COLON 145 -#define TK_ABORT 146 -#define TK_AFTER 147 -#define TK_ATTACH 148 -#define TK_BEFORE 149 -#define TK_BEGIN 150 -#define TK_CASCADE 151 -#define TK_CLUSTER 152 -#define TK_CONFLICT 153 -#define TK_COPY 154 -#define TK_DEFERRED 155 -#define TK_DELIMITERS 156 -#define TK_DETACH 157 -#define TK_EACH 158 -#define TK_END 159 -#define TK_EXPLAIN 160 -#define TK_FAIL 161 -#define TK_FOR 162 -#define TK_IGNORE 163 -#define TK_IMMEDIATE 164 -#define TK_INITIALLY 165 -#define TK_INSTEAD 166 -#define TK_MATCH 167 -#define TK_KEY 168 -#define TK_OF 169 -#define TK_RAISE 170 -#define TK_REPLACE 171 -#define TK_RESTRICT 172 -#define TK_ROW 173 -#define TK_STATEMENT 174 -#define TK_TRIGGER 175 -#define TK_VIEW 176 -#define TK_SEMI 177 -#define TK_NONE 178 -#define TK_PREV 179 -#define TK_LINEAR 180 -#define TK_IMPORT 181 -#define TK_TBNAME 182 -#define TK_JOIN 183 -#define TK_INSERT 184 -#define TK_INTO 185 -#define TK_VALUES 186 +#define TK_ID 1 +#define TK_BOOL 2 +#define TK_TINYINT 3 +#define TK_SMALLINT 4 +#define TK_INTEGER 5 +#define TK_BIGINT 6 +#define TK_FLOAT 7 +#define TK_DOUBLE 8 +#define TK_STRING 9 +#define TK_TIMESTAMP 10 +#define TK_BINARY 11 +#define TK_NCHAR 12 +#define TK_OR 13 +#define TK_AND 14 +#define TK_NOT 15 +#define TK_EQ 16 +#define TK_NE 17 +#define TK_ISNULL 18 +#define TK_NOTNULL 19 +#define TK_IS 20 +#define TK_LIKE 21 +#define TK_GLOB 22 +#define TK_BETWEEN 23 +#define TK_IN 24 +#define TK_GT 25 +#define TK_GE 26 +#define TK_LT 27 +#define TK_LE 28 +#define TK_BITAND 29 +#define TK_BITOR 30 +#define TK_LSHIFT 31 +#define TK_RSHIFT 32 +#define TK_PLUS 33 +#define TK_MINUS 34 +#define TK_DIVIDE 35 +#define TK_TIMES 36 +#define TK_STAR 37 +#define TK_SLASH 38 +#define TK_REM 39 +#define TK_CONCAT 40 +#define TK_UMINUS 41 +#define TK_UPLUS 42 +#define TK_BITNOT 43 +#define TK_SHOW 44 +#define TK_DATABASES 45 +#define TK_TOPICS 46 +#define TK_MNODES 47 +#define TK_DNODES 48 +#define TK_ACCOUNTS 49 +#define TK_USERS 50 +#define TK_MODULES 51 +#define TK_QUERIES 52 +#define TK_CONNECTIONS 53 +#define TK_STREAMS 54 +#define TK_VARIABLES 55 +#define TK_SCORES 56 +#define TK_GRANTS 57 +#define TK_VNODES 58 +#define TK_IPTOKEN 59 +#define TK_DOT 60 +#define TK_CREATE 61 +#define TK_TABLE 62 +#define TK_STABLE 63 +#define TK_DATABASE 64 +#define TK_TABLES 65 +#define TK_STABLES 66 +#define TK_VGROUPS 67 +#define TK_DROP 68 +#define TK_TOPIC 69 +#define TK_DNODE 70 +#define TK_USER 71 +#define TK_ACCOUNT 72 +#define TK_USE 73 +#define TK_DESCRIBE 74 +#define TK_ALTER 75 +#define TK_PASS 76 +#define TK_PRIVILEGE 77 +#define TK_LOCAL 78 +#define TK_COMPACT 79 +#define TK_LP 80 +#define TK_RP 81 +#define TK_IF 82 +#define TK_EXISTS 83 +#define TK_PPS 84 +#define TK_TSERIES 85 +#define TK_DBS 86 +#define TK_STORAGE 87 +#define TK_QTIME 88 +#define TK_CONNS 89 +#define TK_STATE 90 +#define TK_KEEP 91 +#define TK_CACHE 92 +#define TK_REPLICA 93 +#define TK_QUORUM 94 +#define TK_DAYS 95 +#define TK_MINROWS 96 +#define TK_MAXROWS 97 +#define TK_BLOCKS 98 +#define TK_CTIME 99 +#define TK_WAL 100 +#define TK_FSYNC 101 +#define TK_COMP 102 +#define TK_PRECISION 103 +#define TK_UPDATE 104 +#define TK_CACHELAST 105 +#define TK_PARTITIONS 106 +#define TK_UNSIGNED 107 +#define TK_TAGS 108 +#define TK_USING 109 +#define TK_COMMA 110 +#define TK_AS 111 +#define TK_NULL 112 +#define TK_SELECT 113 +#define TK_UNION 114 +#define TK_ALL 115 +#define TK_DISTINCT 116 +#define TK_FROM 117 +#define TK_VARIABLE 118 +#define TK_INTERVAL 119 +#define TK_SESSION 120 +#define TK_FILL 121 +#define TK_SLIDING 122 +#define TK_ORDER 123 +#define TK_BY 124 +#define TK_ASC 125 +#define TK_DESC 126 +#define TK_GROUP 127 +#define TK_HAVING 128 +#define TK_LIMIT 129 +#define TK_OFFSET 130 +#define TK_SLIMIT 131 +#define TK_SOFFSET 132 +#define TK_WHERE 133 +#define TK_NOW 134 +#define TK_RESET 135 +#define TK_QUERY 136 +#define TK_SYNCDB 137 +#define TK_ADD 138 +#define TK_COLUMN 139 +#define TK_TAG 140 +#define TK_CHANGE 141 +#define TK_SET 142 +#define TK_KILL 143 +#define TK_CONNECTION 144 +#define TK_STREAM 145 +#define TK_COLON 146 +#define TK_ABORT 147 +#define TK_AFTER 148 +#define TK_ATTACH 149 +#define TK_BEFORE 150 +#define TK_BEGIN 151 +#define TK_CASCADE 152 +#define TK_CLUSTER 153 +#define TK_CONFLICT 154 +#define TK_COPY 155 +#define TK_DEFERRED 156 +#define TK_DELIMITERS 157 +#define TK_DETACH 158 +#define TK_EACH 159 +#define TK_END 160 +#define TK_EXPLAIN 161 +#define TK_FAIL 162 +#define TK_FOR 163 +#define TK_IGNORE 164 +#define TK_IMMEDIATE 165 +#define TK_INITIALLY 166 +#define TK_INSTEAD 167 +#define TK_MATCH 168 +#define TK_KEY 169 +#define TK_OF 170 +#define TK_RAISE 171 +#define TK_REPLACE 172 +#define TK_RESTRICT 173 +#define TK_ROW 174 +#define TK_STATEMENT 175 +#define TK_TRIGGER 176 +#define TK_VIEW 177 +#define TK_SEMI 178 +#define TK_NONE 179 +#define TK_PREV 180 +#define TK_LINEAR 181 +#define TK_IMPORT 182 +#define TK_TBNAME 183 +#define TK_JOIN 184 +#define TK_INSERT 185 +#define TK_INTO 186 +#define TK_VALUES 187 #define TK_SPACE 300 diff --git a/src/mnode/inc/mnodeVgroup.h b/src/mnode/inc/mnodeVgroup.h index 73b0e6ae1b..8ff4dbaaa5 100644 --- a/src/mnode/inc/mnodeVgroup.h +++ b/src/mnode/inc/mnodeVgroup.h @@ -51,6 +51,7 @@ void mnodeSendDropVnodeMsg(int32_t vgId, SRpcEpSet *epSet, void *ahandle); void mnodeSendCreateVgroupMsg(SVgObj *pVgroup, void *ahandle); void mnodeSendAlterVgroupMsg(SVgObj *pVgroup); void mnodeSendSyncVgroupMsg(SVgObj *pVgroup); +void mnodeSendCompactVgroupMsg(SVgObj *pVgroup); SRpcEpSet mnodeGetEpSetFromVgroup(SVgObj *pVgroup); SRpcEpSet mnodeGetEpSetFromIp(char *ep); diff --git a/src/mnode/src/mnodeDb.c b/src/mnode/src/mnodeDb.c index 5e06faaad9..9e064a2f9e 100644 --- a/src/mnode/src/mnodeDb.c +++ b/src/mnode/src/mnodeDb.c @@ -51,6 +51,7 @@ static int32_t mnodeRetrieveDbs(SShowObj *pShow, char *data, int32_t rows, void static int32_t mnodeProcessCreateDbMsg(SMnodeMsg *pMsg); static int32_t mnodeProcessDropDbMsg(SMnodeMsg *pMsg); static int32_t mnodeProcessSyncDbMsg(SMnodeMsg *pMsg); +static int32_t mnodeProcessCompactMsg(SMnodeMsg *pMsg); int32_t mnodeProcessAlterDbMsg(SMnodeMsg *pMsg); #ifndef _TOPIC @@ -198,10 +199,12 @@ int32_t mnodeInitDbs() { mnodeAddWriteMsgHandle(TSDB_MSG_TYPE_CM_ALTER_DB, mnodeProcessAlterDbMsg); mnodeAddWriteMsgHandle(TSDB_MSG_TYPE_CM_DROP_DB, mnodeProcessDropDbMsg); mnodeAddWriteMsgHandle(TSDB_MSG_TYPE_CM_SYNC_DB, mnodeProcessSyncDbMsg); + mnodeAddWriteMsgHandle(TSDB_MSG_TYPE_CM_COMPACT_VNODE, mnodeProcessCompactMsg); mnodeAddShowMetaHandle(TSDB_MGMT_TABLE_DB, mnodeGetDbMeta); mnodeAddShowRetrieveHandle(TSDB_MGMT_TABLE_DB, mnodeRetrieveDbs); mnodeAddShowFreeIterHandle(TSDB_MGMT_TABLE_DB, mnodeCancelGetNextDb); + mDebug("table:dbs table is created"); return tpInit(); } @@ -1207,7 +1210,7 @@ static int32_t mnodeProcessDropDbMsg(SMnodeMsg *pMsg) { static int32_t mnodeSyncDb(SDbObj *pDb, SMnodeMsg *pMsg) { void *pIter = NULL; SVgObj *pVgroup = NULL; - while (1) { + while (1) { pIter = mnodeGetNextVgroup(pIter, &pVgroup); if (pVgroup == NULL) break; if (pVgroup->pDb == pDb) { @@ -1221,6 +1224,34 @@ static int32_t mnodeSyncDb(SDbObj *pDb, SMnodeMsg *pMsg) { return TSDB_CODE_SUCCESS; } + +static int32_t mnodeCompact(SDbObj *pDb, SCompactMsg *pCompactMsg) { + int32_t count = htonl(pCompactMsg->numOfVgroup); + int32_t *buf = malloc(sizeof(int32_t) * count); + if (buf == NULL) { + return TSDB_CODE_MND_OUT_OF_MEMORY; + } + for (int32_t i = 0; i < count; i++) { + buf[i] = htonl(pCompactMsg->vgid[i]); + } + + // copy from mnodeSyncDb, so ugly + void *pIter = NULL; + SVgObj *pVgroup = NULL; + while (1) { + pIter = mnodeGetNextVgroup(pIter, &pVgroup); + if (pVgroup == NULL) break; + if (pVgroup->pDb == pDb) { + mnodeSendCompactVgroupMsg(pVgroup); + } + mnodeDecVgroupRef(pVgroup); + } + free(buf); + + mLInfo("db:%s, trigger compact", pDb->name); + return TSDB_CODE_SUCCESS; +} + static int32_t mnodeProcessSyncDbMsg(SMnodeMsg *pMsg) { SSyncDbMsg *pSyncDb = pMsg->rpcMsg.pCont; mDebug("db:%s, syncdb is received from thandle:%p, ignore:%d", pSyncDb->db, pMsg->rpcMsg.handle, pSyncDb->ignoreNotExists); @@ -1243,6 +1274,19 @@ static int32_t mnodeProcessSyncDbMsg(SMnodeMsg *pMsg) { return mnodeSyncDb(pMsg->pDb, pMsg); } +static int32_t mnodeProcessCompactMsg(SMnodeMsg *pMsg) { + SCompactMsg *pCompact = pMsg->rpcMsg.pCont; + mDebug("db:%s, compact is received from thandle:%p", pCompact->db, pMsg->rpcMsg.handle); + + if (pMsg->pDb == NULL) pMsg->pDb = mnodeGetDb(pCompact->db); + + if (pMsg->pDb->status != TSDB_DB_STATUS_READY) { + mError("db:%s, status:%d, in dropping, ignore compact request", pCompact->db, pMsg->pDb->status); + return TSDB_CODE_MND_DB_IN_DROPPING; + } + + return mnodeCompact(pMsg->pDb, pCompact); +} void mnodeDropAllDbs(SAcctObj *pAcct) { int32_t numOfDbs = 0; @@ -1297,4 +1341,4 @@ int32_t mnodeCompactDbs() { mInfo("end to compact dbs table..."); return 0; -} \ No newline at end of file +} diff --git a/src/mnode/src/mnodeSdb.c b/src/mnode/src/mnodeSdb.c index 9e3b87671e..5306142863 100644 --- a/src/mnode/src/mnodeSdb.c +++ b/src/mnode/src/mnodeSdb.c @@ -1193,4 +1193,4 @@ int32_t mnodeCompactWal() { sdbInfo("vgId:1, compact mnode wal success"); return 0; -} \ No newline at end of file +} diff --git a/src/mnode/src/mnodeVgroup.c b/src/mnode/src/mnodeVgroup.c index 67532ad85a..666de96854 100644 --- a/src/mnode/src/mnodeVgroup.c +++ b/src/mnode/src/mnodeVgroup.c @@ -61,6 +61,7 @@ static int32_t mnodeRetrieveVgroups(SShowObj *pShow, char *data, int32_t rows, v static void mnodeProcessCreateVnodeRsp(SRpcMsg *rpcMsg); static void mnodeProcessAlterVnodeRsp(SRpcMsg *rpcMsg); static void mnodeProcessSyncVnodeRsp(SRpcMsg *rpcMsg); +static void mnodeProcessCompactVnodeRsp(SRpcMsg *rpcMsg); static void mnodeProcessDropVnodeRsp(SRpcMsg *rpcMsg); static int32_t mnodeProcessVnodeCfgMsg(SMnodeMsg *pMsg) ; static void mnodeSendDropVgroupMsg(SVgObj *pVgroup, void *ahandle); @@ -238,6 +239,7 @@ int32_t mnodeInitVgroups() { mnodeAddPeerRspHandle(TSDB_MSG_TYPE_MD_CREATE_VNODE_RSP, mnodeProcessCreateVnodeRsp); mnodeAddPeerRspHandle(TSDB_MSG_TYPE_MD_ALTER_VNODE_RSP, mnodeProcessAlterVnodeRsp); mnodeAddPeerRspHandle(TSDB_MSG_TYPE_MD_ALTER_VNODE_RSP, mnodeProcessSyncVnodeRsp); + mnodeAddPeerRspHandle(TSDB_MSG_TYPE_MD_COMPACT_VNODE_RSP, mnodeProcessCompactVnodeRsp); mnodeAddPeerRspHandle(TSDB_MSG_TYPE_MD_DROP_VNODE_RSP, mnodeProcessDropVnodeRsp); mnodeAddPeerMsgHandle(TSDB_MSG_TYPE_DM_CONFIG_VNODE, mnodeProcessVnodeCfgMsg); @@ -977,6 +979,7 @@ static SSyncVnodeMsg *mnodeBuildSyncVnodeMsg(int32_t vgId) { return pSyncVnode; } + static void mnodeSendSyncVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet) { SSyncVnodeMsg *pSyncVnode = mnodeBuildSyncVnodeMsg(pVgroup->vgId); SRpcMsg rpcMsg = { @@ -989,6 +992,18 @@ static void mnodeSendSyncVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet) { dnodeSendMsgToDnode(epSet, &rpcMsg); } +static void mnodeSendCompactVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet) { + SSyncVnodeMsg *pSyncVnode = mnodeBuildSyncVnodeMsg(pVgroup->vgId); + SRpcMsg rpcMsg = { + .ahandle = NULL, + .pCont = pSyncVnode, + .contLen = pSyncVnode ? sizeof(SCompactVnodeMsg) : 0, + .code = 0, + .msgType = TSDB_MSG_TYPE_MD_COMPACT_VNODE + }; + + dnodeSendMsgToDnode(epSet, &rpcMsg); +} void mnodeSendSyncVgroupMsg(SVgObj *pVgroup) { mDebug("vgId:%d, send sync all vnodes msg, numOfVnodes:%d db:%s", pVgroup->vgId, pVgroup->numOfVnodes, @@ -1002,6 +1017,17 @@ void mnodeSendSyncVgroupMsg(SVgObj *pVgroup) { } } +void mnodeSendCompactVgroupMsg(SVgObj *pVgroup) { + mDebug("vgId:%d, send compact all vnodes msg, numOfVnodes:%d db:%s", pVgroup->vgId, pVgroup->numOfVnodes, pVgroup->dbName); + for (int32_t i = 0; i < pVgroup->numOfVnodes; ++i) { + if (pVgroup->vnodeGid[i].role != TAOS_SYNC_ROLE_SLAVE) continue; //TODO(yihaoDeng): compact slave or not ? + SRpcEpSet epSet = mnodeGetEpSetFromIp(pVgroup->vnodeGid[i].pDnode->dnodeEp); + mDebug("vgId:%d, index:%d, send compact vnode msg to dnode %s", pVgroup->vgId, i, + pVgroup->vnodeGid[i].pDnode->dnodeEp); + mnodeSendCompactVnodeMsg(pVgroup, &epSet); + } + +} static void mnodeSendCreateVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet, void *ahandle) { SCreateVnodeMsg *pCreate = mnodeBuildVnodeMsg(pVgroup); SRpcMsg rpcMsg = { @@ -1032,6 +1058,9 @@ static void mnodeProcessAlterVnodeRsp(SRpcMsg *rpcMsg) { static void mnodeProcessSyncVnodeRsp(SRpcMsg *rpcMsg) { mDebug("sync vnode rsp received"); } +static void mnodeProcessCompactVnodeRsp(SRpcMsg *rpcMsg) { + mDebug("compact vnode rsp received"); +} static void mnodeProcessCreateVnodeRsp(SRpcMsg *rpcMsg) { if (rpcMsg->ahandle == NULL) return; @@ -1328,4 +1357,4 @@ int32_t mnodeCompactVgroups() { mInfo("end to compact vgroups table..."); return 0; -} \ No newline at end of file +} diff --git a/src/query/inc/qSqlparser.h b/src/query/inc/qSqlparser.h index 2bdff1f94f..740acb678a 100644 --- a/src/query/inc/qSqlparser.h +++ b/src/query/inc/qSqlparser.h @@ -303,6 +303,8 @@ void setCreateUserSql(SSqlInfo *pInfo, SStrToken *pName, SStrToken *pPasswd); void setKillSql(SSqlInfo *pInfo, int32_t type, SStrToken *ip); void setAlterUserSql(SSqlInfo *pInfo, int16_t type, SStrToken *pName, SStrToken* pPwd, SStrToken *pPrivilege); +void setCompactVnodeSql(SSqlInfo *pInfo, int32_t type, SArray *pParam); + void setDefaultCreateDbOption(SCreateDbInfo *pDBInfo); void setDefaultCreateTopicOption(SCreateDbInfo *pDBInfo); diff --git a/src/query/inc/sql.y b/src/query/inc/sql.y index 8ef8ef0e2b..1ba28c0f1c 100644 --- a/src/query/inc/sql.y +++ b/src/query/inc/sql.y @@ -174,6 +174,10 @@ cmd ::= ALTER TOPIC ids(X) alter_topic_optr(Y). { SStrToken t = {0}; setCreateD cmd ::= ALTER ACCOUNT ids(X) acct_optr(Z). { setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &X, NULL, &Z);} cmd ::= ALTER ACCOUNT ids(X) PASS ids(Y) acct_optr(Z). { setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &X, &Y, &Z);} +////////////////////////////// COMPACT STATEMENT ////////////////////////////////////////////// + +cmd ::= COMPACT VNODES IN LP exprlist(Y) RP. { setCompactVnodeSql(pInfo, TSDB_SQL_COMPACT_VNODE, Y);} + // An IDENTIFIER can be a generic identifier, or one of several keywords. // Any non-standard keyword can also be an identifier. // And "ids" is an identifer-or-string. diff --git a/src/query/src/qSqlParser.c b/src/query/src/qSqlParser.c index 2459439b7b..38572ac2fd 100644 --- a/src/query/src/qSqlParser.c +++ b/src/query/src/qSqlParser.c @@ -1058,6 +1058,10 @@ void setCreateAcctSql(SSqlInfo *pInfo, int32_t type, SStrToken *pName, SStrToken pInfo->pMiscInfo->user.passwd = *pPwd; } } +void setCompactVnodeSql(SSqlInfo *pInfo, int32_t type, SArray *pParam) { + pInfo->type = type; + pInfo->list = pParam; +} void setCreateUserSql(SSqlInfo *pInfo, SStrToken *pName, SStrToken *pPasswd) { pInfo->type = TSDB_SQL_CREATE_USER; diff --git a/src/query/src/sql.c b/src/query/src/sql.c index 5a5038be79..38601b1631 100644 --- a/src/query/src/sql.c +++ b/src/query/src/sql.c @@ -1,123 +1,92 @@ -/* -** 2000-05-29 -** -** The author disclaims copyright to this source code. In place of -** a legal notice, here is a blessing: -** -** May you do good and not evil. -** May you find forgiveness for yourself and forgive others. -** May you share freely, never taking more than you give. -** -************************************************************************* -** Driver template for the LEMON parser generator. -** -** The "lemon" program processes an LALR(1) input grammar file, then uses -** this template to construct a parser. The "lemon" program inserts text -** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the -** interstitial "-" characters) contained in this template is changed into -** the value of the %name directive from the grammar. Otherwise, the content -** of this template is copied straight through into the generate parser -** source file. -** -** The following is the concatenation of all %include directives from the -** input grammar file: +/* Driver template for the LEMON parser generator. +** The author disclaims copyright to this source code. */ +/* First off, code is included that follows the "include" declaration +** in the input grammar file. */ #include -/************ Begin %include sections from the grammar ************************/ -#include -#include #include #include #include +#include +#include #include "qSqlparser.h" #include "tcmdtype.h" -#include "ttoken.h" +#include "tstoken.h" #include "ttokendef.h" #include "tutil.h" #include "tvariant.h" -/**************** End of %include directives **********************************/ -/* These constants specify the various numeric values for terminal symbols -** in a format understandable to "makeheaders". This section is blank unless -** "lemon" is run with the "-m" command-line option. -***************** Begin makeheaders token definitions *************************/ -/**************** End makeheaders token definitions ***************************/ - -/* The next sections is a series of control #defines. +/* Next is all token values, in a form suitable for use by makeheaders. +** This section will be null unless lemon is run with the -m switch. +*/ +/* +** These constants (all generated automatically by the parser generator) +** specify the various kinds of tokens (terminals) that the parser +** understands. +** +** Each symbol here is a terminal symbol in the grammar. +*/ +/* Make sure the INTERFACE macro is defined. +*/ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/* The next thing included is series of defines which control ** various aspects of the generated parser. -** YYCODETYPE is the data type used to store the integer codes -** that represent terminal and non-terminal symbols. -** "unsigned char" is used if there are fewer than -** 256 symbols. Larger types otherwise. -** YYNOCODE is a number of type YYCODETYPE that is not used for -** any terminal or nonterminal symbol. +** YYCODETYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 terminals +** and nonterminals. "int" is used otherwise. +** YYNOCODE is a number of type YYCODETYPE which corresponds +** to no legal terminal or nonterminal number. This +** number is used to fill in empty slots of the hash +** table. ** YYFALLBACK If defined, this indicates that one or more tokens -** (also known as: "terminal symbols") have fall-back -** values which should be used if the original symbol -** would not parse. This permits keywords to sometimes -** be used as identifiers, for example. -** YYACTIONTYPE is the data type used for "action codes" - numbers -** that indicate what to do in response to the next -** token. -** ParseTOKENTYPE is the data type used for minor type for terminal -** symbols. Background: A "minor type" is a semantic -** value associated with a terminal or non-terminal -** symbols. For example, for an "ID" terminal symbol, -** the minor type might be the name of the identifier. -** Each non-terminal can have a different minor type. -** Terminal symbols all have the same minor type, though. -** This macros defines the minor type for terminal -** symbols. -** YYMINORTYPE is the data type used for all minor types. +** have fall-back values which should be used if the +** original value of the token will not parse. +** YYACTIONTYPE is the data type used for storing terminal +** and nonterminal numbers. "unsigned char" is +** used if there are fewer than 250 rules and +** states combined. "int" is used otherwise. +** ParseTOKENTYPE is the data type used for minor tokens given +** directly to the parser from the tokenizer. +** YYMINORTYPE is the data type used for all minor tokens. ** This is typically a union of many types, one of ** which is ParseTOKENTYPE. The entry in the union -** for terminal symbols is called "yy0". +** for base tokens is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** ParseARG_SDECL A static variable declaration for the %extra_argument ** ParseARG_PDECL A parameter declaration for the %extra_argument ** ParseARG_STORE Code to store %extra_argument into yypParser ** ParseARG_FETCH Code to extract %extra_argument from yypParser -** YYERRORSYMBOL is the code number of the error symbol. If not -** defined, then do no error processing. ** YYNSTATE the combined number of states. ** YYNRULE the number of rules in the grammar -** YYNTOKEN Number of terminal symbols -** YY_MAX_SHIFT Maximum value for shift actions -** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions -** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions -** YY_ERROR_ACTION The yy_action[] code for syntax error -** YY_ACCEPT_ACTION The yy_action[] code for accept -** YY_NO_ACTION The yy_action[] code for no-op -** YY_MIN_REDUCE Minimum value for reduce actions -** YY_MAX_REDUCE Maximum value for reduce actions +** YYERRORSYMBOL is the code number of the error symbol. If not +** defined, then do no error processing. */ -#ifndef INTERFACE -# define INTERFACE 1 -#endif -/************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int -#define YYNOCODE 264 +#define YYNOCODE 265 #define YYACTIONTYPE unsigned short int #define ParseTOKENTYPE SStrToken typedef union { int yyinit; ParseTOKENTYPE yy0; - SCreateTableSql* yy14; - int yy20; - SSqlNode* yy116; - tSqlExpr* yy118; - SArray* yy159; - SIntervalVal yy184; - SCreatedTableInfo yy206; - SRelationInfo* yy236; - SSessionWindowVal yy249; - int64_t yy317; - SCreateDbInfo yy322; - SCreateAcctInfo yy351; - TAOS_FIELD yy407; - SLimitVal yy440; - tVariant yy488; + SCreatedTableInfo yy96; + SRelationInfo* yy148; + tSqlExpr* yy178; + SCreateAcctInfo yy187; + SArray* yy285; + TAOS_FIELD yy295; + SSqlNode* yy344; + tVariant yy362; + SIntervalVal yy376; + SLimitVal yy438; + int yy460; + SCreateTableSql* yy470; + SSessionWindowVal yy523; + int64_t yy525; + SCreateDbInfo yy526; } YYMINORTYPE; #ifndef YYSTACKDEPTH #define YYSTACKDEPTH 100 @@ -126,19 +95,16 @@ typedef union { #define ParseARG_PDECL ,SSqlInfo* pInfo #define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo #define ParseARG_STORE yypParser->pInfo = pInfo +#define YYNSTATE 517 +#define YYNRULE 271 #define YYFALLBACK 1 -#define YYNSTATE 317 -#define YYNRULE 270 -#define YYNTOKEN 187 -#define YY_MAX_SHIFT 316 -#define YY_MIN_SHIFTREDUCE 511 -#define YY_MAX_SHIFTREDUCE 780 -#define YY_ERROR_ACTION 781 -#define YY_ACCEPT_ACTION 782 -#define YY_NO_ACTION 783 -#define YY_MIN_REDUCE 784 -#define YY_MAX_REDUCE 1053 -/************* End control #defines *******************************************/ +#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) +#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) +#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) + +/* The yyzerominor constant is used to initialize instances of +** YYMINORTYPE objects to zero. */ +static const YYMINORTYPE yyzerominor = { 0 }; /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. @@ -161,35 +127,33 @@ typedef union { ** Suppose the action integer is N. Then the action is determined as ** follows ** -** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead +** 0 <= N < YYNSTATE Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** -** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then -** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. +** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. ** -** N == YY_ERROR_ACTION A syntax error has occurred. +** N == YYNSTATE+YYNRULE A syntax error has occurred. ** -** N == YY_ACCEPT_ACTION The parser accepts its input. +** N == YYNSTATE+YYNRULE+1 The parser accepts its input. ** -** N == YY_NO_ACTION No such action. Denotes unused +** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused ** slots in the yy_action[] table. ** -** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE -** and YY_MAX_REDUCE -** ** The action table is constructed as a single large table named yy_action[]. -** Given state S and lookahead X, the action is computed as either: +** Given state S and lookahead X, the action is computed as ** -** (A) N = yy_action[ yy_shift_ofst[S] + X ] -** (B) N = yy_default[S] +** yy_action[ yy_shift_ofst[S] + X ] ** -** The (A) formula is preferred. The B formula is used instead if -** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X. +** If the index value yy_shift_ofst[S]+X is out of range or if the value +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] +** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table +** and that yy_default[S] should be used instead. ** -** The formulas above are for computing the action when the lookahead is +** The formula above is for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of -** the yy_shift_ofst[] array. +** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of +** YY_SHIFT_USE_DFLT. ** ** The following are the tables generated in this section: ** @@ -201,268 +165,295 @@ typedef union { ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. -** -*********** Begin parsing tables **********************************************/ -#define YY_ACTTAB_COUNT (685) +*/ +#define YY_ACTTAB_COUNT (804) static const YYACTIONTYPE yy_action[] = { - /* 0 */ 925, 559, 206, 314, 211, 141, 952, 3, 168, 560, - /* 10 */ 782, 316, 134, 47, 48, 141, 51, 52, 30, 183, - /* 20 */ 217, 41, 183, 50, 264, 55, 53, 57, 54, 1034, - /* 30 */ 931, 214, 1035, 46, 45, 17, 183, 44, 43, 42, - /* 40 */ 47, 48, 223, 51, 52, 213, 1035, 217, 41, 559, - /* 50 */ 50, 264, 55, 53, 57, 54, 943, 560, 181, 208, - /* 60 */ 46, 45, 928, 222, 44, 43, 42, 48, 949, 51, - /* 70 */ 52, 244, 983, 217, 41, 249, 50, 264, 55, 53, - /* 80 */ 57, 54, 984, 638, 259, 85, 46, 45, 280, 931, - /* 90 */ 44, 43, 42, 512, 513, 514, 515, 516, 517, 518, - /* 100 */ 519, 520, 521, 522, 523, 524, 315, 943, 187, 207, - /* 110 */ 70, 290, 289, 47, 48, 30, 51, 52, 300, 919, - /* 120 */ 217, 41, 209, 50, 264, 55, 53, 57, 54, 44, - /* 130 */ 43, 42, 724, 46, 45, 674, 224, 44, 43, 42, - /* 140 */ 47, 49, 24, 51, 52, 228, 141, 217, 41, 559, - /* 150 */ 50, 264, 55, 53, 57, 54, 220, 560, 105, 928, - /* 160 */ 46, 45, 931, 300, 44, 43, 42, 23, 278, 309, - /* 170 */ 308, 277, 276, 275, 307, 274, 306, 305, 304, 273, - /* 180 */ 303, 302, 891, 30, 879, 880, 881, 882, 883, 884, - /* 190 */ 885, 886, 887, 888, 889, 890, 892, 893, 51, 52, - /* 200 */ 830, 1031, 217, 41, 167, 50, 264, 55, 53, 57, - /* 210 */ 54, 261, 18, 78, 230, 46, 45, 287, 286, 44, - /* 220 */ 43, 42, 216, 739, 221, 30, 728, 928, 731, 192, - /* 230 */ 734, 216, 739, 310, 1030, 728, 193, 731, 236, 734, - /* 240 */ 30, 118, 117, 191, 677, 559, 240, 239, 55, 53, - /* 250 */ 57, 54, 25, 560, 202, 203, 46, 45, 263, 931, - /* 260 */ 44, 43, 42, 202, 203, 74, 283, 61, 23, 928, - /* 270 */ 309, 308, 74, 36, 730, 307, 733, 306, 305, 304, - /* 280 */ 36, 303, 302, 899, 927, 662, 897, 898, 659, 62, - /* 290 */ 660, 900, 661, 902, 903, 901, 82, 904, 905, 103, - /* 300 */ 97, 108, 243, 917, 68, 30, 107, 113, 116, 106, - /* 310 */ 199, 5, 33, 157, 141, 110, 231, 232, 156, 92, - /* 320 */ 87, 91, 681, 226, 30, 56, 30, 914, 915, 29, - /* 330 */ 918, 729, 740, 732, 56, 175, 173, 171, 736, 1, - /* 340 */ 155, 740, 170, 121, 120, 119, 284, 736, 229, 928, - /* 350 */ 265, 46, 45, 69, 735, 44, 43, 42, 839, 666, - /* 360 */ 12, 667, 167, 735, 84, 288, 81, 292, 928, 215, - /* 370 */ 928, 313, 312, 126, 132, 130, 129, 80, 705, 706, - /* 380 */ 831, 79, 280, 929, 167, 916, 737, 245, 726, 684, - /* 390 */ 71, 31, 227, 994, 663, 282, 690, 247, 696, 697, - /* 400 */ 136, 760, 60, 20, 741, 19, 64, 648, 19, 241, - /* 410 */ 267, 31, 650, 6, 31, 269, 60, 1029, 649, 83, - /* 420 */ 28, 200, 60, 270, 727, 201, 65, 96, 95, 185, - /* 430 */ 14, 13, 993, 102, 101, 67, 218, 637, 16, 15, - /* 440 */ 664, 186, 665, 738, 115, 114, 743, 188, 182, 189, - /* 450 */ 190, 196, 197, 195, 180, 194, 184, 133, 1045, 990, - /* 460 */ 930, 989, 219, 291, 39, 951, 959, 944, 961, 135, - /* 470 */ 139, 976, 248, 975, 926, 131, 152, 151, 924, 153, - /* 480 */ 250, 154, 689, 210, 252, 150, 257, 145, 142, 842, - /* 490 */ 941, 143, 272, 144, 262, 37, 146, 66, 58, 178, - /* 500 */ 63, 260, 34, 258, 256, 281, 838, 147, 1050, 254, - /* 510 */ 93, 1049, 1047, 158, 285, 1044, 99, 148, 1043, 1041, - /* 520 */ 159, 860, 251, 35, 32, 38, 149, 179, 827, 109, - /* 530 */ 825, 111, 112, 823, 822, 233, 169, 820, 819, 818, - /* 540 */ 817, 816, 815, 172, 174, 40, 812, 810, 808, 806, - /* 550 */ 176, 803, 177, 301, 246, 72, 75, 104, 253, 977, - /* 560 */ 293, 294, 295, 296, 297, 204, 225, 298, 271, 299, - /* 570 */ 311, 780, 205, 198, 234, 88, 89, 235, 779, 237, - /* 580 */ 238, 778, 766, 765, 242, 247, 821, 814, 162, 266, - /* 590 */ 122, 861, 160, 165, 161, 164, 163, 166, 123, 124, - /* 600 */ 813, 805, 895, 125, 804, 2, 8, 73, 4, 669, - /* 610 */ 76, 691, 137, 212, 694, 86, 138, 77, 907, 255, - /* 620 */ 9, 698, 140, 26, 742, 7, 27, 11, 10, 21, - /* 630 */ 84, 744, 22, 268, 601, 597, 595, 594, 593, 590, - /* 640 */ 563, 279, 94, 90, 31, 59, 640, 639, 636, 585, - /* 650 */ 583, 98, 575, 581, 577, 579, 573, 571, 604, 603, - /* 660 */ 602, 600, 599, 100, 598, 596, 592, 591, 60, 561, - /* 670 */ 528, 784, 526, 783, 783, 783, 783, 783, 783, 127, - /* 680 */ 783, 783, 783, 783, 128, + /* 0 */ 500, 48, 47, 31, 68, 46, 45, 44, 499, 789, + /* 10 */ 321, 517, 49, 50, 503, 53, 54, 116, 115, 226, + /* 20 */ 43, 224, 52, 281, 57, 55, 58, 56, 133, 131, + /* 30 */ 130, 431, 48, 47, 17, 16, 46, 45, 44, 49, + /* 40 */ 50, 6, 53, 54, 29, 297, 226, 43, 429, 52, + /* 50 */ 281, 57, 55, 58, 56, 472, 336, 471, 283, 48, + /* 60 */ 47, 103, 102, 46, 45, 44, 49, 50, 339, 53, + /* 70 */ 54, 246, 269, 226, 43, 25, 52, 281, 57, 55, + /* 80 */ 58, 56, 318, 317, 127, 238, 48, 47, 500, 502, + /* 90 */ 46, 45, 44, 242, 241, 230, 499, 83, 46, 45, + /* 100 */ 44, 49, 51, 129, 53, 54, 228, 420, 226, 43, + /* 110 */ 71, 52, 281, 57, 55, 58, 56, 414, 411, 413, + /* 120 */ 410, 48, 47, 434, 62, 46, 45, 44, 368, 367, + /* 130 */ 30, 361, 516, 515, 514, 513, 512, 511, 510, 509, + /* 140 */ 508, 507, 506, 505, 504, 320, 63, 50, 208, 53, + /* 150 */ 54, 295, 294, 226, 43, 419, 52, 281, 57, 55, + /* 160 */ 58, 56, 15, 14, 421, 232, 48, 47, 292, 291, + /* 170 */ 46, 45, 44, 53, 54, 128, 229, 226, 43, 287, + /* 180 */ 52, 281, 57, 55, 58, 56, 470, 447, 469, 651, + /* 190 */ 48, 47, 168, 20, 46, 45, 44, 373, 491, 385, + /* 200 */ 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, + /* 210 */ 374, 372, 371, 24, 277, 314, 313, 276, 275, 274, + /* 220 */ 312, 273, 311, 310, 309, 272, 308, 307, 225, 404, + /* 230 */ 412, 409, 415, 467, 408, 185, 407, 402, 500, 19, + /* 240 */ 57, 55, 58, 56, 395, 227, 499, 142, 48, 47, + /* 250 */ 97, 96, 46, 45, 44, 13, 193, 31, 31, 397, + /* 260 */ 204, 205, 417, 194, 282, 65, 20, 365, 119, 118, + /* 270 */ 192, 279, 225, 404, 286, 75, 415, 268, 408, 457, + /* 280 */ 407, 466, 459, 458, 85, 66, 82, 456, 20, 454, + /* 290 */ 453, 455, 142, 452, 451, 31, 61, 329, 416, 293, + /* 300 */ 289, 185, 429, 429, 204, 205, 84, 59, 37, 24, + /* 310 */ 396, 314, 313, 263, 222, 79, 312, 26, 311, 310, + /* 320 */ 309, 223, 308, 307, 3, 169, 104, 98, 109, 435, + /* 330 */ 245, 81, 69, 108, 114, 117, 107, 288, 200, 403, + /* 340 */ 429, 465, 111, 31, 72, 405, 176, 174, 172, 364, + /* 350 */ 31, 59, 31, 171, 122, 121, 120, 5, 34, 158, + /* 360 */ 347, 406, 261, 31, 157, 93, 88, 92, 474, 266, + /* 370 */ 185, 477, 360, 476, 343, 475, 328, 185, 61, 396, + /* 380 */ 344, 341, 334, 403, 247, 217, 396, 75, 429, 405, + /* 390 */ 352, 351, 216, 70, 209, 429, 500, 429, 32, 233, + /* 400 */ 234, 32, 231, 21, 499, 406, 1, 156, 436, 61, + /* 410 */ 137, 393, 86, 32, 448, 249, 168, 362, 142, 168, + /* 420 */ 37, 106, 142, 135, 336, 327, 207, 319, 315, 305, + /* 430 */ 330, 220, 218, 212, 61, 464, 463, 462, 430, 210, + /* 440 */ 461, 460, 450, 446, 445, 444, 366, 443, 442, 441, + /* 450 */ 440, 439, 32, 433, 468, 432, 101, 468, 468, 468, + /* 460 */ 219, 99, 95, 60, 285, 284, 8, 418, 401, 7, + /* 470 */ 91, 278, 391, 392, 390, 389, 388, 387, 473, 87, + /* 480 */ 85, 23, 386, 267, 22, 265, 80, 251, 12, 11, + /* 490 */ 348, 28, 10, 332, 27, 141, 213, 345, 257, 78, + /* 500 */ 138, 139, 342, 340, 337, 9, 77, 74, 244, 326, + /* 510 */ 324, 249, 240, 239, 323, 237, 236, 325, 322, 2, + /* 520 */ 4, 498, 132, 497, 449, 126, 492, 164, 125, 124, + /* 530 */ 490, 316, 123, 483, 306, 167, 304, 302, 299, 303, + /* 540 */ 300, 301, 199, 206, 298, 166, 165, 163, 105, 270, + /* 550 */ 90, 89, 162, 370, 221, 161, 279, 437, 151, 41, + /* 560 */ 150, 146, 201, 143, 64, 259, 149, 350, 254, 255, + /* 570 */ 211, 148, 76, 73, 147, 248, 253, 178, 790, 256, + /* 580 */ 501, 258, 790, 260, 346, 177, 790, 264, 790, 790, + /* 590 */ 262, 496, 495, 42, 494, 145, 359, 67, 152, 493, + /* 600 */ 250, 144, 175, 173, 358, 489, 488, 296, 790, 335, + /* 610 */ 790, 790, 215, 790, 252, 790, 40, 790, 790, 487, + /* 620 */ 353, 486, 790, 349, 790, 790, 485, 357, 790, 790, + /* 630 */ 790, 790, 790, 790, 356, 305, 790, 790, 214, 790, + /* 640 */ 790, 355, 790, 790, 790, 790, 790, 790, 790, 790, + /* 650 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + /* 660 */ 790, 790, 790, 790, 790, 790, 790, 484, 170, 235, + /* 670 */ 482, 481, 113, 112, 480, 790, 110, 479, 180, 39, + /* 680 */ 790, 33, 36, 438, 160, 428, 427, 790, 100, 426, + /* 690 */ 290, 159, 424, 423, 94, 422, 394, 790, 280, 790, + /* 700 */ 35, 790, 790, 179, 38, 790, 271, 369, 155, 154, + /* 710 */ 363, 153, 140, 136, 338, 333, 331, 134, 243, 790, + /* 720 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + /* 730 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + /* 740 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + /* 750 */ 790, 790, 790, 790, 790, 790, 354, 790, 790, 790, + /* 760 */ 790, 790, 790, 790, 790, 790, 478, 425, 790, 790, + /* 770 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + /* 780 */ 790, 790, 790, 790, 181, 195, 198, 197, 196, 191, + /* 790 */ 190, 184, 189, 187, 186, 203, 202, 400, 399, 398, + /* 800 */ 188, 183, 182, 18, }; static const YYCODETYPE yy_lookahead[] = { - /* 0 */ 191, 1, 190, 191, 210, 191, 191, 194, 195, 9, - /* 10 */ 188, 189, 191, 13, 14, 191, 16, 17, 191, 252, - /* 20 */ 20, 21, 252, 23, 24, 25, 26, 27, 28, 262, - /* 30 */ 236, 261, 262, 33, 34, 252, 252, 37, 38, 39, - /* 40 */ 13, 14, 233, 16, 17, 261, 262, 20, 21, 1, - /* 50 */ 23, 24, 25, 26, 27, 28, 234, 9, 252, 232, - /* 60 */ 33, 34, 235, 210, 37, 38, 39, 14, 253, 16, - /* 70 */ 17, 249, 258, 20, 21, 254, 23, 24, 25, 26, - /* 80 */ 27, 28, 258, 5, 260, 197, 33, 34, 79, 236, - /* 90 */ 37, 38, 39, 45, 46, 47, 48, 49, 50, 51, - /* 100 */ 52, 53, 54, 55, 56, 57, 58, 234, 252, 61, - /* 110 */ 110, 33, 34, 13, 14, 191, 16, 17, 81, 231, - /* 120 */ 20, 21, 249, 23, 24, 25, 26, 27, 28, 37, - /* 130 */ 38, 39, 105, 33, 34, 109, 210, 37, 38, 39, - /* 140 */ 13, 14, 116, 16, 17, 68, 191, 20, 21, 1, - /* 150 */ 23, 24, 25, 26, 27, 28, 232, 9, 76, 235, - /* 160 */ 33, 34, 236, 81, 37, 38, 39, 88, 89, 90, - /* 170 */ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, - /* 180 */ 101, 102, 209, 191, 211, 212, 213, 214, 215, 216, - /* 190 */ 217, 218, 219, 220, 221, 222, 223, 224, 16, 17, - /* 200 */ 196, 252, 20, 21, 200, 23, 24, 25, 26, 27, - /* 210 */ 28, 256, 44, 258, 137, 33, 34, 140, 141, 37, - /* 220 */ 38, 39, 1, 2, 232, 191, 5, 235, 7, 61, - /* 230 */ 9, 1, 2, 210, 252, 5, 68, 7, 135, 9, - /* 240 */ 191, 73, 74, 75, 37, 1, 143, 144, 25, 26, - /* 250 */ 27, 28, 104, 9, 33, 34, 33, 34, 37, 236, - /* 260 */ 37, 38, 39, 33, 34, 104, 232, 109, 88, 235, - /* 270 */ 90, 91, 104, 112, 5, 95, 7, 97, 98, 99, - /* 280 */ 112, 101, 102, 209, 235, 2, 212, 213, 5, 131, - /* 290 */ 7, 217, 9, 219, 220, 221, 197, 223, 224, 62, - /* 300 */ 63, 64, 134, 0, 136, 191, 69, 70, 71, 72, - /* 310 */ 142, 62, 63, 64, 191, 78, 33, 34, 69, 70, - /* 320 */ 71, 72, 115, 68, 191, 104, 191, 228, 229, 230, - /* 330 */ 231, 5, 111, 7, 104, 62, 63, 64, 117, 198, - /* 340 */ 199, 111, 69, 70, 71, 72, 232, 117, 191, 235, - /* 350 */ 15, 33, 34, 197, 133, 37, 38, 39, 196, 5, - /* 360 */ 104, 7, 200, 133, 108, 232, 110, 232, 235, 60, - /* 370 */ 235, 65, 66, 67, 62, 63, 64, 237, 124, 125, - /* 380 */ 196, 258, 79, 226, 200, 229, 117, 105, 1, 105, - /* 390 */ 250, 109, 137, 227, 111, 140, 105, 113, 105, 105, - /* 400 */ 109, 105, 109, 109, 105, 109, 109, 105, 109, 191, - /* 410 */ 105, 109, 105, 104, 109, 105, 109, 252, 105, 109, - /* 420 */ 104, 252, 109, 107, 37, 252, 129, 138, 139, 252, - /* 430 */ 138, 139, 227, 138, 139, 104, 227, 106, 138, 139, - /* 440 */ 5, 252, 7, 117, 76, 77, 111, 252, 252, 252, - /* 450 */ 252, 252, 252, 252, 252, 252, 252, 191, 236, 227, - /* 460 */ 236, 227, 227, 227, 251, 191, 191, 234, 191, 191, - /* 470 */ 191, 259, 234, 259, 234, 60, 191, 238, 191, 191, - /* 480 */ 255, 191, 117, 255, 255, 239, 255, 244, 247, 191, - /* 490 */ 248, 246, 191, 245, 122, 191, 243, 128, 127, 191, - /* 500 */ 130, 126, 191, 121, 120, 191, 191, 242, 191, 119, - /* 510 */ 191, 191, 191, 191, 191, 191, 191, 241, 191, 191, - /* 520 */ 191, 191, 118, 191, 191, 191, 240, 191, 191, 191, - /* 530 */ 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, - /* 540 */ 191, 191, 191, 191, 191, 132, 191, 191, 191, 191, - /* 550 */ 191, 191, 191, 103, 192, 192, 192, 87, 192, 192, - /* 560 */ 86, 50, 83, 85, 54, 192, 192, 84, 192, 82, - /* 570 */ 79, 5, 192, 192, 145, 197, 197, 5, 5, 145, - /* 580 */ 5, 5, 90, 89, 135, 113, 192, 192, 202, 107, - /* 590 */ 193, 208, 207, 204, 206, 203, 205, 201, 193, 193, - /* 600 */ 192, 192, 225, 193, 192, 198, 104, 114, 194, 105, - /* 610 */ 109, 105, 104, 1, 105, 76, 109, 104, 225, 104, - /* 620 */ 123, 105, 104, 109, 105, 104, 109, 104, 123, 104, - /* 630 */ 108, 111, 104, 107, 9, 5, 5, 5, 5, 5, - /* 640 */ 80, 15, 139, 76, 109, 16, 5, 5, 105, 5, - /* 650 */ 5, 139, 5, 5, 5, 5, 5, 5, 5, 5, - /* 660 */ 5, 5, 5, 139, 5, 5, 5, 5, 109, 80, - /* 670 */ 60, 0, 59, 263, 263, 263, 263, 263, 263, 21, - /* 680 */ 263, 263, 263, 263, 21, 263, 263, 263, 263, 263, - /* 690 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 700 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 710 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 720 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 730 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 740 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 750 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 760 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 770 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 780 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 790 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 800 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 810 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 820 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 830 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 840 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 850 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 860 */ 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, - /* 870 */ 263, 263, + /* 0 */ 1, 33, 34, 192, 80, 37, 38, 39, 9, 189, + /* 10 */ 190, 0, 13, 14, 59, 16, 17, 76, 77, 20, + /* 20 */ 21, 60, 23, 24, 25, 26, 27, 28, 62, 63, + /* 30 */ 64, 107, 33, 34, 139, 140, 37, 38, 39, 13, + /* 40 */ 14, 80, 16, 17, 80, 234, 20, 21, 237, 23, + /* 50 */ 24, 25, 26, 27, 28, 5, 236, 7, 15, 33, + /* 60 */ 34, 139, 140, 37, 38, 39, 13, 14, 110, 16, + /* 70 */ 17, 251, 108, 20, 21, 117, 23, 24, 25, 26, + /* 80 */ 27, 28, 65, 66, 67, 136, 33, 34, 1, 60, + /* 90 */ 37, 38, 39, 144, 145, 68, 9, 199, 37, 38, + /* 100 */ 39, 13, 14, 21, 16, 17, 68, 81, 20, 21, + /* 110 */ 111, 23, 24, 25, 26, 27, 28, 5, 5, 7, + /* 120 */ 7, 33, 34, 5, 110, 37, 38, 39, 230, 231, + /* 130 */ 232, 233, 45, 46, 47, 48, 49, 50, 51, 52, + /* 140 */ 53, 54, 55, 56, 57, 58, 132, 14, 61, 16, + /* 150 */ 17, 33, 34, 20, 21, 112, 23, 24, 25, 26, + /* 160 */ 27, 28, 139, 140, 81, 138, 33, 34, 141, 142, + /* 170 */ 37, 38, 39, 16, 17, 21, 138, 20, 21, 141, + /* 180 */ 23, 24, 25, 26, 27, 28, 5, 197, 7, 0, + /* 190 */ 33, 34, 202, 110, 37, 38, 39, 211, 83, 213, + /* 200 */ 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, + /* 210 */ 224, 225, 226, 91, 92, 93, 94, 95, 96, 97, + /* 220 */ 98, 99, 100, 101, 102, 103, 104, 105, 1, 2, + /* 230 */ 118, 118, 5, 5, 7, 254, 9, 81, 1, 44, + /* 240 */ 25, 26, 27, 28, 263, 198, 9, 192, 33, 34, + /* 250 */ 139, 140, 37, 38, 39, 80, 61, 192, 192, 81, + /* 260 */ 33, 34, 1, 68, 37, 110, 110, 81, 73, 74, + /* 270 */ 75, 82, 1, 2, 79, 80, 5, 81, 7, 211, + /* 280 */ 9, 5, 214, 215, 109, 130, 111, 219, 110, 221, + /* 290 */ 222, 223, 192, 225, 226, 192, 110, 37, 37, 234, + /* 300 */ 234, 254, 237, 237, 33, 34, 110, 80, 113, 91, + /* 310 */ 263, 93, 94, 258, 198, 260, 98, 80, 100, 101, + /* 320 */ 102, 198, 104, 105, 195, 196, 62, 63, 64, 81, + /* 330 */ 135, 239, 137, 69, 70, 71, 72, 234, 143, 112, + /* 340 */ 237, 5, 78, 192, 252, 118, 62, 63, 64, 81, + /* 350 */ 192, 80, 192, 69, 70, 71, 72, 62, 63, 64, + /* 360 */ 260, 134, 262, 192, 69, 70, 71, 72, 2, 81, + /* 370 */ 254, 5, 81, 7, 81, 9, 116, 254, 110, 263, + /* 380 */ 81, 81, 81, 112, 81, 234, 263, 80, 237, 118, + /* 390 */ 125, 126, 234, 199, 234, 237, 1, 237, 110, 33, + /* 400 */ 34, 110, 192, 110, 9, 134, 200, 201, 237, 110, + /* 410 */ 110, 197, 199, 110, 197, 114, 202, 192, 192, 202, + /* 420 */ 113, 76, 192, 192, 236, 231, 191, 192, 212, 84, + /* 430 */ 192, 212, 212, 212, 110, 5, 5, 5, 228, 251, + /* 440 */ 5, 5, 5, 5, 5, 5, 233, 5, 5, 5, + /* 450 */ 5, 5, 110, 5, 238, 5, 140, 238, 238, 238, + /* 460 */ 235, 140, 140, 16, 58, 24, 80, 112, 81, 80, + /* 470 */ 76, 15, 5, 83, 5, 5, 5, 5, 112, 76, + /* 480 */ 109, 80, 9, 108, 80, 108, 260, 256, 80, 124, + /* 490 */ 260, 110, 124, 255, 110, 80, 1, 81, 80, 80, + /* 500 */ 80, 110, 81, 81, 81, 80, 110, 115, 136, 92, + /* 510 */ 5, 114, 5, 146, 5, 5, 146, 93, 5, 200, + /* 520 */ 195, 193, 60, 193, 227, 194, 193, 207, 194, 194, + /* 530 */ 193, 82, 194, 193, 106, 203, 85, 54, 50, 87, + /* 540 */ 86, 88, 193, 193, 89, 206, 205, 204, 90, 193, + /* 550 */ 199, 199, 208, 227, 193, 209, 82, 210, 241, 133, + /* 560 */ 242, 246, 193, 249, 131, 257, 243, 193, 257, 193, + /* 570 */ 257, 244, 193, 193, 245, 193, 119, 192, 264, 120, + /* 580 */ 192, 121, 264, 122, 118, 192, 264, 123, 264, 264, + /* 590 */ 127, 192, 192, 128, 192, 247, 236, 129, 240, 192, + /* 600 */ 236, 248, 192, 192, 250, 192, 192, 229, 264, 236, + /* 610 */ 264, 264, 229, 264, 257, 264, 253, 264, 264, 192, + /* 620 */ 261, 192, 264, 261, 264, 264, 192, 229, 264, 264, + /* 630 */ 264, 264, 264, 264, 229, 84, 264, 264, 229, 264, + /* 640 */ 264, 229, 264, 264, 264, 264, 264, 264, 264, 264, + /* 650 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 660 */ 264, 264, 264, 264, 264, 264, 264, 192, 192, 192, + /* 670 */ 192, 192, 192, 192, 192, 264, 192, 192, 192, 192, + /* 680 */ 264, 192, 192, 192, 192, 192, 192, 264, 192, 192, + /* 690 */ 192, 192, 192, 192, 192, 192, 192, 264, 192, 264, + /* 700 */ 192, 264, 264, 192, 192, 264, 192, 192, 192, 192, + /* 710 */ 192, 192, 192, 192, 192, 192, 192, 192, 192, 264, + /* 720 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 730 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 740 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 750 */ 264, 264, 264, 264, 264, 264, 229, 264, 264, 264, + /* 760 */ 264, 264, 264, 264, 264, 264, 238, 238, 264, 264, + /* 770 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 780 */ 264, 264, 264, 264, 254, 254, 254, 254, 254, 254, + /* 790 */ 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, + /* 800 */ 254, 254, 254, 254, }; -#define YY_SHIFT_COUNT (316) -#define YY_SHIFT_MIN (0) -#define YY_SHIFT_MAX (671) -static const unsigned short int yy_shift_ofst[] = { - /* 0 */ 168, 79, 79, 180, 180, 9, 221, 230, 244, 244, - /* 10 */ 244, 244, 244, 244, 244, 244, 244, 0, 48, 230, - /* 20 */ 283, 283, 283, 283, 148, 161, 244, 244, 244, 303, - /* 30 */ 244, 244, 82, 9, 37, 37, 685, 685, 685, 230, - /* 40 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 50 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 283, - /* 60 */ 283, 78, 78, 78, 78, 78, 78, 78, 244, 244, - /* 70 */ 244, 207, 244, 161, 161, 244, 244, 244, 254, 254, - /* 80 */ 26, 161, 244, 244, 244, 244, 244, 244, 244, 244, - /* 90 */ 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - /* 100 */ 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - /* 110 */ 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - /* 120 */ 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - /* 130 */ 244, 244, 244, 415, 415, 415, 365, 365, 365, 415, - /* 140 */ 365, 415, 369, 370, 371, 372, 375, 382, 384, 390, - /* 150 */ 404, 413, 415, 415, 415, 450, 9, 9, 415, 415, - /* 160 */ 470, 474, 511, 479, 478, 510, 483, 487, 450, 415, - /* 170 */ 491, 491, 415, 491, 415, 491, 415, 415, 685, 685, - /* 180 */ 27, 100, 127, 100, 100, 53, 182, 223, 223, 223, - /* 190 */ 223, 237, 249, 273, 318, 318, 318, 318, 77, 103, - /* 200 */ 92, 92, 269, 326, 256, 255, 306, 312, 282, 284, - /* 210 */ 291, 293, 294, 296, 299, 387, 309, 335, 158, 297, - /* 220 */ 302, 305, 307, 310, 313, 316, 289, 292, 295, 331, - /* 230 */ 300, 354, 435, 368, 566, 429, 572, 573, 434, 575, - /* 240 */ 576, 492, 494, 449, 472, 482, 502, 493, 504, 501, - /* 250 */ 506, 508, 509, 507, 513, 612, 515, 516, 518, 514, - /* 260 */ 497, 517, 505, 519, 521, 520, 523, 482, 525, 526, - /* 270 */ 528, 522, 539, 625, 630, 631, 632, 633, 634, 560, - /* 280 */ 626, 567, 503, 535, 535, 629, 512, 524, 535, 641, - /* 290 */ 642, 543, 535, 644, 645, 647, 648, 649, 650, 651, - /* 300 */ 652, 653, 654, 655, 656, 657, 659, 660, 661, 662, - /* 310 */ 559, 589, 658, 663, 610, 613, 671, +#define YY_SHIFT_USE_DFLT (-106) +#define YY_SHIFT_COUNT (321) +#define YY_SHIFT_MIN (-105) +#define YY_SHIFT_MAX (551) +static const short yy_shift_ofst[] = { + /* 0 */ 195, 122, 122, 218, 218, 474, 227, 271, 271, 395, + /* 10 */ 395, 395, 395, 395, 395, 395, 395, 395, -1, 87, + /* 20 */ 271, 366, 366, 366, 366, 237, 307, 395, 395, 395, + /* 30 */ 189, 395, 395, 345, 474, 551, 551, -106, -106, -106, + /* 40 */ 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + /* 50 */ 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + /* 60 */ 366, 366, 118, 118, 118, 118, 118, 118, 118, 395, + /* 70 */ 395, 395, 260, 395, 307, 307, 395, 395, 395, 265, + /* 80 */ 265, -42, 307, 395, 395, 395, 395, 395, 395, 395, + /* 90 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, + /* 100 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, + /* 110 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, + /* 120 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, + /* 130 */ 395, 395, 395, 395, 462, 462, 462, 466, 466, 466, + /* 140 */ 462, 466, 462, 468, 433, 465, 464, 463, 461, 460, + /* 150 */ 459, 457, 426, 462, 462, 462, 428, 474, 474, 462, + /* 160 */ 462, 458, 455, 488, 454, 453, 483, 452, 451, 428, + /* 170 */ 462, 449, 449, 462, 449, 462, 449, 462, 462, -106, + /* 180 */ -106, 26, 53, 53, 88, 53, 133, 157, 215, 215, + /* 190 */ 215, 215, 264, 295, 284, -32, -32, -32, -32, 27, + /* 200 */ -51, 175, 61, 61, 113, 112, 38, 17, -34, 303, + /* 210 */ 301, 300, 299, 293, 14, 155, 291, 288, 268, 196, + /* 220 */ 186, -36, 178, 156, 261, -39, 43, 83, 111, 23, + /* 230 */ -78, -76, -105, 181, 50, -59, 513, 370, 510, 509, + /* 240 */ 367, 507, 505, 424, 417, 372, 397, 377, 425, 392, + /* 250 */ 423, 396, 422, 420, 421, 391, 419, 495, 418, 416, + /* 260 */ 415, 384, 368, 381, 365, 408, 377, 404, 375, 401, + /* 270 */ 371, 403, 473, 472, 471, 470, 469, 467, 390, 456, + /* 280 */ 394, 389, 387, 355, 386, 441, 406, 322, 342, 342, + /* 290 */ 447, 321, 316, 342, 450, 448, 248, 342, 446, 445, + /* 300 */ 444, 443, 442, 440, 439, 438, 437, 436, 435, 432, + /* 310 */ 431, 430, 336, 276, 228, 324, 115, 154, 82, 29, + /* 320 */ -45, 11, }; -#define YY_REDUCE_COUNT (179) -#define YY_REDUCE_MIN (-233) -#define YY_REDUCE_MAX (414) +#define YY_REDUCE_USE_DFLT (-190) +#define YY_REDUCE_COUNT (180) +#define YY_REDUCE_MIN (-189) +#define YY_REDUCE_MAX (549) static const short yy_reduce_ofst[] = { - /* 0 */ -178, -27, -27, 74, 74, 99, -230, -216, -173, -176, - /* 10 */ -45, -76, -8, 34, 114, 133, 135, -185, -188, -233, - /* 20 */ -206, -147, -74, 23, -179, -127, -186, 123, -191, -112, - /* 30 */ 157, 49, 4, 156, 162, 184, 140, 141, -187, -217, - /* 40 */ -194, -144, -51, -18, 165, 169, 173, 177, 189, 195, - /* 50 */ 196, 197, 198, 199, 200, 201, 202, 203, 204, 222, - /* 60 */ 224, 166, 205, 209, 232, 234, 235, 236, 218, 266, - /* 70 */ 274, 213, 275, 233, 238, 277, 278, 279, 212, 214, - /* 80 */ 239, 240, 285, 287, 288, 290, 298, 301, 304, 308, - /* 90 */ 311, 314, 315, 317, 319, 320, 321, 322, 323, 324, - /* 100 */ 325, 327, 328, 329, 330, 332, 333, 334, 336, 337, - /* 110 */ 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, - /* 120 */ 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, - /* 130 */ 359, 360, 361, 362, 363, 364, 225, 228, 229, 366, - /* 140 */ 231, 367, 242, 241, 245, 248, 243, 253, 265, 276, - /* 150 */ 286, 246, 373, 374, 376, 377, 378, 379, 380, 381, - /* 160 */ 383, 385, 388, 386, 391, 392, 389, 396, 393, 394, - /* 170 */ 397, 405, 395, 406, 408, 410, 409, 412, 407, 414, + /* 0 */ -180, -14, -14, 68, 68, -102, 123, 116, 47, 160, + /* 10 */ 100, 55, 158, 151, 103, 66, 65, -189, 238, 235, + /* 20 */ -19, 221, 220, 219, 216, 231, 188, 230, 226, 225, + /* 30 */ 213, 210, 171, 217, 194, 214, -10, 92, 206, 129, + /* 40 */ 549, 548, 547, 546, 545, 544, 543, 542, 541, 540, + /* 50 */ 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, + /* 60 */ 529, 528, 527, 412, 409, 405, 398, 383, 378, 526, + /* 70 */ 525, 524, 363, 523, 373, 364, 522, 521, 520, 362, + /* 80 */ 359, 358, 360, 519, 518, 517, 516, 515, 514, 512, + /* 90 */ 511, 508, 506, 504, 503, 502, 501, 500, 499, 498, + /* 100 */ 497, 496, 494, 493, 492, 491, 490, 489, 487, 486, + /* 110 */ 485, 484, 482, 481, 480, 479, 478, 477, 476, 475, + /* 120 */ 434, 429, 427, 414, 413, 411, 410, 407, 402, 400, + /* 130 */ 399, 393, 388, 385, 382, 380, 379, 357, 313, 311, + /* 140 */ 376, 308, 374, 354, 314, 353, 348, 315, 329, 327, + /* 150 */ 323, 318, 317, 369, 361, 356, 326, 352, 351, 350, + /* 160 */ 349, 347, 346, 344, 343, 320, 341, 339, 332, 297, + /* 170 */ 340, 338, 335, 337, 334, 333, 331, 330, 328, 319, + /* 180 */ 325, }; static const YYACTIONTYPE yy_default[] = { - /* 0 */ 781, 894, 840, 906, 828, 837, 1037, 1037, 781, 781, - /* 10 */ 781, 781, 781, 781, 781, 781, 781, 953, 800, 1037, - /* 20 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 837, - /* 30 */ 781, 781, 843, 837, 843, 843, 948, 878, 896, 781, - /* 40 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 50 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 60 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 70 */ 781, 955, 958, 781, 781, 960, 781, 781, 980, 980, - /* 80 */ 946, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 90 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 100 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 826, - /* 110 */ 781, 824, 781, 781, 781, 781, 781, 781, 781, 781, - /* 120 */ 781, 781, 781, 781, 781, 781, 811, 781, 781, 781, - /* 130 */ 781, 781, 781, 802, 802, 802, 781, 781, 781, 802, - /* 140 */ 781, 802, 987, 991, 985, 973, 981, 972, 968, 966, - /* 150 */ 965, 995, 802, 802, 802, 841, 837, 837, 802, 802, - /* 160 */ 859, 857, 855, 847, 853, 849, 851, 845, 829, 802, - /* 170 */ 835, 835, 802, 835, 802, 835, 802, 802, 878, 896, - /* 180 */ 781, 996, 781, 1036, 986, 1026, 1025, 1032, 1024, 1023, - /* 190 */ 1022, 781, 781, 781, 1018, 1019, 1021, 1020, 781, 781, - /* 200 */ 1028, 1027, 781, 781, 781, 781, 781, 781, 781, 781, - /* 210 */ 781, 781, 781, 781, 781, 781, 998, 781, 992, 988, - /* 220 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 908, - /* 230 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 240 */ 781, 781, 781, 781, 945, 781, 781, 781, 781, 956, - /* 250 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 982, - /* 260 */ 781, 974, 781, 781, 781, 781, 781, 920, 781, 781, - /* 270 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 280 */ 781, 781, 781, 1048, 1046, 781, 781, 781, 1042, 781, - /* 290 */ 781, 781, 1040, 781, 781, 781, 781, 781, 781, 781, - /* 300 */ 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - /* 310 */ 862, 781, 809, 807, 781, 798, 781, + /* 0 */ 788, 628, 574, 640, 561, 571, 771, 771, 771, 788, + /* 10 */ 788, 788, 788, 788, 788, 788, 788, 788, 687, 533, + /* 20 */ 771, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 30 */ 571, 788, 788, 577, 571, 577, 577, 682, 612, 630, + /* 40 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 50 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 60 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 70 */ 788, 788, 689, 692, 788, 788, 694, 788, 788, 714, + /* 80 */ 714, 680, 788, 788, 788, 788, 788, 788, 788, 788, + /* 90 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 100 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 110 */ 559, 788, 557, 788, 788, 788, 788, 788, 788, 788, + /* 120 */ 788, 788, 788, 788, 788, 788, 788, 544, 788, 788, + /* 130 */ 788, 788, 788, 788, 535, 535, 535, 788, 788, 788, + /* 140 */ 535, 788, 535, 721, 725, 719, 707, 715, 706, 702, + /* 150 */ 700, 699, 729, 535, 535, 535, 575, 571, 571, 535, + /* 160 */ 535, 593, 591, 589, 581, 587, 583, 585, 579, 562, + /* 170 */ 535, 569, 569, 535, 569, 535, 569, 535, 535, 612, + /* 180 */ 630, 788, 730, 720, 788, 770, 760, 759, 766, 758, + /* 190 */ 757, 756, 788, 788, 788, 752, 755, 754, 753, 788, + /* 200 */ 788, 788, 762, 761, 788, 788, 788, 788, 788, 788, + /* 210 */ 788, 788, 788, 788, 726, 722, 788, 788, 788, 788, + /* 220 */ 788, 788, 788, 788, 788, 732, 788, 788, 788, 788, + /* 230 */ 788, 642, 788, 788, 788, 788, 788, 788, 788, 788, + /* 240 */ 788, 788, 788, 788, 788, 788, 679, 788, 788, 788, + /* 250 */ 788, 690, 788, 788, 788, 788, 788, 788, 788, 788, + /* 260 */ 788, 716, 788, 708, 788, 788, 654, 788, 788, 788, + /* 270 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 280 */ 788, 788, 788, 788, 788, 788, 788, 788, 782, 780, + /* 290 */ 788, 788, 788, 776, 788, 788, 788, 774, 788, 788, + /* 300 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 310 */ 788, 788, 788, 788, 788, 596, 788, 542, 540, 788, + /* 320 */ 531, 788, 787, 786, 785, 773, 772, 650, 688, 684, + /* 330 */ 686, 685, 683, 693, 691, 678, 677, 676, 695, 681, + /* 340 */ 698, 697, 701, 704, 703, 705, 696, 718, 717, 710, + /* 350 */ 711, 713, 712, 709, 728, 727, 724, 723, 675, 660, + /* 360 */ 655, 652, 659, 658, 657, 656, 653, 649, 648, 576, + /* 370 */ 629, 627, 626, 625, 624, 623, 622, 621, 620, 619, + /* 380 */ 618, 617, 616, 615, 614, 613, 608, 604, 602, 601, + /* 390 */ 600, 597, 570, 573, 572, 768, 769, 767, 765, 764, + /* 400 */ 763, 749, 748, 747, 746, 743, 742, 741, 738, 744, + /* 410 */ 740, 737, 745, 739, 736, 735, 734, 733, 751, 750, + /* 420 */ 731, 565, 784, 783, 781, 779, 778, 777, 775, 662, + /* 430 */ 663, 644, 647, 646, 645, 643, 661, 595, 594, 592, + /* 440 */ 590, 582, 588, 584, 586, 580, 578, 564, 563, 641, + /* 450 */ 611, 639, 638, 637, 636, 635, 634, 633, 632, 631, + /* 460 */ 610, 609, 607, 606, 605, 603, 599, 598, 665, 674, + /* 470 */ 673, 672, 671, 670, 669, 668, 667, 666, 664, 560, + /* 480 */ 558, 556, 555, 554, 553, 552, 551, 550, 549, 548, + /* 490 */ 547, 568, 546, 545, 543, 541, 539, 538, 537, 567, + /* 500 */ 566, 536, 534, 532, 530, 529, 528, 527, 526, 525, + /* 510 */ 524, 523, 522, 521, 520, 519, 518, }; -/********** End of lemon-generated parsing tables *****************************/ -/* The next table maps tokens (terminal symbols) into fallback tokens. -** If a construct like the following: +/* The next table maps tokens into fallback tokens. If a construct +** like the following: ** ** %fallback ID X Y Z. ** @@ -470,10 +461,6 @@ static const YYACTIONTYPE yy_default[] = { ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. -** -** This feature can be used, for example, to cause some keywords in a language -** to revert to identifiers if they keyword does not apply in the context where -** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { @@ -556,6 +543,9 @@ static const YYCODETYPE yyFallback[] = { 0, /* PASS => nothing */ 0, /* PRIVILEGE => nothing */ 0, /* LOCAL => nothing */ + 0, /* COMPACT => nothing */ + 0, /* LP => nothing */ + 0, /* RP => nothing */ 0, /* IF => nothing */ 0, /* EXISTS => nothing */ 0, /* PPS => nothing */ @@ -581,8 +571,6 @@ static const YYCODETYPE yyFallback[] = { 0, /* UPDATE => nothing */ 0, /* CACHELAST => nothing */ 0, /* PARTITIONS => nothing */ - 0, /* LP => nothing */ - 0, /* RP => nothing */ 0, /* UNSIGNED => nothing */ 0, /* TAGS => nothing */ 0, /* USING => nothing */ @@ -678,13 +666,9 @@ static const YYCODETYPE yyFallback[] = { ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. -** -** After the "shift" half of a SHIFTREDUCE action, the stateno field -** actually contains the reduce action for the second half of the -** SHIFTREDUCE. */ struct yyStackEntry { - YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ + YYACTIONTYPE stateno; /* The state-number */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This @@ -695,21 +679,17 @@ typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { - yyStackEntry *yytos; /* Pointer to top element of the stack */ + int yyidx; /* Index of top element in stack */ #ifdef YYTRACKMAXSTACKDEPTH - int yyhwm; /* High-water mark of the stack */ + int yyidxMax; /* Maximum value of yyidx */ #endif -#ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ -#endif ParseARG_SDECL /* A place to hold %extra_argument */ #if YYSTACKDEPTH<=0 int yystksz; /* Current side of the stack */ yyStackEntry *yystack; /* The parser's stack */ - yyStackEntry yystk0; /* First stack entry */ #else yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ - yyStackEntry *yystackEnd; /* Last entry in the stack */ #endif }; typedef struct yyParser yyParser; @@ -746,275 +726,78 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ } #endif /* NDEBUG */ -#if defined(YYCOVERAGE) || !defined(NDEBUG) +#ifndef NDEBUG /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *const yyTokenName[] = { - /* 0 */ "$", - /* 1 */ "ID", - /* 2 */ "BOOL", - /* 3 */ "TINYINT", - /* 4 */ "SMALLINT", - /* 5 */ "INTEGER", - /* 6 */ "BIGINT", - /* 7 */ "FLOAT", - /* 8 */ "DOUBLE", - /* 9 */ "STRING", - /* 10 */ "TIMESTAMP", - /* 11 */ "BINARY", - /* 12 */ "NCHAR", - /* 13 */ "OR", - /* 14 */ "AND", - /* 15 */ "NOT", - /* 16 */ "EQ", - /* 17 */ "NE", - /* 18 */ "ISNULL", - /* 19 */ "NOTNULL", - /* 20 */ "IS", - /* 21 */ "LIKE", - /* 22 */ "GLOB", - /* 23 */ "BETWEEN", - /* 24 */ "IN", - /* 25 */ "GT", - /* 26 */ "GE", - /* 27 */ "LT", - /* 28 */ "LE", - /* 29 */ "BITAND", - /* 30 */ "BITOR", - /* 31 */ "LSHIFT", - /* 32 */ "RSHIFT", - /* 33 */ "PLUS", - /* 34 */ "MINUS", - /* 35 */ "DIVIDE", - /* 36 */ "TIMES", - /* 37 */ "STAR", - /* 38 */ "SLASH", - /* 39 */ "REM", - /* 40 */ "CONCAT", - /* 41 */ "UMINUS", - /* 42 */ "UPLUS", - /* 43 */ "BITNOT", - /* 44 */ "SHOW", - /* 45 */ "DATABASES", - /* 46 */ "TOPICS", - /* 47 */ "MNODES", - /* 48 */ "DNODES", - /* 49 */ "ACCOUNTS", - /* 50 */ "USERS", - /* 51 */ "MODULES", - /* 52 */ "QUERIES", - /* 53 */ "CONNECTIONS", - /* 54 */ "STREAMS", - /* 55 */ "VARIABLES", - /* 56 */ "SCORES", - /* 57 */ "GRANTS", - /* 58 */ "VNODES", - /* 59 */ "IPTOKEN", - /* 60 */ "DOT", - /* 61 */ "CREATE", - /* 62 */ "TABLE", - /* 63 */ "STABLE", - /* 64 */ "DATABASE", - /* 65 */ "TABLES", - /* 66 */ "STABLES", - /* 67 */ "VGROUPS", - /* 68 */ "DROP", - /* 69 */ "TOPIC", - /* 70 */ "DNODE", - /* 71 */ "USER", - /* 72 */ "ACCOUNT", - /* 73 */ "USE", - /* 74 */ "DESCRIBE", - /* 75 */ "ALTER", - /* 76 */ "PASS", - /* 77 */ "PRIVILEGE", - /* 78 */ "LOCAL", - /* 79 */ "IF", - /* 80 */ "EXISTS", - /* 81 */ "PPS", - /* 82 */ "TSERIES", - /* 83 */ "DBS", - /* 84 */ "STORAGE", - /* 85 */ "QTIME", - /* 86 */ "CONNS", - /* 87 */ "STATE", - /* 88 */ "KEEP", - /* 89 */ "CACHE", - /* 90 */ "REPLICA", - /* 91 */ "QUORUM", - /* 92 */ "DAYS", - /* 93 */ "MINROWS", - /* 94 */ "MAXROWS", - /* 95 */ "BLOCKS", - /* 96 */ "CTIME", - /* 97 */ "WAL", - /* 98 */ "FSYNC", - /* 99 */ "COMP", - /* 100 */ "PRECISION", - /* 101 */ "UPDATE", - /* 102 */ "CACHELAST", - /* 103 */ "PARTITIONS", - /* 104 */ "LP", - /* 105 */ "RP", - /* 106 */ "UNSIGNED", - /* 107 */ "TAGS", - /* 108 */ "USING", - /* 109 */ "COMMA", - /* 110 */ "AS", - /* 111 */ "NULL", - /* 112 */ "SELECT", - /* 113 */ "UNION", - /* 114 */ "ALL", - /* 115 */ "DISTINCT", - /* 116 */ "FROM", - /* 117 */ "VARIABLE", - /* 118 */ "INTERVAL", - /* 119 */ "SESSION", - /* 120 */ "FILL", - /* 121 */ "SLIDING", - /* 122 */ "ORDER", - /* 123 */ "BY", - /* 124 */ "ASC", - /* 125 */ "DESC", - /* 126 */ "GROUP", - /* 127 */ "HAVING", - /* 128 */ "LIMIT", - /* 129 */ "OFFSET", - /* 130 */ "SLIMIT", - /* 131 */ "SOFFSET", - /* 132 */ "WHERE", - /* 133 */ "NOW", - /* 134 */ "RESET", - /* 135 */ "QUERY", - /* 136 */ "SYNCDB", - /* 137 */ "ADD", - /* 138 */ "COLUMN", - /* 139 */ "TAG", - /* 140 */ "CHANGE", - /* 141 */ "SET", - /* 142 */ "KILL", - /* 143 */ "CONNECTION", - /* 144 */ "STREAM", - /* 145 */ "COLON", - /* 146 */ "ABORT", - /* 147 */ "AFTER", - /* 148 */ "ATTACH", - /* 149 */ "BEFORE", - /* 150 */ "BEGIN", - /* 151 */ "CASCADE", - /* 152 */ "CLUSTER", - /* 153 */ "CONFLICT", - /* 154 */ "COPY", - /* 155 */ "DEFERRED", - /* 156 */ "DELIMITERS", - /* 157 */ "DETACH", - /* 158 */ "EACH", - /* 159 */ "END", - /* 160 */ "EXPLAIN", - /* 161 */ "FAIL", - /* 162 */ "FOR", - /* 163 */ "IGNORE", - /* 164 */ "IMMEDIATE", - /* 165 */ "INITIALLY", - /* 166 */ "INSTEAD", - /* 167 */ "MATCH", - /* 168 */ "KEY", - /* 169 */ "OF", - /* 170 */ "RAISE", - /* 171 */ "REPLACE", - /* 172 */ "RESTRICT", - /* 173 */ "ROW", - /* 174 */ "STATEMENT", - /* 175 */ "TRIGGER", - /* 176 */ "VIEW", - /* 177 */ "SEMI", - /* 178 */ "NONE", - /* 179 */ "PREV", - /* 180 */ "LINEAR", - /* 181 */ "IMPORT", - /* 182 */ "TBNAME", - /* 183 */ "JOIN", - /* 184 */ "INSERT", - /* 185 */ "INTO", - /* 186 */ "VALUES", - /* 187 */ "error", - /* 188 */ "program", - /* 189 */ "cmd", - /* 190 */ "dbPrefix", - /* 191 */ "ids", - /* 192 */ "cpxName", - /* 193 */ "ifexists", - /* 194 */ "alter_db_optr", - /* 195 */ "alter_topic_optr", - /* 196 */ "acct_optr", - /* 197 */ "ifnotexists", - /* 198 */ "db_optr", - /* 199 */ "topic_optr", - /* 200 */ "pps", - /* 201 */ "tseries", - /* 202 */ "dbs", - /* 203 */ "streams", - /* 204 */ "storage", - /* 205 */ "qtime", - /* 206 */ "users", - /* 207 */ "conns", - /* 208 */ "state", - /* 209 */ "keep", - /* 210 */ "tagitemlist", - /* 211 */ "cache", - /* 212 */ "replica", - /* 213 */ "quorum", - /* 214 */ "days", - /* 215 */ "minrows", - /* 216 */ "maxrows", - /* 217 */ "blocks", - /* 218 */ "ctime", - /* 219 */ "wal", - /* 220 */ "fsync", - /* 221 */ "comp", - /* 222 */ "prec", - /* 223 */ "update", - /* 224 */ "cachelast", - /* 225 */ "partitions", - /* 226 */ "typename", - /* 227 */ "signed", - /* 228 */ "create_table_args", - /* 229 */ "create_stable_args", - /* 230 */ "create_table_list", - /* 231 */ "create_from_stable", - /* 232 */ "columnlist", - /* 233 */ "tagNamelist", - /* 234 */ "select", - /* 235 */ "column", - /* 236 */ "tagitem", - /* 237 */ "selcollist", - /* 238 */ "from", - /* 239 */ "where_opt", - /* 240 */ "interval_opt", - /* 241 */ "session_option", - /* 242 */ "fill_opt", - /* 243 */ "sliding_opt", - /* 244 */ "groupby_opt", - /* 245 */ "orderby_opt", - /* 246 */ "having_opt", - /* 247 */ "slimit_opt", - /* 248 */ "limit_opt", - /* 249 */ "union", - /* 250 */ "sclp", - /* 251 */ "distinct", - /* 252 */ "expr", - /* 253 */ "as", - /* 254 */ "tablelist", - /* 255 */ "tmvar", - /* 256 */ "sortlist", - /* 257 */ "sortitem", - /* 258 */ "item", - /* 259 */ "sortorder", - /* 260 */ "grouplist", - /* 261 */ "exprlist", - /* 262 */ "expritem", + "$", "ID", "BOOL", "TINYINT", + "SMALLINT", "INTEGER", "BIGINT", "FLOAT", + "DOUBLE", "STRING", "TIMESTAMP", "BINARY", + "NCHAR", "OR", "AND", "NOT", + "EQ", "NE", "ISNULL", "NOTNULL", + "IS", "LIKE", "GLOB", "BETWEEN", + "IN", "GT", "GE", "LT", + "LE", "BITAND", "BITOR", "LSHIFT", + "RSHIFT", "PLUS", "MINUS", "DIVIDE", + "TIMES", "STAR", "SLASH", "REM", + "CONCAT", "UMINUS", "UPLUS", "BITNOT", + "SHOW", "DATABASES", "TOPICS", "MNODES", + "DNODES", "ACCOUNTS", "USERS", "MODULES", + "QUERIES", "CONNECTIONS", "STREAMS", "VARIABLES", + "SCORES", "GRANTS", "VNODES", "IPTOKEN", + "DOT", "CREATE", "TABLE", "STABLE", + "DATABASE", "TABLES", "STABLES", "VGROUPS", + "DROP", "TOPIC", "DNODE", "USER", + "ACCOUNT", "USE", "DESCRIBE", "ALTER", + "PASS", "PRIVILEGE", "LOCAL", "COMPACT", + "LP", "RP", "IF", "EXISTS", + "PPS", "TSERIES", "DBS", "STORAGE", + "QTIME", "CONNS", "STATE", "KEEP", + "CACHE", "REPLICA", "QUORUM", "DAYS", + "MINROWS", "MAXROWS", "BLOCKS", "CTIME", + "WAL", "FSYNC", "COMP", "PRECISION", + "UPDATE", "CACHELAST", "PARTITIONS", "UNSIGNED", + "TAGS", "USING", "COMMA", "AS", + "NULL", "SELECT", "UNION", "ALL", + "DISTINCT", "FROM", "VARIABLE", "INTERVAL", + "SESSION", "FILL", "SLIDING", "ORDER", + "BY", "ASC", "DESC", "GROUP", + "HAVING", "LIMIT", "OFFSET", "SLIMIT", + "SOFFSET", "WHERE", "NOW", "RESET", + "QUERY", "SYNCDB", "ADD", "COLUMN", + "TAG", "CHANGE", "SET", "KILL", + "CONNECTION", "STREAM", "COLON", "ABORT", + "AFTER", "ATTACH", "BEFORE", "BEGIN", + "CASCADE", "CLUSTER", "CONFLICT", "COPY", + "DEFERRED", "DELIMITERS", "DETACH", "EACH", + "END", "EXPLAIN", "FAIL", "FOR", + "IGNORE", "IMMEDIATE", "INITIALLY", "INSTEAD", + "MATCH", "KEY", "OF", "RAISE", + "REPLACE", "RESTRICT", "ROW", "STATEMENT", + "TRIGGER", "VIEW", "SEMI", "NONE", + "PREV", "LINEAR", "IMPORT", "TBNAME", + "JOIN", "INSERT", "INTO", "VALUES", + "error", "program", "cmd", "dbPrefix", + "ids", "cpxName", "ifexists", "alter_db_optr", + "alter_topic_optr", "acct_optr", "exprlist", "ifnotexists", + "db_optr", "topic_optr", "pps", "tseries", + "dbs", "streams", "storage", "qtime", + "users", "conns", "state", "keep", + "tagitemlist", "cache", "replica", "quorum", + "days", "minrows", "maxrows", "blocks", + "ctime", "wal", "fsync", "comp", + "prec", "update", "cachelast", "partitions", + "typename", "signed", "create_table_args", "create_stable_args", + "create_table_list", "create_from_stable", "columnlist", "tagNamelist", + "select", "column", "tagitem", "selcollist", + "from", "where_opt", "interval_opt", "session_option", + "fill_opt", "sliding_opt", "groupby_opt", "orderby_opt", + "having_opt", "slimit_opt", "limit_opt", "union", + "sclp", "distinct", "expr", "as", + "tablelist", "tmvar", "sortlist", "sortitem", + "item", "sortorder", "grouplist", "expritem", }; -#endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ +#endif /* NDEBUG */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. @@ -1068,302 +851,256 @@ static const char *const yyRuleName[] = { /* 45 */ "cmd ::= ALTER TOPIC ids alter_topic_optr", /* 46 */ "cmd ::= ALTER ACCOUNT ids acct_optr", /* 47 */ "cmd ::= ALTER ACCOUNT ids PASS ids acct_optr", - /* 48 */ "ids ::= ID", - /* 49 */ "ids ::= STRING", - /* 50 */ "ifexists ::= IF EXISTS", - /* 51 */ "ifexists ::=", - /* 52 */ "ifnotexists ::= IF NOT EXISTS", - /* 53 */ "ifnotexists ::=", - /* 54 */ "cmd ::= CREATE DNODE ids", - /* 55 */ "cmd ::= CREATE ACCOUNT ids PASS ids acct_optr", - /* 56 */ "cmd ::= CREATE DATABASE ifnotexists ids db_optr", - /* 57 */ "cmd ::= CREATE TOPIC ifnotexists ids topic_optr", - /* 58 */ "cmd ::= CREATE USER ids PASS ids", - /* 59 */ "pps ::=", - /* 60 */ "pps ::= PPS INTEGER", - /* 61 */ "tseries ::=", - /* 62 */ "tseries ::= TSERIES INTEGER", - /* 63 */ "dbs ::=", - /* 64 */ "dbs ::= DBS INTEGER", - /* 65 */ "streams ::=", - /* 66 */ "streams ::= STREAMS INTEGER", - /* 67 */ "storage ::=", - /* 68 */ "storage ::= STORAGE INTEGER", - /* 69 */ "qtime ::=", - /* 70 */ "qtime ::= QTIME INTEGER", - /* 71 */ "users ::=", - /* 72 */ "users ::= USERS INTEGER", - /* 73 */ "conns ::=", - /* 74 */ "conns ::= CONNS INTEGER", - /* 75 */ "state ::=", - /* 76 */ "state ::= STATE ids", - /* 77 */ "acct_optr ::= pps tseries storage streams qtime dbs users conns state", - /* 78 */ "keep ::= KEEP tagitemlist", - /* 79 */ "cache ::= CACHE INTEGER", - /* 80 */ "replica ::= REPLICA INTEGER", - /* 81 */ "quorum ::= QUORUM INTEGER", - /* 82 */ "days ::= DAYS INTEGER", - /* 83 */ "minrows ::= MINROWS INTEGER", - /* 84 */ "maxrows ::= MAXROWS INTEGER", - /* 85 */ "blocks ::= BLOCKS INTEGER", - /* 86 */ "ctime ::= CTIME INTEGER", - /* 87 */ "wal ::= WAL INTEGER", - /* 88 */ "fsync ::= FSYNC INTEGER", - /* 89 */ "comp ::= COMP INTEGER", - /* 90 */ "prec ::= PRECISION STRING", - /* 91 */ "update ::= UPDATE INTEGER", - /* 92 */ "cachelast ::= CACHELAST INTEGER", - /* 93 */ "partitions ::= PARTITIONS INTEGER", - /* 94 */ "db_optr ::=", - /* 95 */ "db_optr ::= db_optr cache", - /* 96 */ "db_optr ::= db_optr replica", - /* 97 */ "db_optr ::= db_optr quorum", - /* 98 */ "db_optr ::= db_optr days", - /* 99 */ "db_optr ::= db_optr minrows", - /* 100 */ "db_optr ::= db_optr maxrows", - /* 101 */ "db_optr ::= db_optr blocks", - /* 102 */ "db_optr ::= db_optr ctime", - /* 103 */ "db_optr ::= db_optr wal", - /* 104 */ "db_optr ::= db_optr fsync", - /* 105 */ "db_optr ::= db_optr comp", - /* 106 */ "db_optr ::= db_optr prec", - /* 107 */ "db_optr ::= db_optr keep", - /* 108 */ "db_optr ::= db_optr update", - /* 109 */ "db_optr ::= db_optr cachelast", - /* 110 */ "topic_optr ::= db_optr", - /* 111 */ "topic_optr ::= topic_optr partitions", - /* 112 */ "alter_db_optr ::=", - /* 113 */ "alter_db_optr ::= alter_db_optr replica", - /* 114 */ "alter_db_optr ::= alter_db_optr quorum", - /* 115 */ "alter_db_optr ::= alter_db_optr keep", - /* 116 */ "alter_db_optr ::= alter_db_optr blocks", - /* 117 */ "alter_db_optr ::= alter_db_optr comp", - /* 118 */ "alter_db_optr ::= alter_db_optr wal", - /* 119 */ "alter_db_optr ::= alter_db_optr fsync", - /* 120 */ "alter_db_optr ::= alter_db_optr update", - /* 121 */ "alter_db_optr ::= alter_db_optr cachelast", - /* 122 */ "alter_topic_optr ::= alter_db_optr", - /* 123 */ "alter_topic_optr ::= alter_topic_optr partitions", - /* 124 */ "typename ::= ids", - /* 125 */ "typename ::= ids LP signed RP", - /* 126 */ "typename ::= ids UNSIGNED", - /* 127 */ "signed ::= INTEGER", - /* 128 */ "signed ::= PLUS INTEGER", - /* 129 */ "signed ::= MINUS INTEGER", - /* 130 */ "cmd ::= CREATE TABLE create_table_args", - /* 131 */ "cmd ::= CREATE TABLE create_stable_args", - /* 132 */ "cmd ::= CREATE STABLE create_stable_args", - /* 133 */ "cmd ::= CREATE TABLE create_table_list", - /* 134 */ "create_table_list ::= create_from_stable", - /* 135 */ "create_table_list ::= create_table_list create_from_stable", - /* 136 */ "create_table_args ::= ifnotexists ids cpxName LP columnlist RP", - /* 137 */ "create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP", - /* 138 */ "create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP", - /* 139 */ "create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP", - /* 140 */ "tagNamelist ::= tagNamelist COMMA ids", - /* 141 */ "tagNamelist ::= ids", - /* 142 */ "create_table_args ::= ifnotexists ids cpxName AS select", - /* 143 */ "columnlist ::= columnlist COMMA column", - /* 144 */ "columnlist ::= column", - /* 145 */ "column ::= ids typename", - /* 146 */ "tagitemlist ::= tagitemlist COMMA tagitem", - /* 147 */ "tagitemlist ::= tagitem", - /* 148 */ "tagitem ::= INTEGER", - /* 149 */ "tagitem ::= FLOAT", - /* 150 */ "tagitem ::= STRING", - /* 151 */ "tagitem ::= BOOL", - /* 152 */ "tagitem ::= NULL", - /* 153 */ "tagitem ::= MINUS INTEGER", - /* 154 */ "tagitem ::= MINUS FLOAT", - /* 155 */ "tagitem ::= PLUS INTEGER", - /* 156 */ "tagitem ::= PLUS FLOAT", - /* 157 */ "select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt", - /* 158 */ "select ::= LP select RP", - /* 159 */ "union ::= select", - /* 160 */ "union ::= union UNION ALL select", - /* 161 */ "cmd ::= union", - /* 162 */ "select ::= SELECT selcollist", - /* 163 */ "sclp ::= selcollist COMMA", - /* 164 */ "sclp ::=", - /* 165 */ "selcollist ::= sclp distinct expr as", - /* 166 */ "selcollist ::= sclp STAR", - /* 167 */ "as ::= AS ids", - /* 168 */ "as ::= ids", - /* 169 */ "as ::=", - /* 170 */ "distinct ::= DISTINCT", - /* 171 */ "distinct ::=", - /* 172 */ "from ::= FROM tablelist", - /* 173 */ "from ::= FROM LP union RP", - /* 174 */ "tablelist ::= ids cpxName", - /* 175 */ "tablelist ::= ids cpxName ids", - /* 176 */ "tablelist ::= tablelist COMMA ids cpxName", - /* 177 */ "tablelist ::= tablelist COMMA ids cpxName ids", - /* 178 */ "tmvar ::= VARIABLE", - /* 179 */ "interval_opt ::= INTERVAL LP tmvar RP", - /* 180 */ "interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP", - /* 181 */ "interval_opt ::=", - /* 182 */ "session_option ::=", - /* 183 */ "session_option ::= SESSION LP ids cpxName COMMA tmvar RP", - /* 184 */ "fill_opt ::=", - /* 185 */ "fill_opt ::= FILL LP ID COMMA tagitemlist RP", - /* 186 */ "fill_opt ::= FILL LP ID RP", - /* 187 */ "sliding_opt ::= SLIDING LP tmvar RP", - /* 188 */ "sliding_opt ::=", - /* 189 */ "orderby_opt ::=", - /* 190 */ "orderby_opt ::= ORDER BY sortlist", - /* 191 */ "sortlist ::= sortlist COMMA item sortorder", - /* 192 */ "sortlist ::= item sortorder", - /* 193 */ "item ::= ids cpxName", - /* 194 */ "sortorder ::= ASC", - /* 195 */ "sortorder ::= DESC", - /* 196 */ "sortorder ::=", - /* 197 */ "groupby_opt ::=", - /* 198 */ "groupby_opt ::= GROUP BY grouplist", - /* 199 */ "grouplist ::= grouplist COMMA item", - /* 200 */ "grouplist ::= item", - /* 201 */ "having_opt ::=", - /* 202 */ "having_opt ::= HAVING expr", - /* 203 */ "limit_opt ::=", - /* 204 */ "limit_opt ::= LIMIT signed", - /* 205 */ "limit_opt ::= LIMIT signed OFFSET signed", - /* 206 */ "limit_opt ::= LIMIT signed COMMA signed", - /* 207 */ "slimit_opt ::=", - /* 208 */ "slimit_opt ::= SLIMIT signed", - /* 209 */ "slimit_opt ::= SLIMIT signed SOFFSET signed", - /* 210 */ "slimit_opt ::= SLIMIT signed COMMA signed", - /* 211 */ "where_opt ::=", - /* 212 */ "where_opt ::= WHERE expr", - /* 213 */ "expr ::= LP expr RP", - /* 214 */ "expr ::= ID", - /* 215 */ "expr ::= ID DOT ID", - /* 216 */ "expr ::= ID DOT STAR", - /* 217 */ "expr ::= INTEGER", - /* 218 */ "expr ::= MINUS INTEGER", - /* 219 */ "expr ::= PLUS INTEGER", - /* 220 */ "expr ::= FLOAT", - /* 221 */ "expr ::= MINUS FLOAT", - /* 222 */ "expr ::= PLUS FLOAT", - /* 223 */ "expr ::= STRING", - /* 224 */ "expr ::= NOW", - /* 225 */ "expr ::= VARIABLE", - /* 226 */ "expr ::= PLUS VARIABLE", - /* 227 */ "expr ::= MINUS VARIABLE", - /* 228 */ "expr ::= BOOL", - /* 229 */ "expr ::= NULL", - /* 230 */ "expr ::= ID LP exprlist RP", - /* 231 */ "expr ::= ID LP STAR RP", - /* 232 */ "expr ::= expr IS NULL", - /* 233 */ "expr ::= expr IS NOT NULL", - /* 234 */ "expr ::= expr LT expr", - /* 235 */ "expr ::= expr GT expr", - /* 236 */ "expr ::= expr LE expr", - /* 237 */ "expr ::= expr GE expr", - /* 238 */ "expr ::= expr NE expr", - /* 239 */ "expr ::= expr EQ expr", - /* 240 */ "expr ::= expr BETWEEN expr AND expr", - /* 241 */ "expr ::= expr AND expr", - /* 242 */ "expr ::= expr OR expr", - /* 243 */ "expr ::= expr PLUS expr", - /* 244 */ "expr ::= expr MINUS expr", - /* 245 */ "expr ::= expr STAR expr", - /* 246 */ "expr ::= expr SLASH expr", - /* 247 */ "expr ::= expr REM expr", - /* 248 */ "expr ::= expr LIKE expr", - /* 249 */ "expr ::= expr IN LP exprlist RP", - /* 250 */ "exprlist ::= exprlist COMMA expritem", - /* 251 */ "exprlist ::= expritem", - /* 252 */ "expritem ::= expr", - /* 253 */ "expritem ::=", - /* 254 */ "cmd ::= RESET QUERY CACHE", - /* 255 */ "cmd ::= SYNCDB ids REPLICA", - /* 256 */ "cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist", - /* 257 */ "cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids", - /* 258 */ "cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist", - /* 259 */ "cmd ::= ALTER TABLE ids cpxName DROP TAG ids", - /* 260 */ "cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids", - /* 261 */ "cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem", - /* 262 */ "cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist", - /* 263 */ "cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids", - /* 264 */ "cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist", - /* 265 */ "cmd ::= ALTER STABLE ids cpxName DROP TAG ids", - /* 266 */ "cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids", - /* 267 */ "cmd ::= KILL CONNECTION INTEGER", - /* 268 */ "cmd ::= KILL STREAM INTEGER COLON INTEGER", - /* 269 */ "cmd ::= KILL QUERY INTEGER COLON INTEGER", + /* 48 */ "cmd ::= COMPACT VNODES IN LP exprlist RP", + /* 49 */ "ids ::= ID", + /* 50 */ "ids ::= STRING", + /* 51 */ "ifexists ::= IF EXISTS", + /* 52 */ "ifexists ::=", + /* 53 */ "ifnotexists ::= IF NOT EXISTS", + /* 54 */ "ifnotexists ::=", + /* 55 */ "cmd ::= CREATE DNODE ids", + /* 56 */ "cmd ::= CREATE ACCOUNT ids PASS ids acct_optr", + /* 57 */ "cmd ::= CREATE DATABASE ifnotexists ids db_optr", + /* 58 */ "cmd ::= CREATE TOPIC ifnotexists ids topic_optr", + /* 59 */ "cmd ::= CREATE USER ids PASS ids", + /* 60 */ "pps ::=", + /* 61 */ "pps ::= PPS INTEGER", + /* 62 */ "tseries ::=", + /* 63 */ "tseries ::= TSERIES INTEGER", + /* 64 */ "dbs ::=", + /* 65 */ "dbs ::= DBS INTEGER", + /* 66 */ "streams ::=", + /* 67 */ "streams ::= STREAMS INTEGER", + /* 68 */ "storage ::=", + /* 69 */ "storage ::= STORAGE INTEGER", + /* 70 */ "qtime ::=", + /* 71 */ "qtime ::= QTIME INTEGER", + /* 72 */ "users ::=", + /* 73 */ "users ::= USERS INTEGER", + /* 74 */ "conns ::=", + /* 75 */ "conns ::= CONNS INTEGER", + /* 76 */ "state ::=", + /* 77 */ "state ::= STATE ids", + /* 78 */ "acct_optr ::= pps tseries storage streams qtime dbs users conns state", + /* 79 */ "keep ::= KEEP tagitemlist", + /* 80 */ "cache ::= CACHE INTEGER", + /* 81 */ "replica ::= REPLICA INTEGER", + /* 82 */ "quorum ::= QUORUM INTEGER", + /* 83 */ "days ::= DAYS INTEGER", + /* 84 */ "minrows ::= MINROWS INTEGER", + /* 85 */ "maxrows ::= MAXROWS INTEGER", + /* 86 */ "blocks ::= BLOCKS INTEGER", + /* 87 */ "ctime ::= CTIME INTEGER", + /* 88 */ "wal ::= WAL INTEGER", + /* 89 */ "fsync ::= FSYNC INTEGER", + /* 90 */ "comp ::= COMP INTEGER", + /* 91 */ "prec ::= PRECISION STRING", + /* 92 */ "update ::= UPDATE INTEGER", + /* 93 */ "cachelast ::= CACHELAST INTEGER", + /* 94 */ "partitions ::= PARTITIONS INTEGER", + /* 95 */ "db_optr ::=", + /* 96 */ "db_optr ::= db_optr cache", + /* 97 */ "db_optr ::= db_optr replica", + /* 98 */ "db_optr ::= db_optr quorum", + /* 99 */ "db_optr ::= db_optr days", + /* 100 */ "db_optr ::= db_optr minrows", + /* 101 */ "db_optr ::= db_optr maxrows", + /* 102 */ "db_optr ::= db_optr blocks", + /* 103 */ "db_optr ::= db_optr ctime", + /* 104 */ "db_optr ::= db_optr wal", + /* 105 */ "db_optr ::= db_optr fsync", + /* 106 */ "db_optr ::= db_optr comp", + /* 107 */ "db_optr ::= db_optr prec", + /* 108 */ "db_optr ::= db_optr keep", + /* 109 */ "db_optr ::= db_optr update", + /* 110 */ "db_optr ::= db_optr cachelast", + /* 111 */ "topic_optr ::= db_optr", + /* 112 */ "topic_optr ::= topic_optr partitions", + /* 113 */ "alter_db_optr ::=", + /* 114 */ "alter_db_optr ::= alter_db_optr replica", + /* 115 */ "alter_db_optr ::= alter_db_optr quorum", + /* 116 */ "alter_db_optr ::= alter_db_optr keep", + /* 117 */ "alter_db_optr ::= alter_db_optr blocks", + /* 118 */ "alter_db_optr ::= alter_db_optr comp", + /* 119 */ "alter_db_optr ::= alter_db_optr wal", + /* 120 */ "alter_db_optr ::= alter_db_optr fsync", + /* 121 */ "alter_db_optr ::= alter_db_optr update", + /* 122 */ "alter_db_optr ::= alter_db_optr cachelast", + /* 123 */ "alter_topic_optr ::= alter_db_optr", + /* 124 */ "alter_topic_optr ::= alter_topic_optr partitions", + /* 125 */ "typename ::= ids", + /* 126 */ "typename ::= ids LP signed RP", + /* 127 */ "typename ::= ids UNSIGNED", + /* 128 */ "signed ::= INTEGER", + /* 129 */ "signed ::= PLUS INTEGER", + /* 130 */ "signed ::= MINUS INTEGER", + /* 131 */ "cmd ::= CREATE TABLE create_table_args", + /* 132 */ "cmd ::= CREATE TABLE create_stable_args", + /* 133 */ "cmd ::= CREATE STABLE create_stable_args", + /* 134 */ "cmd ::= CREATE TABLE create_table_list", + /* 135 */ "create_table_list ::= create_from_stable", + /* 136 */ "create_table_list ::= create_table_list create_from_stable", + /* 137 */ "create_table_args ::= ifnotexists ids cpxName LP columnlist RP", + /* 138 */ "create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP", + /* 139 */ "create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP", + /* 140 */ "create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP", + /* 141 */ "tagNamelist ::= tagNamelist COMMA ids", + /* 142 */ "tagNamelist ::= ids", + /* 143 */ "create_table_args ::= ifnotexists ids cpxName AS select", + /* 144 */ "columnlist ::= columnlist COMMA column", + /* 145 */ "columnlist ::= column", + /* 146 */ "column ::= ids typename", + /* 147 */ "tagitemlist ::= tagitemlist COMMA tagitem", + /* 148 */ "tagitemlist ::= tagitem", + /* 149 */ "tagitem ::= INTEGER", + /* 150 */ "tagitem ::= FLOAT", + /* 151 */ "tagitem ::= STRING", + /* 152 */ "tagitem ::= BOOL", + /* 153 */ "tagitem ::= NULL", + /* 154 */ "tagitem ::= MINUS INTEGER", + /* 155 */ "tagitem ::= MINUS FLOAT", + /* 156 */ "tagitem ::= PLUS INTEGER", + /* 157 */ "tagitem ::= PLUS FLOAT", + /* 158 */ "select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt", + /* 159 */ "select ::= LP select RP", + /* 160 */ "union ::= select", + /* 161 */ "union ::= union UNION ALL select", + /* 162 */ "cmd ::= union", + /* 163 */ "select ::= SELECT selcollist", + /* 164 */ "sclp ::= selcollist COMMA", + /* 165 */ "sclp ::=", + /* 166 */ "selcollist ::= sclp distinct expr as", + /* 167 */ "selcollist ::= sclp STAR", + /* 168 */ "as ::= AS ids", + /* 169 */ "as ::= ids", + /* 170 */ "as ::=", + /* 171 */ "distinct ::= DISTINCT", + /* 172 */ "distinct ::=", + /* 173 */ "from ::= FROM tablelist", + /* 174 */ "from ::= FROM LP union RP", + /* 175 */ "tablelist ::= ids cpxName", + /* 176 */ "tablelist ::= ids cpxName ids", + /* 177 */ "tablelist ::= tablelist COMMA ids cpxName", + /* 178 */ "tablelist ::= tablelist COMMA ids cpxName ids", + /* 179 */ "tmvar ::= VARIABLE", + /* 180 */ "interval_opt ::= INTERVAL LP tmvar RP", + /* 181 */ "interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP", + /* 182 */ "interval_opt ::=", + /* 183 */ "session_option ::=", + /* 184 */ "session_option ::= SESSION LP ids cpxName COMMA tmvar RP", + /* 185 */ "fill_opt ::=", + /* 186 */ "fill_opt ::= FILL LP ID COMMA tagitemlist RP", + /* 187 */ "fill_opt ::= FILL LP ID RP", + /* 188 */ "sliding_opt ::= SLIDING LP tmvar RP", + /* 189 */ "sliding_opt ::=", + /* 190 */ "orderby_opt ::=", + /* 191 */ "orderby_opt ::= ORDER BY sortlist", + /* 192 */ "sortlist ::= sortlist COMMA item sortorder", + /* 193 */ "sortlist ::= item sortorder", + /* 194 */ "item ::= ids cpxName", + /* 195 */ "sortorder ::= ASC", + /* 196 */ "sortorder ::= DESC", + /* 197 */ "sortorder ::=", + /* 198 */ "groupby_opt ::=", + /* 199 */ "groupby_opt ::= GROUP BY grouplist", + /* 200 */ "grouplist ::= grouplist COMMA item", + /* 201 */ "grouplist ::= item", + /* 202 */ "having_opt ::=", + /* 203 */ "having_opt ::= HAVING expr", + /* 204 */ "limit_opt ::=", + /* 205 */ "limit_opt ::= LIMIT signed", + /* 206 */ "limit_opt ::= LIMIT signed OFFSET signed", + /* 207 */ "limit_opt ::= LIMIT signed COMMA signed", + /* 208 */ "slimit_opt ::=", + /* 209 */ "slimit_opt ::= SLIMIT signed", + /* 210 */ "slimit_opt ::= SLIMIT signed SOFFSET signed", + /* 211 */ "slimit_opt ::= SLIMIT signed COMMA signed", + /* 212 */ "where_opt ::=", + /* 213 */ "where_opt ::= WHERE expr", + /* 214 */ "expr ::= LP expr RP", + /* 215 */ "expr ::= ID", + /* 216 */ "expr ::= ID DOT ID", + /* 217 */ "expr ::= ID DOT STAR", + /* 218 */ "expr ::= INTEGER", + /* 219 */ "expr ::= MINUS INTEGER", + /* 220 */ "expr ::= PLUS INTEGER", + /* 221 */ "expr ::= FLOAT", + /* 222 */ "expr ::= MINUS FLOAT", + /* 223 */ "expr ::= PLUS FLOAT", + /* 224 */ "expr ::= STRING", + /* 225 */ "expr ::= NOW", + /* 226 */ "expr ::= VARIABLE", + /* 227 */ "expr ::= PLUS VARIABLE", + /* 228 */ "expr ::= MINUS VARIABLE", + /* 229 */ "expr ::= BOOL", + /* 230 */ "expr ::= NULL", + /* 231 */ "expr ::= ID LP exprlist RP", + /* 232 */ "expr ::= ID LP STAR RP", + /* 233 */ "expr ::= expr IS NULL", + /* 234 */ "expr ::= expr IS NOT NULL", + /* 235 */ "expr ::= expr LT expr", + /* 236 */ "expr ::= expr GT expr", + /* 237 */ "expr ::= expr LE expr", + /* 238 */ "expr ::= expr GE expr", + /* 239 */ "expr ::= expr NE expr", + /* 240 */ "expr ::= expr EQ expr", + /* 241 */ "expr ::= expr BETWEEN expr AND expr", + /* 242 */ "expr ::= expr AND expr", + /* 243 */ "expr ::= expr OR expr", + /* 244 */ "expr ::= expr PLUS expr", + /* 245 */ "expr ::= expr MINUS expr", + /* 246 */ "expr ::= expr STAR expr", + /* 247 */ "expr ::= expr SLASH expr", + /* 248 */ "expr ::= expr REM expr", + /* 249 */ "expr ::= expr LIKE expr", + /* 250 */ "expr ::= expr IN LP exprlist RP", + /* 251 */ "exprlist ::= exprlist COMMA expritem", + /* 252 */ "exprlist ::= expritem", + /* 253 */ "expritem ::= expr", + /* 254 */ "expritem ::=", + /* 255 */ "cmd ::= RESET QUERY CACHE", + /* 256 */ "cmd ::= SYNCDB ids REPLICA", + /* 257 */ "cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist", + /* 258 */ "cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids", + /* 259 */ "cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist", + /* 260 */ "cmd ::= ALTER TABLE ids cpxName DROP TAG ids", + /* 261 */ "cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids", + /* 262 */ "cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem", + /* 263 */ "cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist", + /* 264 */ "cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids", + /* 265 */ "cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist", + /* 266 */ "cmd ::= ALTER STABLE ids cpxName DROP TAG ids", + /* 267 */ "cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids", + /* 268 */ "cmd ::= KILL CONNECTION INTEGER", + /* 269 */ "cmd ::= KILL STREAM INTEGER COLON INTEGER", + /* 270 */ "cmd ::= KILL QUERY INTEGER COLON INTEGER", }; #endif /* NDEBUG */ #if YYSTACKDEPTH<=0 /* -** Try to increase the size of the parser stack. Return the number -** of errors. Return 0 on success. +** Try to increase the size of the parser stack. */ -static int yyGrowStack(yyParser *p){ +static void yyGrowStack(yyParser *p){ int newSize; - int idx; yyStackEntry *pNew; newSize = p->yystksz*2 + 100; - idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; - if( p->yystack==&p->yystk0 ){ - pNew = malloc(newSize*sizeof(pNew[0])); - if( pNew ) pNew[0] = p->yystk0; - }else{ - pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); - } + pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); if( pNew ){ p->yystack = pNew; - p->yytos = &p->yystack[idx]; + p->yystksz = newSize; #ifndef NDEBUG if( yyTraceFILE ){ - fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", - yyTracePrompt, p->yystksz, newSize); + fprintf(yyTraceFILE,"%sStack grows to %d entries!\n", + yyTracePrompt, p->yystksz); } #endif - p->yystksz = newSize; } - return pNew==0; } #endif -/* Datatype of the argument to the memory allocated passed as the -** second argument to ParseAlloc() below. This can be changed by -** putting an appropriate #define in the %include section of the input -** grammar. -*/ -#ifndef YYMALLOCARGTYPE -# define YYMALLOCARGTYPE size_t -#endif - -/* Initialize a new parser that has already been allocated. -*/ -void ParseInit(void *yypParser){ - yyParser *pParser = (yyParser*)yypParser; -#ifdef YYTRACKMAXSTACKDEPTH - pParser->yyhwm = 0; -#endif -#if YYSTACKDEPTH<=0 - pParser->yytos = NULL; - pParser->yystack = NULL; - pParser->yystksz = 0; - if( yyGrowStack(pParser) ){ - pParser->yystack = &pParser->yystk0; - pParser->yystksz = 1; - } -#endif -#ifndef YYNOERRORRECOVERY - pParser->yyerrcnt = -1; -#endif - pParser->yytos = pParser->yystack; - pParser->yystack[0].stateno = 0; - pParser->yystack[0].major = 0; -#if YYSTACKDEPTH>0 - pParser->yystackEnd = &pParser->yystack[YYSTACKDEPTH-1]; -#endif -} - -#ifndef Parse_ENGINEALWAYSONSTACK /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like @@ -1376,21 +1113,27 @@ void ParseInit(void *yypParser){ ** A pointer to a parser. This pointer is used in subsequent calls ** to Parse and ParseFree. */ -void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ +void *ParseAlloc(void *(*mallocProc)(size_t)){ yyParser *pParser; - pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); - if( pParser ) ParseInit(pParser); + pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); + if( pParser ){ + pParser->yyidx = -1; +#ifdef YYTRACKMAXSTACKDEPTH + pParser->yyidxMax = 0; +#endif +#if YYSTACKDEPTH<=0 + pParser->yystack = NULL; + pParser->yystksz = 0; + yyGrowStack(pParser); +#endif + } return pParser; } -#endif /* Parse_ENGINEALWAYSONSTACK */ - -/* The following function deletes the "minor type" or semantic value -** associated with a symbol. The symbol can be either a terminal -** or nonterminal. "yymajor" is the symbol code, and "yypminor" is -** a pointer to the value to be deleted. The code used to do the -** deletions is derived from the %destructor and/or %token_destructor -** directives of the input grammar. +/* The following function deletes the value associated with a +** symbol. The symbol can be either a terminal or nonterminal. +** "yymajor" is the symbol code, and "yypminor" is a pointer to +** the value. */ static void yy_destructor( yyParser *yypParser, /* The parser */ @@ -1406,65 +1149,63 @@ static void yy_destructor( ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those - ** which appear on the RHS of the rule, but which are *not* used + ** which appear on the RHS of the rule, but which are not used ** inside the C code. */ -/********* Begin destructor definitions ***************************************/ - case 209: /* keep */ - case 210: /* tagitemlist */ - case 232: /* columnlist */ - case 233: /* tagNamelist */ - case 242: /* fill_opt */ - case 244: /* groupby_opt */ - case 245: /* orderby_opt */ - case 256: /* sortlist */ - case 260: /* grouplist */ + case 198: /* exprlist */ + case 239: /* selcollist */ + case 252: /* sclp */ { -taosArrayDestroy((yypminor->yy159)); +tSqlExprListDestroy((yypminor->yy285)); } break; - case 230: /* create_table_list */ + case 211: /* keep */ + case 212: /* tagitemlist */ + case 234: /* columnlist */ + case 235: /* tagNamelist */ + case 244: /* fill_opt */ + case 246: /* groupby_opt */ + case 247: /* orderby_opt */ + case 258: /* sortlist */ + case 262: /* grouplist */ { -destroyCreateTableSql((yypminor->yy14)); +taosArrayDestroy((yypminor->yy285)); } break; - case 234: /* select */ + case 232: /* create_table_list */ { -destroySqlNode((yypminor->yy116)); +destroyCreateTableSql((yypminor->yy470)); } break; - case 237: /* selcollist */ - case 250: /* sclp */ - case 261: /* exprlist */ + case 236: /* select */ { -tSqlExprListDestroy((yypminor->yy159)); +destroySqlNode((yypminor->yy344)); } break; - case 238: /* from */ - case 254: /* tablelist */ + case 240: /* from */ + case 256: /* tablelist */ { -destroyRelationInfo((yypminor->yy236)); +destroyRelationInfo((yypminor->yy148)); } break; - case 239: /* where_opt */ - case 246: /* having_opt */ - case 252: /* expr */ - case 262: /* expritem */ + case 241: /* where_opt */ + case 248: /* having_opt */ + case 254: /* expr */ + case 263: /* expritem */ { -tSqlExprDestroy((yypminor->yy118)); +tSqlExprDestroy((yypminor->yy178)); } break; - case 249: /* union */ + case 251: /* union */ { -destroyAllSqlNode((yypminor->yy159)); +destroyAllSqlNode((yypminor->yy285)); } break; - case 257: /* sortitem */ + case 259: /* sortitem */ { -tVariantDestroy(&(yypminor->yy488)); +tVariantDestroy(&(yypminor->yy362)); } break; -/********* End destructor definitions *****************************************/ default: break; /* If no destructor action specified: do nothing */ } } @@ -1474,53 +1215,51 @@ tVariantDestroy(&(yypminor->yy488)); ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. +** +** Return the major token number for the symbol popped. */ -static void yy_pop_parser_stack(yyParser *pParser){ - yyStackEntry *yytos; - assert( pParser->yytos!=0 ); - assert( pParser->yytos > pParser->yystack ); - yytos = pParser->yytos--; +static int yy_pop_parser_stack(yyParser *pParser){ + YYCODETYPE yymajor; + yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; + + if( pParser->yyidx<0 ) return 0; #ifndef NDEBUG - if( yyTraceFILE ){ + if( yyTraceFILE && pParser->yyidx>=0 ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif - yy_destructor(pParser, yytos->major, &yytos->minor); + yymajor = yytos->major; + yy_destructor(pParser, yymajor, &yytos->minor); + pParser->yyidx--; + return yymajor; } -/* -** Clear all secondary memory allocations from the parser -*/ -void ParseFinalize(void *p){ - yyParser *pParser = (yyParser*)p; - while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); -#if YYSTACKDEPTH<=0 - if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); -#endif -} - -#ifndef Parse_ENGINEALWAYSONSTACK /* -** Deallocate and destroy a parser. Destructors are called for +** Deallocate and destroy a parser. Destructors are all called for ** all stack elements before shutting the parser down. ** -** If the YYPARSEFREENEVERNULL macro exists (for example because it -** is defined in a %include section of the input grammar) then it is -** assumed that the input pointer is never NULL. +** Inputs: +**
    +**
  • A pointer to the parser. This should be a pointer +** obtained from ParseAlloc. +**
  • A pointer to a function used to reclaim memory obtained +** from malloc. +**
*/ void ParseFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ -#ifndef YYPARSEFREENEVERNULL - if( p==0 ) return; + yyParser *pParser = (yyParser*)p; + if( pParser==0 ) return; + while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); +#if YYSTACKDEPTH<=0 + free(pParser->yystack); #endif - ParseFinalize(p); - (*freeProc)(p); + (*freeProc)((void*)pParser); } -#endif /* Parse_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. @@ -1528,70 +1267,33 @@ void ParseFree( #ifdef YYTRACKMAXSTACKDEPTH int ParseStackPeak(void *p){ yyParser *pParser = (yyParser*)p; - return pParser->yyhwm; -} -#endif - -/* This array of booleans keeps track of the parser statement -** coverage. The element yycoverage[X][Y] is set when the parser -** is in state X and has a lookahead token Y. In a well-tested -** systems, every element of this matrix should end up being set. -*/ -#if defined(YYCOVERAGE) -static unsigned char yycoverage[YYNSTATE][YYNTOKEN]; -#endif - -/* -** Write into out a description of every state/lookahead combination that -** -** (1) has not been used by the parser, and -** (2) is not a syntax error. -** -** Return the number of missed state/lookahead combinations. -*/ -#if defined(YYCOVERAGE) -int ParseCoverage(FILE *out){ - int stateno, iLookAhead, i; - int nMissed = 0; - for(stateno=0; statenoyyidxMax; } #endif /* ** Find the appropriate action for a parser given the terminal ** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. */ -static unsigned int yy_find_shift_action( +static int yy_find_shift_action( yyParser *pParser, /* The parser */ YYCODETYPE iLookAhead /* The look-ahead token */ ){ int i; - int stateno = pParser->yytos->stateno; + int stateno = pParser->yystack[pParser->yyidx].stateno; - if( stateno>YY_MAX_SHIFT ) return stateno; - assert( stateno <= YY_SHIFT_COUNT ); -#if defined(YYCOVERAGE) - yycoverage[stateno][iLookAhead] = 1; -#endif - do{ - i = yy_shift_ofst[stateno]; - assert( i>=0 && i+YYNTOKEN<=sizeof(yy_lookahead)/sizeof(yy_lookahead[0]) ); - assert( iLookAhead!=YYNOCODE ); - assert( iLookAhead < YYNTOKEN ); - i += iLookAhead; - if( yy_lookahead[i]!=iLookAhead ){ + if( stateno>YY_SHIFT_COUNT + || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){ + return yy_default[stateno]; + } + assert( iLookAhead!=YYNOCODE ); + i += iLookAhead; + if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ + if( iLookAhead>0 ){ #ifdef YYFALLBACK YYCODETYPE iFallback; /* Fallback token */ if( iLookAhead=YY_ACTTAB_COUNT j0 + yy_lookahead[j]==YYWILDCARD ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", - yyTracePrompt, yyTokenName[iLookAhead], - yyTokenName[YYWILDCARD]); + yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); } #endif /* NDEBUG */ return yy_action[j]; } } #endif /* YYWILDCARD */ - return yy_default[stateno]; - }else{ - return yy_action[i]; } - }while(1); + return yy_default[stateno]; + }else{ + return yy_action[i]; + } } /* ** Find the appropriate action for a parser given the non-terminal ** look-ahead token iLookAhead. +** +** If the look-ahead token is YYNOCODE, then check to see if the action is +** independent of the look-ahead. If it is, return the action, otherwise +** return YY_NO_ACTION. */ static int yy_find_reduce_action( int stateno, /* Current state number */ @@ -1654,6 +1357,7 @@ static int yy_find_reduce_action( assert( stateno<=YY_REDUCE_COUNT ); #endif i = yy_reduce_ofst[stateno]; + assert( i!=YY_REDUCE_USE_DFLT ); assert( iLookAhead!=YYNOCODE ); i += iLookAhead; #ifdef YYERRORSYMBOL @@ -1670,42 +1374,20 @@ static int yy_find_reduce_action( /* ** The following routine is called if the stack overflows. */ -static void yyStackOverflow(yyParser *yypParser){ +static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){ ParseARG_FETCH; + yypParser->yyidx--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); } #endif - while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ -/******** Begin %stack_overflow code ******************************************/ -/******** End %stack_overflow code ********************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ } -/* -** Print tracing information for a SHIFT action -*/ -#ifndef NDEBUG -static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ - if( yyTraceFILE ){ - if( yyNewStateyytos->major], - yyNewState); - }else{ - fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n", - yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major], - yyNewState - YY_MIN_REDUCE); - } - } -} -#else -# define yyTraceShift(X,Y,Z) -#endif - /* ** Perform a shift action. */ @@ -1713,318 +1395,323 @@ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ int yyNewState, /* The new state to shift in */ int yyMajor, /* The major token to shift in */ - ParseTOKENTYPE yyMinor /* The minor token to shift in */ + YYMINORTYPE *yypMinor /* Pointer to the minor token to shift in */ ){ yyStackEntry *yytos; - yypParser->yytos++; + yypParser->yyidx++; #ifdef YYTRACKMAXSTACKDEPTH - if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ - yypParser->yyhwm++; - assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); + if( yypParser->yyidx>yypParser->yyidxMax ){ + yypParser->yyidxMax = yypParser->yyidx; } #endif #if YYSTACKDEPTH>0 - if( yypParser->yytos>yypParser->yystackEnd ){ - yypParser->yytos--; - yyStackOverflow(yypParser); + if( yypParser->yyidx>=YYSTACKDEPTH ){ + yyStackOverflow(yypParser, yypMinor); return; } #else - if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ - if( yyGrowStack(yypParser) ){ - yypParser->yytos--; - yyStackOverflow(yypParser); + if( yypParser->yyidx>=yypParser->yystksz ){ + yyGrowStack(yypParser); + if( yypParser->yyidx>=yypParser->yystksz ){ + yyStackOverflow(yypParser, yypMinor); return; } } #endif - if( yyNewState > YY_MAX_SHIFT ){ - yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; - } - yytos = yypParser->yytos; + yytos = &yypParser->yystack[yypParser->yyidx]; yytos->stateno = (YYACTIONTYPE)yyNewState; yytos->major = (YYCODETYPE)yyMajor; - yytos->minor.yy0 = yyMinor; - yyTraceShift(yypParser, yyNewState, "Shift"); + yytos->minor = *yypMinor; +#ifndef NDEBUG + if( yyTraceFILE && yypParser->yyidx>0 ){ + int i; + fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); + fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); + for(i=1; i<=yypParser->yyidx; i++) + fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); + fprintf(yyTraceFILE,"\n"); + } +#endif } /* The following table contains information about every rule that ** is used during the reduce. */ static const struct { - YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ - signed char nrhs; /* Negative of the number of RHS symbols in the rule */ + YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ + unsigned char nrhs; /* Number of right-hand side symbols in the rule */ } yyRuleInfo[] = { - { 188, -1 }, /* (0) program ::= cmd */ - { 189, -2 }, /* (1) cmd ::= SHOW DATABASES */ - { 189, -2 }, /* (2) cmd ::= SHOW TOPICS */ - { 189, -2 }, /* (3) cmd ::= SHOW MNODES */ - { 189, -2 }, /* (4) cmd ::= SHOW DNODES */ - { 189, -2 }, /* (5) cmd ::= SHOW ACCOUNTS */ - { 189, -2 }, /* (6) cmd ::= SHOW USERS */ - { 189, -2 }, /* (7) cmd ::= SHOW MODULES */ - { 189, -2 }, /* (8) cmd ::= SHOW QUERIES */ - { 189, -2 }, /* (9) cmd ::= SHOW CONNECTIONS */ - { 189, -2 }, /* (10) cmd ::= SHOW STREAMS */ - { 189, -2 }, /* (11) cmd ::= SHOW VARIABLES */ - { 189, -2 }, /* (12) cmd ::= SHOW SCORES */ - { 189, -2 }, /* (13) cmd ::= SHOW GRANTS */ - { 189, -2 }, /* (14) cmd ::= SHOW VNODES */ - { 189, -3 }, /* (15) cmd ::= SHOW VNODES IPTOKEN */ - { 190, 0 }, /* (16) dbPrefix ::= */ - { 190, -2 }, /* (17) dbPrefix ::= ids DOT */ - { 192, 0 }, /* (18) cpxName ::= */ - { 192, -2 }, /* (19) cpxName ::= DOT ids */ - { 189, -5 }, /* (20) cmd ::= SHOW CREATE TABLE ids cpxName */ - { 189, -5 }, /* (21) cmd ::= SHOW CREATE STABLE ids cpxName */ - { 189, -4 }, /* (22) cmd ::= SHOW CREATE DATABASE ids */ - { 189, -3 }, /* (23) cmd ::= SHOW dbPrefix TABLES */ - { 189, -5 }, /* (24) cmd ::= SHOW dbPrefix TABLES LIKE ids */ - { 189, -3 }, /* (25) cmd ::= SHOW dbPrefix STABLES */ - { 189, -5 }, /* (26) cmd ::= SHOW dbPrefix STABLES LIKE ids */ - { 189, -3 }, /* (27) cmd ::= SHOW dbPrefix VGROUPS */ - { 189, -4 }, /* (28) cmd ::= SHOW dbPrefix VGROUPS ids */ - { 189, -5 }, /* (29) cmd ::= DROP TABLE ifexists ids cpxName */ - { 189, -5 }, /* (30) cmd ::= DROP STABLE ifexists ids cpxName */ - { 189, -4 }, /* (31) cmd ::= DROP DATABASE ifexists ids */ - { 189, -4 }, /* (32) cmd ::= DROP TOPIC ifexists ids */ - { 189, -3 }, /* (33) cmd ::= DROP DNODE ids */ - { 189, -3 }, /* (34) cmd ::= DROP USER ids */ - { 189, -3 }, /* (35) cmd ::= DROP ACCOUNT ids */ - { 189, -2 }, /* (36) cmd ::= USE ids */ - { 189, -3 }, /* (37) cmd ::= DESCRIBE ids cpxName */ - { 189, -5 }, /* (38) cmd ::= ALTER USER ids PASS ids */ - { 189, -5 }, /* (39) cmd ::= ALTER USER ids PRIVILEGE ids */ - { 189, -4 }, /* (40) cmd ::= ALTER DNODE ids ids */ - { 189, -5 }, /* (41) cmd ::= ALTER DNODE ids ids ids */ - { 189, -3 }, /* (42) cmd ::= ALTER LOCAL ids */ - { 189, -4 }, /* (43) cmd ::= ALTER LOCAL ids ids */ - { 189, -4 }, /* (44) cmd ::= ALTER DATABASE ids alter_db_optr */ - { 189, -4 }, /* (45) cmd ::= ALTER TOPIC ids alter_topic_optr */ - { 189, -4 }, /* (46) cmd ::= ALTER ACCOUNT ids acct_optr */ - { 189, -6 }, /* (47) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */ - { 191, -1 }, /* (48) ids ::= ID */ - { 191, -1 }, /* (49) ids ::= STRING */ - { 193, -2 }, /* (50) ifexists ::= IF EXISTS */ - { 193, 0 }, /* (51) ifexists ::= */ - { 197, -3 }, /* (52) ifnotexists ::= IF NOT EXISTS */ - { 197, 0 }, /* (53) ifnotexists ::= */ - { 189, -3 }, /* (54) cmd ::= CREATE DNODE ids */ - { 189, -6 }, /* (55) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ - { 189, -5 }, /* (56) cmd ::= CREATE DATABASE ifnotexists ids db_optr */ - { 189, -5 }, /* (57) cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ - { 189, -5 }, /* (58) cmd ::= CREATE USER ids PASS ids */ - { 200, 0 }, /* (59) pps ::= */ - { 200, -2 }, /* (60) pps ::= PPS INTEGER */ - { 201, 0 }, /* (61) tseries ::= */ - { 201, -2 }, /* (62) tseries ::= TSERIES INTEGER */ - { 202, 0 }, /* (63) dbs ::= */ - { 202, -2 }, /* (64) dbs ::= DBS INTEGER */ - { 203, 0 }, /* (65) streams ::= */ - { 203, -2 }, /* (66) streams ::= STREAMS INTEGER */ - { 204, 0 }, /* (67) storage ::= */ - { 204, -2 }, /* (68) storage ::= STORAGE INTEGER */ - { 205, 0 }, /* (69) qtime ::= */ - { 205, -2 }, /* (70) qtime ::= QTIME INTEGER */ - { 206, 0 }, /* (71) users ::= */ - { 206, -2 }, /* (72) users ::= USERS INTEGER */ - { 207, 0 }, /* (73) conns ::= */ - { 207, -2 }, /* (74) conns ::= CONNS INTEGER */ - { 208, 0 }, /* (75) state ::= */ - { 208, -2 }, /* (76) state ::= STATE ids */ - { 196, -9 }, /* (77) acct_optr ::= pps tseries storage streams qtime dbs users conns state */ - { 209, -2 }, /* (78) keep ::= KEEP tagitemlist */ - { 211, -2 }, /* (79) cache ::= CACHE INTEGER */ - { 212, -2 }, /* (80) replica ::= REPLICA INTEGER */ - { 213, -2 }, /* (81) quorum ::= QUORUM INTEGER */ - { 214, -2 }, /* (82) days ::= DAYS INTEGER */ - { 215, -2 }, /* (83) minrows ::= MINROWS INTEGER */ - { 216, -2 }, /* (84) maxrows ::= MAXROWS INTEGER */ - { 217, -2 }, /* (85) blocks ::= BLOCKS INTEGER */ - { 218, -2 }, /* (86) ctime ::= CTIME INTEGER */ - { 219, -2 }, /* (87) wal ::= WAL INTEGER */ - { 220, -2 }, /* (88) fsync ::= FSYNC INTEGER */ - { 221, -2 }, /* (89) comp ::= COMP INTEGER */ - { 222, -2 }, /* (90) prec ::= PRECISION STRING */ - { 223, -2 }, /* (91) update ::= UPDATE INTEGER */ - { 224, -2 }, /* (92) cachelast ::= CACHELAST INTEGER */ - { 225, -2 }, /* (93) partitions ::= PARTITIONS INTEGER */ - { 198, 0 }, /* (94) db_optr ::= */ - { 198, -2 }, /* (95) db_optr ::= db_optr cache */ - { 198, -2 }, /* (96) db_optr ::= db_optr replica */ - { 198, -2 }, /* (97) db_optr ::= db_optr quorum */ - { 198, -2 }, /* (98) db_optr ::= db_optr days */ - { 198, -2 }, /* (99) db_optr ::= db_optr minrows */ - { 198, -2 }, /* (100) db_optr ::= db_optr maxrows */ - { 198, -2 }, /* (101) db_optr ::= db_optr blocks */ - { 198, -2 }, /* (102) db_optr ::= db_optr ctime */ - { 198, -2 }, /* (103) db_optr ::= db_optr wal */ - { 198, -2 }, /* (104) db_optr ::= db_optr fsync */ - { 198, -2 }, /* (105) db_optr ::= db_optr comp */ - { 198, -2 }, /* (106) db_optr ::= db_optr prec */ - { 198, -2 }, /* (107) db_optr ::= db_optr keep */ - { 198, -2 }, /* (108) db_optr ::= db_optr update */ - { 198, -2 }, /* (109) db_optr ::= db_optr cachelast */ - { 199, -1 }, /* (110) topic_optr ::= db_optr */ - { 199, -2 }, /* (111) topic_optr ::= topic_optr partitions */ - { 194, 0 }, /* (112) alter_db_optr ::= */ - { 194, -2 }, /* (113) alter_db_optr ::= alter_db_optr replica */ - { 194, -2 }, /* (114) alter_db_optr ::= alter_db_optr quorum */ - { 194, -2 }, /* (115) alter_db_optr ::= alter_db_optr keep */ - { 194, -2 }, /* (116) alter_db_optr ::= alter_db_optr blocks */ - { 194, -2 }, /* (117) alter_db_optr ::= alter_db_optr comp */ - { 194, -2 }, /* (118) alter_db_optr ::= alter_db_optr wal */ - { 194, -2 }, /* (119) alter_db_optr ::= alter_db_optr fsync */ - { 194, -2 }, /* (120) alter_db_optr ::= alter_db_optr update */ - { 194, -2 }, /* (121) alter_db_optr ::= alter_db_optr cachelast */ - { 195, -1 }, /* (122) alter_topic_optr ::= alter_db_optr */ - { 195, -2 }, /* (123) alter_topic_optr ::= alter_topic_optr partitions */ - { 226, -1 }, /* (124) typename ::= ids */ - { 226, -4 }, /* (125) typename ::= ids LP signed RP */ - { 226, -2 }, /* (126) typename ::= ids UNSIGNED */ - { 227, -1 }, /* (127) signed ::= INTEGER */ - { 227, -2 }, /* (128) signed ::= PLUS INTEGER */ - { 227, -2 }, /* (129) signed ::= MINUS INTEGER */ - { 189, -3 }, /* (130) cmd ::= CREATE TABLE create_table_args */ - { 189, -3 }, /* (131) cmd ::= CREATE TABLE create_stable_args */ - { 189, -3 }, /* (132) cmd ::= CREATE STABLE create_stable_args */ - { 189, -3 }, /* (133) cmd ::= CREATE TABLE create_table_list */ - { 230, -1 }, /* (134) create_table_list ::= create_from_stable */ - { 230, -2 }, /* (135) create_table_list ::= create_table_list create_from_stable */ - { 228, -6 }, /* (136) create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ - { 229, -10 }, /* (137) create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ - { 231, -10 }, /* (138) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ - { 231, -13 }, /* (139) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ - { 233, -3 }, /* (140) tagNamelist ::= tagNamelist COMMA ids */ - { 233, -1 }, /* (141) tagNamelist ::= ids */ - { 228, -5 }, /* (142) create_table_args ::= ifnotexists ids cpxName AS select */ - { 232, -3 }, /* (143) columnlist ::= columnlist COMMA column */ - { 232, -1 }, /* (144) columnlist ::= column */ - { 235, -2 }, /* (145) column ::= ids typename */ - { 210, -3 }, /* (146) tagitemlist ::= tagitemlist COMMA tagitem */ - { 210, -1 }, /* (147) tagitemlist ::= tagitem */ - { 236, -1 }, /* (148) tagitem ::= INTEGER */ - { 236, -1 }, /* (149) tagitem ::= FLOAT */ - { 236, -1 }, /* (150) tagitem ::= STRING */ - { 236, -1 }, /* (151) tagitem ::= BOOL */ - { 236, -1 }, /* (152) tagitem ::= NULL */ - { 236, -2 }, /* (153) tagitem ::= MINUS INTEGER */ - { 236, -2 }, /* (154) tagitem ::= MINUS FLOAT */ - { 236, -2 }, /* (155) tagitem ::= PLUS INTEGER */ - { 236, -2 }, /* (156) tagitem ::= PLUS FLOAT */ - { 234, -13 }, /* (157) select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ - { 234, -3 }, /* (158) select ::= LP select RP */ - { 249, -1 }, /* (159) union ::= select */ - { 249, -4 }, /* (160) union ::= union UNION ALL select */ - { 189, -1 }, /* (161) cmd ::= union */ - { 234, -2 }, /* (162) select ::= SELECT selcollist */ - { 250, -2 }, /* (163) sclp ::= selcollist COMMA */ - { 250, 0 }, /* (164) sclp ::= */ - { 237, -4 }, /* (165) selcollist ::= sclp distinct expr as */ - { 237, -2 }, /* (166) selcollist ::= sclp STAR */ - { 253, -2 }, /* (167) as ::= AS ids */ - { 253, -1 }, /* (168) as ::= ids */ - { 253, 0 }, /* (169) as ::= */ - { 251, -1 }, /* (170) distinct ::= DISTINCT */ - { 251, 0 }, /* (171) distinct ::= */ - { 238, -2 }, /* (172) from ::= FROM tablelist */ - { 238, -4 }, /* (173) from ::= FROM LP union RP */ - { 254, -2 }, /* (174) tablelist ::= ids cpxName */ - { 254, -3 }, /* (175) tablelist ::= ids cpxName ids */ - { 254, -4 }, /* (176) tablelist ::= tablelist COMMA ids cpxName */ - { 254, -5 }, /* (177) tablelist ::= tablelist COMMA ids cpxName ids */ - { 255, -1 }, /* (178) tmvar ::= VARIABLE */ - { 240, -4 }, /* (179) interval_opt ::= INTERVAL LP tmvar RP */ - { 240, -6 }, /* (180) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ - { 240, 0 }, /* (181) interval_opt ::= */ - { 241, 0 }, /* (182) session_option ::= */ - { 241, -7 }, /* (183) session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ - { 242, 0 }, /* (184) fill_opt ::= */ - { 242, -6 }, /* (185) fill_opt ::= FILL LP ID COMMA tagitemlist RP */ - { 242, -4 }, /* (186) fill_opt ::= FILL LP ID RP */ - { 243, -4 }, /* (187) sliding_opt ::= SLIDING LP tmvar RP */ - { 243, 0 }, /* (188) sliding_opt ::= */ - { 245, 0 }, /* (189) orderby_opt ::= */ - { 245, -3 }, /* (190) orderby_opt ::= ORDER BY sortlist */ - { 256, -4 }, /* (191) sortlist ::= sortlist COMMA item sortorder */ - { 256, -2 }, /* (192) sortlist ::= item sortorder */ - { 258, -2 }, /* (193) item ::= ids cpxName */ - { 259, -1 }, /* (194) sortorder ::= ASC */ - { 259, -1 }, /* (195) sortorder ::= DESC */ - { 259, 0 }, /* (196) sortorder ::= */ - { 244, 0 }, /* (197) groupby_opt ::= */ - { 244, -3 }, /* (198) groupby_opt ::= GROUP BY grouplist */ - { 260, -3 }, /* (199) grouplist ::= grouplist COMMA item */ - { 260, -1 }, /* (200) grouplist ::= item */ - { 246, 0 }, /* (201) having_opt ::= */ - { 246, -2 }, /* (202) having_opt ::= HAVING expr */ - { 248, 0 }, /* (203) limit_opt ::= */ - { 248, -2 }, /* (204) limit_opt ::= LIMIT signed */ - { 248, -4 }, /* (205) limit_opt ::= LIMIT signed OFFSET signed */ - { 248, -4 }, /* (206) limit_opt ::= LIMIT signed COMMA signed */ - { 247, 0 }, /* (207) slimit_opt ::= */ - { 247, -2 }, /* (208) slimit_opt ::= SLIMIT signed */ - { 247, -4 }, /* (209) slimit_opt ::= SLIMIT signed SOFFSET signed */ - { 247, -4 }, /* (210) slimit_opt ::= SLIMIT signed COMMA signed */ - { 239, 0 }, /* (211) where_opt ::= */ - { 239, -2 }, /* (212) where_opt ::= WHERE expr */ - { 252, -3 }, /* (213) expr ::= LP expr RP */ - { 252, -1 }, /* (214) expr ::= ID */ - { 252, -3 }, /* (215) expr ::= ID DOT ID */ - { 252, -3 }, /* (216) expr ::= ID DOT STAR */ - { 252, -1 }, /* (217) expr ::= INTEGER */ - { 252, -2 }, /* (218) expr ::= MINUS INTEGER */ - { 252, -2 }, /* (219) expr ::= PLUS INTEGER */ - { 252, -1 }, /* (220) expr ::= FLOAT */ - { 252, -2 }, /* (221) expr ::= MINUS FLOAT */ - { 252, -2 }, /* (222) expr ::= PLUS FLOAT */ - { 252, -1 }, /* (223) expr ::= STRING */ - { 252, -1 }, /* (224) expr ::= NOW */ - { 252, -1 }, /* (225) expr ::= VARIABLE */ - { 252, -2 }, /* (226) expr ::= PLUS VARIABLE */ - { 252, -2 }, /* (227) expr ::= MINUS VARIABLE */ - { 252, -1 }, /* (228) expr ::= BOOL */ - { 252, -1 }, /* (229) expr ::= NULL */ - { 252, -4 }, /* (230) expr ::= ID LP exprlist RP */ - { 252, -4 }, /* (231) expr ::= ID LP STAR RP */ - { 252, -3 }, /* (232) expr ::= expr IS NULL */ - { 252, -4 }, /* (233) expr ::= expr IS NOT NULL */ - { 252, -3 }, /* (234) expr ::= expr LT expr */ - { 252, -3 }, /* (235) expr ::= expr GT expr */ - { 252, -3 }, /* (236) expr ::= expr LE expr */ - { 252, -3 }, /* (237) expr ::= expr GE expr */ - { 252, -3 }, /* (238) expr ::= expr NE expr */ - { 252, -3 }, /* (239) expr ::= expr EQ expr */ - { 252, -5 }, /* (240) expr ::= expr BETWEEN expr AND expr */ - { 252, -3 }, /* (241) expr ::= expr AND expr */ - { 252, -3 }, /* (242) expr ::= expr OR expr */ - { 252, -3 }, /* (243) expr ::= expr PLUS expr */ - { 252, -3 }, /* (244) expr ::= expr MINUS expr */ - { 252, -3 }, /* (245) expr ::= expr STAR expr */ - { 252, -3 }, /* (246) expr ::= expr SLASH expr */ - { 252, -3 }, /* (247) expr ::= expr REM expr */ - { 252, -3 }, /* (248) expr ::= expr LIKE expr */ - { 252, -5 }, /* (249) expr ::= expr IN LP exprlist RP */ - { 261, -3 }, /* (250) exprlist ::= exprlist COMMA expritem */ - { 261, -1 }, /* (251) exprlist ::= expritem */ - { 262, -1 }, /* (252) expritem ::= expr */ - { 262, 0 }, /* (253) expritem ::= */ - { 189, -3 }, /* (254) cmd ::= RESET QUERY CACHE */ - { 189, -3 }, /* (255) cmd ::= SYNCDB ids REPLICA */ - { 189, -7 }, /* (256) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ - { 189, -7 }, /* (257) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ - { 189, -7 }, /* (258) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ - { 189, -7 }, /* (259) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ - { 189, -8 }, /* (260) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ - { 189, -9 }, /* (261) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ - { 189, -7 }, /* (262) cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ - { 189, -7 }, /* (263) cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ - { 189, -7 }, /* (264) cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ - { 189, -7 }, /* (265) cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ - { 189, -8 }, /* (266) cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ - { 189, -3 }, /* (267) cmd ::= KILL CONNECTION INTEGER */ - { 189, -5 }, /* (268) cmd ::= KILL STREAM INTEGER COLON INTEGER */ - { 189, -5 }, /* (269) cmd ::= KILL QUERY INTEGER COLON INTEGER */ + { 189, 1 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 2 }, + { 190, 3 }, + { 191, 0 }, + { 191, 2 }, + { 193, 0 }, + { 193, 2 }, + { 190, 5 }, + { 190, 5 }, + { 190, 4 }, + { 190, 3 }, + { 190, 5 }, + { 190, 3 }, + { 190, 5 }, + { 190, 3 }, + { 190, 4 }, + { 190, 5 }, + { 190, 5 }, + { 190, 4 }, + { 190, 4 }, + { 190, 3 }, + { 190, 3 }, + { 190, 3 }, + { 190, 2 }, + { 190, 3 }, + { 190, 5 }, + { 190, 5 }, + { 190, 4 }, + { 190, 5 }, + { 190, 3 }, + { 190, 4 }, + { 190, 4 }, + { 190, 4 }, + { 190, 4 }, + { 190, 6 }, + { 190, 6 }, + { 192, 1 }, + { 192, 1 }, + { 194, 2 }, + { 194, 0 }, + { 199, 3 }, + { 199, 0 }, + { 190, 3 }, + { 190, 6 }, + { 190, 5 }, + { 190, 5 }, + { 190, 5 }, + { 202, 0 }, + { 202, 2 }, + { 203, 0 }, + { 203, 2 }, + { 204, 0 }, + { 204, 2 }, + { 205, 0 }, + { 205, 2 }, + { 206, 0 }, + { 206, 2 }, + { 207, 0 }, + { 207, 2 }, + { 208, 0 }, + { 208, 2 }, + { 209, 0 }, + { 209, 2 }, + { 210, 0 }, + { 210, 2 }, + { 197, 9 }, + { 211, 2 }, + { 213, 2 }, + { 214, 2 }, + { 215, 2 }, + { 216, 2 }, + { 217, 2 }, + { 218, 2 }, + { 219, 2 }, + { 220, 2 }, + { 221, 2 }, + { 222, 2 }, + { 223, 2 }, + { 224, 2 }, + { 225, 2 }, + { 226, 2 }, + { 227, 2 }, + { 200, 0 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 200, 2 }, + { 201, 1 }, + { 201, 2 }, + { 195, 0 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 195, 2 }, + { 196, 1 }, + { 196, 2 }, + { 228, 1 }, + { 228, 4 }, + { 228, 2 }, + { 229, 1 }, + { 229, 2 }, + { 229, 2 }, + { 190, 3 }, + { 190, 3 }, + { 190, 3 }, + { 190, 3 }, + { 232, 1 }, + { 232, 2 }, + { 230, 6 }, + { 231, 10 }, + { 233, 10 }, + { 233, 13 }, + { 235, 3 }, + { 235, 1 }, + { 230, 5 }, + { 234, 3 }, + { 234, 1 }, + { 237, 2 }, + { 212, 3 }, + { 212, 1 }, + { 238, 1 }, + { 238, 1 }, + { 238, 1 }, + { 238, 1 }, + { 238, 1 }, + { 238, 2 }, + { 238, 2 }, + { 238, 2 }, + { 238, 2 }, + { 236, 13 }, + { 236, 3 }, + { 251, 1 }, + { 251, 4 }, + { 190, 1 }, + { 236, 2 }, + { 252, 2 }, + { 252, 0 }, + { 239, 4 }, + { 239, 2 }, + { 255, 2 }, + { 255, 1 }, + { 255, 0 }, + { 253, 1 }, + { 253, 0 }, + { 240, 2 }, + { 240, 4 }, + { 256, 2 }, + { 256, 3 }, + { 256, 4 }, + { 256, 5 }, + { 257, 1 }, + { 242, 4 }, + { 242, 6 }, + { 242, 0 }, + { 243, 0 }, + { 243, 7 }, + { 244, 0 }, + { 244, 6 }, + { 244, 4 }, + { 245, 4 }, + { 245, 0 }, + { 247, 0 }, + { 247, 3 }, + { 258, 4 }, + { 258, 2 }, + { 260, 2 }, + { 261, 1 }, + { 261, 1 }, + { 261, 0 }, + { 246, 0 }, + { 246, 3 }, + { 262, 3 }, + { 262, 1 }, + { 248, 0 }, + { 248, 2 }, + { 250, 0 }, + { 250, 2 }, + { 250, 4 }, + { 250, 4 }, + { 249, 0 }, + { 249, 2 }, + { 249, 4 }, + { 249, 4 }, + { 241, 0 }, + { 241, 2 }, + { 254, 3 }, + { 254, 1 }, + { 254, 3 }, + { 254, 3 }, + { 254, 1 }, + { 254, 2 }, + { 254, 2 }, + { 254, 1 }, + { 254, 2 }, + { 254, 2 }, + { 254, 1 }, + { 254, 1 }, + { 254, 1 }, + { 254, 2 }, + { 254, 2 }, + { 254, 1 }, + { 254, 1 }, + { 254, 4 }, + { 254, 4 }, + { 254, 3 }, + { 254, 4 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 5 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 3 }, + { 254, 5 }, + { 198, 3 }, + { 198, 1 }, + { 263, 1 }, + { 263, 0 }, + { 190, 3 }, + { 190, 3 }, + { 190, 7 }, + { 190, 7 }, + { 190, 7 }, + { 190, 7 }, + { 190, 8 }, + { 190, 9 }, + { 190, 7 }, + { 190, 7 }, + { 190, 7 }, + { 190, 7 }, + { 190, 8 }, + { 190, 3 }, + { 190, 5 }, + { 190, 5 }, }; static void yy_accept(yyParser*); /* Forward Declaration */ @@ -2032,66 +1719,43 @@ static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. -** -** The yyLookahead and yyLookaheadToken parameters provide reduce actions -** access to the lookahead token (if any). The yyLookahead will be YYNOCODE -** if the lookahead token has already been consumed. As this procedure is -** only called from one place, optimizing compilers will in-line it, which -** means that the extra parameters have no performance impact. */ static void yy_reduce( yyParser *yypParser, /* The parser */ - unsigned int yyruleno, /* Number of the rule by which to reduce */ - int yyLookahead, /* Lookahead token, or YYNOCODE if none */ - ParseTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ + int yyruleno /* Number of the rule by which to reduce */ ){ int yygoto; /* The next state */ int yyact; /* The next action */ + YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ ParseARG_FETCH; - (void)yyLookahead; - (void)yyLookaheadToken; - yymsp = yypParser->yytos; + yymsp = &yypParser->yystack[yypParser->yyidx]; #ifndef NDEBUG - if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ - yysize = yyRuleInfo[yyruleno].nrhs; - if( yysize ){ - fprintf(yyTraceFILE, "%sReduce %d [%s], go to state %d.\n", - yyTracePrompt, - yyruleno, yyRuleName[yyruleno], yymsp[yysize].stateno); - }else{ - fprintf(yyTraceFILE, "%sReduce %d [%s].\n", - yyTracePrompt, yyruleno, yyRuleName[yyruleno]); - } + if( yyTraceFILE && yyruleno>=0 + && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ + fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt, + yyRuleName[yyruleno]); } #endif /* NDEBUG */ - /* Check that the stack is large enough to grow by a single entry - ** if the RHS of the rule is empty. This ensures that there is room - ** enough on the stack to push the LHS value */ - if( yyRuleInfo[yyruleno].nrhs==0 ){ -#ifdef YYTRACKMAXSTACKDEPTH - if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ - yypParser->yyhwm++; - assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); - } -#endif -#if YYSTACKDEPTH>0 - if( yypParser->yytos>=yypParser->yystackEnd ){ - yyStackOverflow(yypParser); - return; - } -#else - if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ - if( yyGrowStack(yypParser) ){ - yyStackOverflow(yypParser); - return; - } - yymsp = yypParser->yytos; - } -#endif - } + /* Silence complaints from purify about yygotominor being uninitialized + ** in some cases when it is copied into the stack after the following + ** switch. yygotominor is uninitialized when a rule reduces that does + ** not set the value of its left-hand side nonterminal. Leaving the + ** value of the nonterminal uninitialized is utterly harmless as long + ** as the value is never used. So really the only thing this code + ** accomplishes is to quieten purify. + ** + ** 2007-01-16: The wireshark project (www.wireshark.org) reports that + ** without this code, their parser segfaults. I'm not sure what there + ** parser is doing to make this happen. This is the second bug report + ** from wireshark this week. Clearly they are stressing Lemon in ways + ** that it has not been previously stressed... (SQLite ticket #2172) + */ + /*memset(&yygotominor, 0, sizeof(yygotominor));*/ + yygotominor = yyzerominor; + switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example @@ -2102,12 +1766,7 @@ static void yy_reduce( ** #line ** break; */ -/********** Begin reduce actions **********************************************/ - YYMINORTYPE yylhsminor; case 0: /* program ::= cmd */ - case 130: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==130); - case 131: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==131); - case 132: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==132); {} break; case 1: /* cmd ::= SHOW DATABASES */ @@ -2156,17 +1815,16 @@ static void yy_reduce( { setShowOptions(pInfo, TSDB_MGMT_TABLE_VNODES, &yymsp[0].minor.yy0, 0); } break; case 16: /* dbPrefix ::= */ -{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.type = 0;} +{yygotominor.yy0.n = 0; yygotominor.yy0.type = 0;} break; case 17: /* dbPrefix ::= ids DOT */ -{yylhsminor.yy0 = yymsp[-1].minor.yy0; } - yymsp[-1].minor.yy0 = yylhsminor.yy0; +{yygotominor.yy0 = yymsp[-1].minor.yy0; } break; case 18: /* cpxName ::= */ -{yymsp[1].minor.yy0.n = 0; } +{yygotominor.yy0.n = 0; } break; case 19: /* cpxName ::= DOT ids */ -{yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n += 1; } +{yygotominor.yy0 = yymsp[0].minor.yy0; yygotominor.yy0.n += 1; } break; case 20: /* cmd ::= SHOW CREATE TABLE ids cpxName */ { @@ -2277,729 +1935,629 @@ static void yy_reduce( break; case 44: /* cmd ::= ALTER DATABASE ids alter_db_optr */ case 45: /* cmd ::= ALTER TOPIC ids alter_topic_optr */ yytestcase(yyruleno==45); -{ SStrToken t = {0}; setCreateDbInfo(pInfo, TSDB_SQL_ALTER_DB, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy322, &t);} +{ SStrToken t = {0}; setCreateDbInfo(pInfo, TSDB_SQL_ALTER_DB, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy526, &t);} break; case 46: /* cmd ::= ALTER ACCOUNT ids acct_optr */ -{ setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &yymsp[-1].minor.yy0, NULL, &yymsp[0].minor.yy351);} +{ setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &yymsp[-1].minor.yy0, NULL, &yymsp[0].minor.yy187);} break; case 47: /* cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */ -{ setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &yymsp[-3].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy351);} +{ setCreateAcctSql(pInfo, TSDB_SQL_ALTER_ACCT, &yymsp[-3].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy187);} break; - case 48: /* ids ::= ID */ - case 49: /* ids ::= STRING */ yytestcase(yyruleno==49); -{yylhsminor.yy0 = yymsp[0].minor.yy0; } - yymsp[0].minor.yy0 = yylhsminor.yy0; + case 48: /* cmd ::= COMPACT VNODES IN LP exprlist RP */ +{ setCompactVnodeSql(pInfo, TSDB_SQL_COMPACT_VNODE, yymsp[-1].minor.yy285);} break; - case 50: /* ifexists ::= IF EXISTS */ -{ yymsp[-1].minor.yy0.n = 1;} + case 49: /* ids ::= ID */ + case 50: /* ids ::= STRING */ yytestcase(yyruleno==50); +{yygotominor.yy0 = yymsp[0].minor.yy0; } break; - case 51: /* ifexists ::= */ - case 53: /* ifnotexists ::= */ yytestcase(yyruleno==53); - case 171: /* distinct ::= */ yytestcase(yyruleno==171); -{ yymsp[1].minor.yy0.n = 0;} + case 51: /* ifexists ::= IF EXISTS */ + case 53: /* ifnotexists ::= IF NOT EXISTS */ yytestcase(yyruleno==53); +{ yygotominor.yy0.n = 1;} break; - case 52: /* ifnotexists ::= IF NOT EXISTS */ -{ yymsp[-2].minor.yy0.n = 1;} + case 52: /* ifexists ::= */ + case 54: /* ifnotexists ::= */ yytestcase(yyruleno==54); + case 172: /* distinct ::= */ yytestcase(yyruleno==172); +{ yygotominor.yy0.n = 0;} break; - case 54: /* cmd ::= CREATE DNODE ids */ + case 55: /* cmd ::= CREATE DNODE ids */ { setDCLSqlElems(pInfo, TSDB_SQL_CREATE_DNODE, 1, &yymsp[0].minor.yy0);} break; - case 55: /* cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ -{ setCreateAcctSql(pInfo, TSDB_SQL_CREATE_ACCT, &yymsp[-3].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy351);} + case 56: /* cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ +{ setCreateAcctSql(pInfo, TSDB_SQL_CREATE_ACCT, &yymsp[-3].minor.yy0, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy187);} break; - case 56: /* cmd ::= CREATE DATABASE ifnotexists ids db_optr */ - case 57: /* cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ yytestcase(yyruleno==57); -{ setCreateDbInfo(pInfo, TSDB_SQL_CREATE_DB, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy322, &yymsp[-2].minor.yy0);} + case 57: /* cmd ::= CREATE DATABASE ifnotexists ids db_optr */ + case 58: /* cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ yytestcase(yyruleno==58); +{ setCreateDbInfo(pInfo, TSDB_SQL_CREATE_DB, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy526, &yymsp[-2].minor.yy0);} break; - case 58: /* cmd ::= CREATE USER ids PASS ids */ + case 59: /* cmd ::= CREATE USER ids PASS ids */ { setCreateUserSql(pInfo, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0);} break; - case 59: /* pps ::= */ - case 61: /* tseries ::= */ yytestcase(yyruleno==61); - case 63: /* dbs ::= */ yytestcase(yyruleno==63); - case 65: /* streams ::= */ yytestcase(yyruleno==65); - case 67: /* storage ::= */ yytestcase(yyruleno==67); - case 69: /* qtime ::= */ yytestcase(yyruleno==69); - case 71: /* users ::= */ yytestcase(yyruleno==71); - case 73: /* conns ::= */ yytestcase(yyruleno==73); - case 75: /* state ::= */ yytestcase(yyruleno==75); -{ yymsp[1].minor.yy0.n = 0; } + case 60: /* pps ::= */ + case 62: /* tseries ::= */ yytestcase(yyruleno==62); + case 64: /* dbs ::= */ yytestcase(yyruleno==64); + case 66: /* streams ::= */ yytestcase(yyruleno==66); + case 68: /* storage ::= */ yytestcase(yyruleno==68); + case 70: /* qtime ::= */ yytestcase(yyruleno==70); + case 72: /* users ::= */ yytestcase(yyruleno==72); + case 74: /* conns ::= */ yytestcase(yyruleno==74); + case 76: /* state ::= */ yytestcase(yyruleno==76); +{ yygotominor.yy0.n = 0; } break; - case 60: /* pps ::= PPS INTEGER */ - case 62: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==62); - case 64: /* dbs ::= DBS INTEGER */ yytestcase(yyruleno==64); - case 66: /* streams ::= STREAMS INTEGER */ yytestcase(yyruleno==66); - case 68: /* storage ::= STORAGE INTEGER */ yytestcase(yyruleno==68); - case 70: /* qtime ::= QTIME INTEGER */ yytestcase(yyruleno==70); - case 72: /* users ::= USERS INTEGER */ yytestcase(yyruleno==72); - case 74: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==74); - case 76: /* state ::= STATE ids */ yytestcase(yyruleno==76); -{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } + case 61: /* pps ::= PPS INTEGER */ + case 63: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==63); + case 65: /* dbs ::= DBS INTEGER */ yytestcase(yyruleno==65); + case 67: /* streams ::= STREAMS INTEGER */ yytestcase(yyruleno==67); + case 69: /* storage ::= STORAGE INTEGER */ yytestcase(yyruleno==69); + case 71: /* qtime ::= QTIME INTEGER */ yytestcase(yyruleno==71); + case 73: /* users ::= USERS INTEGER */ yytestcase(yyruleno==73); + case 75: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==75); + case 77: /* state ::= STATE ids */ yytestcase(yyruleno==77); +{ yygotominor.yy0 = yymsp[0].minor.yy0; } break; - case 77: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */ + case 78: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */ { - yylhsminor.yy351.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; - yylhsminor.yy351.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; - yylhsminor.yy351.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; - yylhsminor.yy351.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; - yylhsminor.yy351.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; - yylhsminor.yy351.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; - yylhsminor.yy351.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; - yylhsminor.yy351.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; - yylhsminor.yy351.stat = yymsp[0].minor.yy0; + yygotominor.yy187.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; + yygotominor.yy187.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; + yygotominor.yy187.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; + yygotominor.yy187.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; + yygotominor.yy187.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; + yygotominor.yy187.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; + yygotominor.yy187.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; + yygotominor.yy187.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; + yygotominor.yy187.stat = yymsp[0].minor.yy0; } - yymsp[-8].minor.yy351 = yylhsminor.yy351; break; - case 78: /* keep ::= KEEP tagitemlist */ -{ yymsp[-1].minor.yy159 = yymsp[0].minor.yy159; } + case 79: /* keep ::= KEEP tagitemlist */ +{ yygotominor.yy285 = yymsp[0].minor.yy285; } break; - case 79: /* cache ::= CACHE INTEGER */ - case 80: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==80); - case 81: /* quorum ::= QUORUM INTEGER */ yytestcase(yyruleno==81); - case 82: /* days ::= DAYS INTEGER */ yytestcase(yyruleno==82); - case 83: /* minrows ::= MINROWS INTEGER */ yytestcase(yyruleno==83); - case 84: /* maxrows ::= MAXROWS INTEGER */ yytestcase(yyruleno==84); - case 85: /* blocks ::= BLOCKS INTEGER */ yytestcase(yyruleno==85); - case 86: /* ctime ::= CTIME INTEGER */ yytestcase(yyruleno==86); - case 87: /* wal ::= WAL INTEGER */ yytestcase(yyruleno==87); - case 88: /* fsync ::= FSYNC INTEGER */ yytestcase(yyruleno==88); - case 89: /* comp ::= COMP INTEGER */ yytestcase(yyruleno==89); - case 90: /* prec ::= PRECISION STRING */ yytestcase(yyruleno==90); - case 91: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==91); - case 92: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==92); - case 93: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==93); -{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } + case 80: /* cache ::= CACHE INTEGER */ + case 81: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==81); + case 82: /* quorum ::= QUORUM INTEGER */ yytestcase(yyruleno==82); + case 83: /* days ::= DAYS INTEGER */ yytestcase(yyruleno==83); + case 84: /* minrows ::= MINROWS INTEGER */ yytestcase(yyruleno==84); + case 85: /* maxrows ::= MAXROWS INTEGER */ yytestcase(yyruleno==85); + case 86: /* blocks ::= BLOCKS INTEGER */ yytestcase(yyruleno==86); + case 87: /* ctime ::= CTIME INTEGER */ yytestcase(yyruleno==87); + case 88: /* wal ::= WAL INTEGER */ yytestcase(yyruleno==88); + case 89: /* fsync ::= FSYNC INTEGER */ yytestcase(yyruleno==89); + case 90: /* comp ::= COMP INTEGER */ yytestcase(yyruleno==90); + case 91: /* prec ::= PRECISION STRING */ yytestcase(yyruleno==91); + case 92: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==92); + case 93: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==93); + case 94: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==94); +{ yygotominor.yy0 = yymsp[0].minor.yy0; } break; - case 94: /* db_optr ::= */ -{setDefaultCreateDbOption(&yymsp[1].minor.yy322); yymsp[1].minor.yy322.dbType = TSDB_DB_TYPE_DEFAULT;} + case 95: /* db_optr ::= */ +{setDefaultCreateDbOption(&yygotominor.yy526); yygotominor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} break; - case 95: /* db_optr ::= db_optr cache */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 96: /* db_optr ::= db_optr cache */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 96: /* db_optr ::= db_optr replica */ - case 113: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==113); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 97: /* db_optr ::= db_optr replica */ + case 114: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==114); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 97: /* db_optr ::= db_optr quorum */ - case 114: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==114); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 98: /* db_optr ::= db_optr quorum */ + case 115: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==115); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 98: /* db_optr ::= db_optr days */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 99: /* db_optr ::= db_optr days */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 99: /* db_optr ::= db_optr minrows */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 100: /* db_optr ::= db_optr minrows */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } break; - case 100: /* db_optr ::= db_optr maxrows */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 101: /* db_optr ::= db_optr maxrows */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } break; - case 101: /* db_optr ::= db_optr blocks */ - case 116: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==116); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 102: /* db_optr ::= db_optr blocks */ + case 117: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==117); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 102: /* db_optr ::= db_optr ctime */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 103: /* db_optr ::= db_optr ctime */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 103: /* db_optr ::= db_optr wal */ - case 118: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==118); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 104: /* db_optr ::= db_optr wal */ + case 119: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==119); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 104: /* db_optr ::= db_optr fsync */ - case 119: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==119); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 105: /* db_optr ::= db_optr fsync */ + case 120: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==120); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 105: /* db_optr ::= db_optr comp */ - case 117: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==117); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 106: /* db_optr ::= db_optr comp */ + case 118: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==118); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 106: /* db_optr ::= db_optr prec */ -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.precision = yymsp[0].minor.yy0; } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 107: /* db_optr ::= db_optr prec */ +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.precision = yymsp[0].minor.yy0; } break; - case 107: /* db_optr ::= db_optr keep */ - case 115: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==115); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.keep = yymsp[0].minor.yy159; } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 108: /* db_optr ::= db_optr keep */ + case 116: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==116); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.keep = yymsp[0].minor.yy285; } break; - case 108: /* db_optr ::= db_optr update */ - case 120: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==120); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 109: /* db_optr ::= db_optr update */ + case 121: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==121); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 109: /* db_optr ::= db_optr cachelast */ - case 121: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==121); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 110: /* db_optr ::= db_optr cachelast */ + case 122: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==122); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 110: /* topic_optr ::= db_optr */ - case 122: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==122); -{ yylhsminor.yy322 = yymsp[0].minor.yy322; yylhsminor.yy322.dbType = TSDB_DB_TYPE_TOPIC; } - yymsp[0].minor.yy322 = yylhsminor.yy322; + case 111: /* topic_optr ::= db_optr */ + case 123: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==123); +{ yygotominor.yy526 = yymsp[0].minor.yy526; yygotominor.yy526.dbType = TSDB_DB_TYPE_TOPIC; } break; - case 111: /* topic_optr ::= topic_optr partitions */ - case 123: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==123); -{ yylhsminor.yy322 = yymsp[-1].minor.yy322; yylhsminor.yy322.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[-1].minor.yy322 = yylhsminor.yy322; + case 112: /* topic_optr ::= topic_optr partitions */ + case 124: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==124); +{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 112: /* alter_db_optr ::= */ -{ setDefaultCreateDbOption(&yymsp[1].minor.yy322); yymsp[1].minor.yy322.dbType = TSDB_DB_TYPE_DEFAULT;} + case 113: /* alter_db_optr ::= */ +{ setDefaultCreateDbOption(&yygotominor.yy526); yygotominor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} break; - case 124: /* typename ::= ids */ + case 125: /* typename ::= ids */ { yymsp[0].minor.yy0.type = 0; - tSetColumnType (&yylhsminor.yy407, &yymsp[0].minor.yy0); + tSetColumnType (&yygotominor.yy295, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy407 = yylhsminor.yy407; break; - case 125: /* typename ::= ids LP signed RP */ + case 126: /* typename ::= ids LP signed RP */ { - if (yymsp[-1].minor.yy317 <= 0) { + if (yymsp[-1].minor.yy525 <= 0) { yymsp[-3].minor.yy0.type = 0; - tSetColumnType(&yylhsminor.yy407, &yymsp[-3].minor.yy0); + tSetColumnType(&yygotominor.yy295, &yymsp[-3].minor.yy0); } else { - yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy317; // negative value of name length - tSetColumnType(&yylhsminor.yy407, &yymsp[-3].minor.yy0); + yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy525; // negative value of name length + tSetColumnType(&yygotominor.yy295, &yymsp[-3].minor.yy0); } } - yymsp[-3].minor.yy407 = yylhsminor.yy407; break; - case 126: /* typename ::= ids UNSIGNED */ + case 127: /* typename ::= ids UNSIGNED */ { yymsp[-1].minor.yy0.type = 0; yymsp[-1].minor.yy0.n = ((yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z); - tSetColumnType (&yylhsminor.yy407, &yymsp[-1].minor.yy0); + tSetColumnType (&yygotominor.yy295, &yymsp[-1].minor.yy0); } - yymsp[-1].minor.yy407 = yylhsminor.yy407; break; - case 127: /* signed ::= INTEGER */ -{ yylhsminor.yy317 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } - yymsp[0].minor.yy317 = yylhsminor.yy317; + case 128: /* signed ::= INTEGER */ + case 129: /* signed ::= PLUS INTEGER */ yytestcase(yyruleno==129); +{ yygotominor.yy525 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; - case 128: /* signed ::= PLUS INTEGER */ -{ yymsp[-1].minor.yy317 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + case 130: /* signed ::= MINUS INTEGER */ + case 131: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==131); + case 132: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==132); + case 133: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==133); +{ yygotominor.yy525 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} break; - case 129: /* signed ::= MINUS INTEGER */ -{ yymsp[-1].minor.yy317 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} + case 134: /* cmd ::= CREATE TABLE create_table_list */ +{ pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy470;} break; - case 133: /* cmd ::= CREATE TABLE create_table_list */ -{ pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy14;} - break; - case 134: /* create_table_list ::= create_from_stable */ + case 135: /* create_table_list ::= create_from_stable */ { SCreateTableSql* pCreateTable = calloc(1, sizeof(SCreateTableSql)); pCreateTable->childTableInfo = taosArrayInit(4, sizeof(SCreatedTableInfo)); - taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy206); + taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy96); pCreateTable->type = TSQL_CREATE_TABLE_FROM_STABLE; - yylhsminor.yy14 = pCreateTable; + yygotominor.yy470 = pCreateTable; } - yymsp[0].minor.yy14 = yylhsminor.yy14; break; - case 135: /* create_table_list ::= create_table_list create_from_stable */ + case 136: /* create_table_list ::= create_table_list create_from_stable */ { - taosArrayPush(yymsp[-1].minor.yy14->childTableInfo, &yymsp[0].minor.yy206); - yylhsminor.yy14 = yymsp[-1].minor.yy14; + taosArrayPush(yymsp[-1].minor.yy470->childTableInfo, &yymsp[0].minor.yy96); + yygotominor.yy470 = yymsp[-1].minor.yy470; } - yymsp[-1].minor.yy14 = yylhsminor.yy14; break; - case 136: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ + case 137: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ { - yylhsminor.yy14 = tSetCreateTableInfo(yymsp[-1].minor.yy159, NULL, NULL, TSQL_CREATE_TABLE); - setSqlInfo(pInfo, yylhsminor.yy14, NULL, TSDB_SQL_CREATE_TABLE); + yygotominor.yy470 = tSetCreateTableInfo(yymsp[-1].minor.yy285, NULL, NULL, TSQL_CREATE_TABLE); + setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-4].minor.yy0, &yymsp[-5].minor.yy0); } - yymsp[-5].minor.yy14 = yylhsminor.yy14; break; - case 137: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ + case 138: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ { - yylhsminor.yy14 = tSetCreateTableInfo(yymsp[-5].minor.yy159, yymsp[-1].minor.yy159, NULL, TSQL_CREATE_STABLE); - setSqlInfo(pInfo, yylhsminor.yy14, NULL, TSDB_SQL_CREATE_TABLE); + yygotominor.yy470 = tSetCreateTableInfo(yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, NULL, TSQL_CREATE_STABLE); + setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } - yymsp[-9].minor.yy14 = yylhsminor.yy14; break; - case 138: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ + case 139: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ { yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; - yylhsminor.yy206 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy159, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); + yygotominor.yy96 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy285, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } - yymsp[-9].minor.yy206 = yylhsminor.yy206; break; - case 139: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ + case 140: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ { yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-11].minor.yy0.n += yymsp[-10].minor.yy0.n; - yylhsminor.yy206 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy159, yymsp[-1].minor.yy159, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); + yygotominor.yy96 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); } - yymsp[-12].minor.yy206 = yylhsminor.yy206; break; - case 140: /* tagNamelist ::= tagNamelist COMMA ids */ -{taosArrayPush(yymsp[-2].minor.yy159, &yymsp[0].minor.yy0); yylhsminor.yy159 = yymsp[-2].minor.yy159; } - yymsp[-2].minor.yy159 = yylhsminor.yy159; + case 141: /* tagNamelist ::= tagNamelist COMMA ids */ +{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy0); yygotominor.yy285 = yymsp[-2].minor.yy285; } break; - case 141: /* tagNamelist ::= ids */ -{yylhsminor.yy159 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yylhsminor.yy159, &yymsp[0].minor.yy0);} - yymsp[0].minor.yy159 = yylhsminor.yy159; + case 142: /* tagNamelist ::= ids */ +{yygotominor.yy285 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yygotominor.yy285, &yymsp[0].minor.yy0);} break; - case 142: /* create_table_args ::= ifnotexists ids cpxName AS select */ + case 143: /* create_table_args ::= ifnotexists ids cpxName AS select */ { - yylhsminor.yy14 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy116, TSQL_CREATE_STREAM); - setSqlInfo(pInfo, yylhsminor.yy14, NULL, TSDB_SQL_CREATE_TABLE); + yygotominor.yy470 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy344, TSQL_CREATE_STREAM); + setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-3].minor.yy0.n += yymsp[-2].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-3].minor.yy0, &yymsp[-4].minor.yy0); } - yymsp[-4].minor.yy14 = yylhsminor.yy14; break; - case 143: /* columnlist ::= columnlist COMMA column */ -{taosArrayPush(yymsp[-2].minor.yy159, &yymsp[0].minor.yy407); yylhsminor.yy159 = yymsp[-2].minor.yy159; } - yymsp[-2].minor.yy159 = yylhsminor.yy159; + case 144: /* columnlist ::= columnlist COMMA column */ +{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy295); yygotominor.yy285 = yymsp[-2].minor.yy285; } break; - case 144: /* columnlist ::= column */ -{yylhsminor.yy159 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yylhsminor.yy159, &yymsp[0].minor.yy407);} - yymsp[0].minor.yy159 = yylhsminor.yy159; + case 145: /* columnlist ::= column */ +{yygotominor.yy285 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yygotominor.yy285, &yymsp[0].minor.yy295);} break; - case 145: /* column ::= ids typename */ + case 146: /* column ::= ids typename */ { - tSetColumnInfo(&yylhsminor.yy407, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy407); + tSetColumnInfo(&yygotominor.yy295, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy295); } - yymsp[-1].minor.yy407 = yylhsminor.yy407; break; - case 146: /* tagitemlist ::= tagitemlist COMMA tagitem */ -{ yylhsminor.yy159 = tVariantListAppend(yymsp[-2].minor.yy159, &yymsp[0].minor.yy488, -1); } - yymsp[-2].minor.yy159 = yylhsminor.yy159; + case 147: /* tagitemlist ::= tagitemlist COMMA tagitem */ +{ yygotominor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); } break; - case 147: /* tagitemlist ::= tagitem */ -{ yylhsminor.yy159 = tVariantListAppend(NULL, &yymsp[0].minor.yy488, -1); } - yymsp[0].minor.yy159 = yylhsminor.yy159; + case 148: /* tagitemlist ::= tagitem */ +{ yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); } break; - case 148: /* tagitem ::= INTEGER */ - case 149: /* tagitem ::= FLOAT */ yytestcase(yyruleno==149); - case 150: /* tagitem ::= STRING */ yytestcase(yyruleno==150); - case 151: /* tagitem ::= BOOL */ yytestcase(yyruleno==151); -{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yylhsminor.yy488, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy488 = yylhsminor.yy488; + case 149: /* tagitem ::= INTEGER */ + case 150: /* tagitem ::= FLOAT */ yytestcase(yyruleno==150); + case 151: /* tagitem ::= STRING */ yytestcase(yyruleno==151); + case 152: /* tagitem ::= BOOL */ yytestcase(yyruleno==152); +{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yygotominor.yy362, &yymsp[0].minor.yy0); } break; - case 152: /* tagitem ::= NULL */ -{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yylhsminor.yy488, &yymsp[0].minor.yy0); } - yymsp[0].minor.yy488 = yylhsminor.yy488; + case 153: /* tagitem ::= NULL */ +{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yygotominor.yy362, &yymsp[0].minor.yy0); } break; - case 153: /* tagitem ::= MINUS INTEGER */ - case 154: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==154); - case 155: /* tagitem ::= PLUS INTEGER */ yytestcase(yyruleno==155); - case 156: /* tagitem ::= PLUS FLOAT */ yytestcase(yyruleno==156); + case 154: /* tagitem ::= MINUS INTEGER */ + case 155: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==155); + case 156: /* tagitem ::= PLUS INTEGER */ yytestcase(yyruleno==156); + case 157: /* tagitem ::= PLUS FLOAT */ yytestcase(yyruleno==157); { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = yymsp[0].minor.yy0.type; toTSDBType(yymsp[-1].minor.yy0.type); - tVariantCreate(&yylhsminor.yy488, &yymsp[-1].minor.yy0); + tVariantCreate(&yygotominor.yy362, &yymsp[-1].minor.yy0); } - yymsp[-1].minor.yy488 = yylhsminor.yy488; break; - case 157: /* select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ + case 158: /* select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ { - yylhsminor.yy116 = tSetQuerySqlNode(&yymsp[-12].minor.yy0, yymsp[-11].minor.yy159, yymsp[-10].minor.yy236, yymsp[-9].minor.yy118, yymsp[-4].minor.yy159, yymsp[-3].minor.yy159, &yymsp[-8].minor.yy184, &yymsp[-7].minor.yy249, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy159, &yymsp[0].minor.yy440, &yymsp[-1].minor.yy440, yymsp[-2].minor.yy118); + yygotominor.yy344 = tSetQuerySqlNode(&yymsp[-12].minor.yy0, yymsp[-11].minor.yy285, yymsp[-10].minor.yy148, yymsp[-9].minor.yy178, yymsp[-4].minor.yy285, yymsp[-3].minor.yy285, &yymsp[-8].minor.yy376, &yymsp[-7].minor.yy523, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy285, &yymsp[0].minor.yy438, &yymsp[-1].minor.yy438, yymsp[-2].minor.yy178); } - yymsp[-12].minor.yy116 = yylhsminor.yy116; break; - case 158: /* select ::= LP select RP */ -{yymsp[-2].minor.yy116 = yymsp[-1].minor.yy116;} + case 159: /* select ::= LP select RP */ +{yygotominor.yy344 = yymsp[-1].minor.yy344;} break; - case 159: /* union ::= select */ -{ yylhsminor.yy159 = setSubclause(NULL, yymsp[0].minor.yy116); } - yymsp[0].minor.yy159 = yylhsminor.yy159; + case 160: /* union ::= select */ +{ yygotominor.yy285 = setSubclause(NULL, yymsp[0].minor.yy344); } break; - case 160: /* union ::= union UNION ALL select */ -{ yylhsminor.yy159 = appendSelectClause(yymsp[-3].minor.yy159, yymsp[0].minor.yy116); } - yymsp[-3].minor.yy159 = yylhsminor.yy159; + case 161: /* union ::= union UNION ALL select */ +{ yygotominor.yy285 = appendSelectClause(yymsp[-3].minor.yy285, yymsp[0].minor.yy344); } break; - case 161: /* cmd ::= union */ -{ setSqlInfo(pInfo, yymsp[0].minor.yy159, NULL, TSDB_SQL_SELECT); } + case 162: /* cmd ::= union */ +{ setSqlInfo(pInfo, yymsp[0].minor.yy285, NULL, TSDB_SQL_SELECT); } break; - case 162: /* select ::= SELECT selcollist */ + case 163: /* select ::= SELECT selcollist */ { - yylhsminor.yy116 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy159, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + yygotominor.yy344 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy285, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); } - yymsp[-1].minor.yy116 = yylhsminor.yy116; break; - case 163: /* sclp ::= selcollist COMMA */ -{yylhsminor.yy159 = yymsp[-1].minor.yy159;} - yymsp[-1].minor.yy159 = yylhsminor.yy159; + case 164: /* sclp ::= selcollist COMMA */ +{yygotominor.yy285 = yymsp[-1].minor.yy285;} break; - case 164: /* sclp ::= */ - case 189: /* orderby_opt ::= */ yytestcase(yyruleno==189); -{yymsp[1].minor.yy159 = 0;} + case 165: /* sclp ::= */ + case 190: /* orderby_opt ::= */ yytestcase(yyruleno==190); +{yygotominor.yy285 = 0;} break; - case 165: /* selcollist ::= sclp distinct expr as */ + case 166: /* selcollist ::= sclp distinct expr as */ { - yylhsminor.yy159 = tSqlExprListAppend(yymsp[-3].minor.yy159, yymsp[-1].minor.yy118, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); + yygotominor.yy285 = tSqlExprListAppend(yymsp[-3].minor.yy285, yymsp[-1].minor.yy178, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); } - yymsp[-3].minor.yy159 = yylhsminor.yy159; break; - case 166: /* selcollist ::= sclp STAR */ + case 167: /* selcollist ::= sclp STAR */ { tSqlExpr *pNode = tSqlExprCreateIdValue(NULL, TK_ALL); - yylhsminor.yy159 = tSqlExprListAppend(yymsp[-1].minor.yy159, pNode, 0, 0); + yygotominor.yy285 = tSqlExprListAppend(yymsp[-1].minor.yy285, pNode, 0, 0); } - yymsp[-1].minor.yy159 = yylhsminor.yy159; break; - case 167: /* as ::= AS ids */ -{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } + case 168: /* as ::= AS ids */ + case 169: /* as ::= ids */ yytestcase(yyruleno==169); +{ yygotominor.yy0 = yymsp[0].minor.yy0; } break; - case 168: /* as ::= ids */ -{ yylhsminor.yy0 = yymsp[0].minor.yy0; } - yymsp[0].minor.yy0 = yylhsminor.yy0; + case 170: /* as ::= */ +{ yygotominor.yy0.n = 0; } break; - case 169: /* as ::= */ -{ yymsp[1].minor.yy0.n = 0; } + case 171: /* distinct ::= DISTINCT */ +{ yygotominor.yy0 = yymsp[0].minor.yy0; } break; - case 170: /* distinct ::= DISTINCT */ -{ yylhsminor.yy0 = yymsp[0].minor.yy0; } - yymsp[0].minor.yy0 = yylhsminor.yy0; + case 173: /* from ::= FROM tablelist */ +{yygotominor.yy148 = yymsp[0].minor.yy148;} break; - case 172: /* from ::= FROM tablelist */ -{yymsp[-1].minor.yy236 = yymsp[0].minor.yy236;} + case 174: /* from ::= FROM LP union RP */ +{yygotominor.yy148 = setSubquery(NULL, yymsp[-1].minor.yy285);} break; - case 173: /* from ::= FROM LP union RP */ -{yymsp[-3].minor.yy236 = setSubquery(NULL, yymsp[-1].minor.yy159);} - break; - case 174: /* tablelist ::= ids cpxName */ + case 175: /* tablelist ::= ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yylhsminor.yy236 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); + yygotominor.yy148 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); } - yymsp[-1].minor.yy236 = yylhsminor.yy236; break; - case 175: /* tablelist ::= ids cpxName ids */ + case 176: /* tablelist ::= ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yylhsminor.yy236 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yygotominor.yy148 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } - yymsp[-2].minor.yy236 = yylhsminor.yy236; break; - case 176: /* tablelist ::= tablelist COMMA ids cpxName */ + case 177: /* tablelist ::= tablelist COMMA ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yylhsminor.yy236 = setTableNameList(yymsp[-3].minor.yy236, &yymsp[-1].minor.yy0, NULL); + yygotominor.yy148 = setTableNameList(yymsp[-3].minor.yy148, &yymsp[-1].minor.yy0, NULL); } - yymsp[-3].minor.yy236 = yylhsminor.yy236; break; - case 177: /* tablelist ::= tablelist COMMA ids cpxName ids */ + case 178: /* tablelist ::= tablelist COMMA ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yylhsminor.yy236 = setTableNameList(yymsp[-4].minor.yy236, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yygotominor.yy148 = setTableNameList(yymsp[-4].minor.yy148, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } - yymsp[-4].minor.yy236 = yylhsminor.yy236; break; - case 178: /* tmvar ::= VARIABLE */ -{yylhsminor.yy0 = yymsp[0].minor.yy0;} - yymsp[0].minor.yy0 = yylhsminor.yy0; + case 179: /* tmvar ::= VARIABLE */ +{yygotominor.yy0 = yymsp[0].minor.yy0;} break; - case 179: /* interval_opt ::= INTERVAL LP tmvar RP */ -{yymsp[-3].minor.yy184.interval = yymsp[-1].minor.yy0; yymsp[-3].minor.yy184.offset.n = 0;} + case 180: /* interval_opt ::= INTERVAL LP tmvar RP */ +{yygotominor.yy376.interval = yymsp[-1].minor.yy0; yygotominor.yy376.offset.n = 0;} break; - case 180: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ -{yymsp[-5].minor.yy184.interval = yymsp[-3].minor.yy0; yymsp[-5].minor.yy184.offset = yymsp[-1].minor.yy0;} + case 181: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ +{yygotominor.yy376.interval = yymsp[-3].minor.yy0; yygotominor.yy376.offset = yymsp[-1].minor.yy0;} break; - case 181: /* interval_opt ::= */ -{memset(&yymsp[1].minor.yy184, 0, sizeof(yymsp[1].minor.yy184));} + case 182: /* interval_opt ::= */ +{memset(&yygotominor.yy376, 0, sizeof(yygotominor.yy376));} break; - case 182: /* session_option ::= */ -{yymsp[1].minor.yy249.col.n = 0; yymsp[1].minor.yy249.gap.n = 0;} + case 183: /* session_option ::= */ +{yygotominor.yy523.col.n = 0; yygotominor.yy523.gap.n = 0;} break; - case 183: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ + case 184: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - yymsp[-6].minor.yy249.col = yymsp[-4].minor.yy0; - yymsp[-6].minor.yy249.gap = yymsp[-1].minor.yy0; + yygotominor.yy523.col = yymsp[-4].minor.yy0; + yygotominor.yy523.gap = yymsp[-1].minor.yy0; } break; - case 184: /* fill_opt ::= */ -{ yymsp[1].minor.yy159 = 0; } + case 185: /* fill_opt ::= */ +{ yygotominor.yy285 = 0; } break; - case 185: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */ + case 186: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */ { tVariant A = {0}; toTSDBType(yymsp[-3].minor.yy0.type); tVariantCreate(&A, &yymsp[-3].minor.yy0); - tVariantListInsert(yymsp[-1].minor.yy159, &A, -1, 0); - yymsp[-5].minor.yy159 = yymsp[-1].minor.yy159; + tVariantListInsert(yymsp[-1].minor.yy285, &A, -1, 0); + yygotominor.yy285 = yymsp[-1].minor.yy285; } break; - case 186: /* fill_opt ::= FILL LP ID RP */ + case 187: /* fill_opt ::= FILL LP ID RP */ { toTSDBType(yymsp[-1].minor.yy0.type); - yymsp[-3].minor.yy159 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); + yygotominor.yy285 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); } break; - case 187: /* sliding_opt ::= SLIDING LP tmvar RP */ -{yymsp[-3].minor.yy0 = yymsp[-1].minor.yy0; } + case 188: /* sliding_opt ::= SLIDING LP tmvar RP */ +{yygotominor.yy0 = yymsp[-1].minor.yy0; } break; - case 188: /* sliding_opt ::= */ -{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = NULL; yymsp[1].minor.yy0.type = 0; } + case 189: /* sliding_opt ::= */ +{yygotominor.yy0.n = 0; yygotominor.yy0.z = NULL; yygotominor.yy0.type = 0; } break; - case 190: /* orderby_opt ::= ORDER BY sortlist */ -{yymsp[-2].minor.yy159 = yymsp[0].minor.yy159;} + case 191: /* orderby_opt ::= ORDER BY sortlist */ +{yygotominor.yy285 = yymsp[0].minor.yy285;} break; - case 191: /* sortlist ::= sortlist COMMA item sortorder */ + case 192: /* sortlist ::= sortlist COMMA item sortorder */ { - yylhsminor.yy159 = tVariantListAppend(yymsp[-3].minor.yy159, &yymsp[-1].minor.yy488, yymsp[0].minor.yy20); + yygotominor.yy285 = tVariantListAppend(yymsp[-3].minor.yy285, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); } - yymsp[-3].minor.yy159 = yylhsminor.yy159; break; - case 192: /* sortlist ::= item sortorder */ + case 193: /* sortlist ::= item sortorder */ { - yylhsminor.yy159 = tVariantListAppend(NULL, &yymsp[-1].minor.yy488, yymsp[0].minor.yy20); + yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); } - yymsp[-1].minor.yy159 = yylhsminor.yy159; break; - case 193: /* item ::= ids cpxName */ + case 194: /* item ::= ids cpxName */ { toTSDBType(yymsp[-1].minor.yy0.type); yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - tVariantCreate(&yylhsminor.yy488, &yymsp[-1].minor.yy0); + tVariantCreate(&yygotominor.yy362, &yymsp[-1].minor.yy0); } - yymsp[-1].minor.yy488 = yylhsminor.yy488; break; - case 194: /* sortorder ::= ASC */ -{ yymsp[0].minor.yy20 = TSDB_ORDER_ASC; } + case 195: /* sortorder ::= ASC */ + case 197: /* sortorder ::= */ yytestcase(yyruleno==197); +{ yygotominor.yy460 = TSDB_ORDER_ASC; } break; - case 195: /* sortorder ::= DESC */ -{ yymsp[0].minor.yy20 = TSDB_ORDER_DESC;} + case 196: /* sortorder ::= DESC */ +{ yygotominor.yy460 = TSDB_ORDER_DESC;} break; - case 196: /* sortorder ::= */ -{ yymsp[1].minor.yy20 = TSDB_ORDER_ASC; } + case 198: /* groupby_opt ::= */ +{ yygotominor.yy285 = 0;} break; - case 197: /* groupby_opt ::= */ -{ yymsp[1].minor.yy159 = 0;} + case 199: /* groupby_opt ::= GROUP BY grouplist */ +{ yygotominor.yy285 = yymsp[0].minor.yy285;} break; - case 198: /* groupby_opt ::= GROUP BY grouplist */ -{ yymsp[-2].minor.yy159 = yymsp[0].minor.yy159;} - break; - case 199: /* grouplist ::= grouplist COMMA item */ + case 200: /* grouplist ::= grouplist COMMA item */ { - yylhsminor.yy159 = tVariantListAppend(yymsp[-2].minor.yy159, &yymsp[0].minor.yy488, -1); + yygotominor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); } - yymsp[-2].minor.yy159 = yylhsminor.yy159; break; - case 200: /* grouplist ::= item */ + case 201: /* grouplist ::= item */ { - yylhsminor.yy159 = tVariantListAppend(NULL, &yymsp[0].minor.yy488, -1); + yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); } - yymsp[0].minor.yy159 = yylhsminor.yy159; break; - case 201: /* having_opt ::= */ - case 211: /* where_opt ::= */ yytestcase(yyruleno==211); - case 253: /* expritem ::= */ yytestcase(yyruleno==253); -{yymsp[1].minor.yy118 = 0;} + case 202: /* having_opt ::= */ + case 212: /* where_opt ::= */ yytestcase(yyruleno==212); + case 254: /* expritem ::= */ yytestcase(yyruleno==254); +{yygotominor.yy178 = 0;} break; - case 202: /* having_opt ::= HAVING expr */ - case 212: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==212); -{yymsp[-1].minor.yy118 = yymsp[0].minor.yy118;} + case 203: /* having_opt ::= HAVING expr */ + case 213: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==213); + case 253: /* expritem ::= expr */ yytestcase(yyruleno==253); +{yygotominor.yy178 = yymsp[0].minor.yy178;} break; - case 203: /* limit_opt ::= */ - case 207: /* slimit_opt ::= */ yytestcase(yyruleno==207); -{yymsp[1].minor.yy440.limit = -1; yymsp[1].minor.yy440.offset = 0;} + case 204: /* limit_opt ::= */ + case 208: /* slimit_opt ::= */ yytestcase(yyruleno==208); +{yygotominor.yy438.limit = -1; yygotominor.yy438.offset = 0;} break; - case 204: /* limit_opt ::= LIMIT signed */ - case 208: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==208); -{yymsp[-1].minor.yy440.limit = yymsp[0].minor.yy317; yymsp[-1].minor.yy440.offset = 0;} + case 205: /* limit_opt ::= LIMIT signed */ + case 209: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==209); +{yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = 0;} break; - case 205: /* limit_opt ::= LIMIT signed OFFSET signed */ -{ yymsp[-3].minor.yy440.limit = yymsp[-2].minor.yy317; yymsp[-3].minor.yy440.offset = yymsp[0].minor.yy317;} + case 206: /* limit_opt ::= LIMIT signed OFFSET signed */ +{ yygotominor.yy438.limit = yymsp[-2].minor.yy525; yygotominor.yy438.offset = yymsp[0].minor.yy525;} break; - case 206: /* limit_opt ::= LIMIT signed COMMA signed */ -{ yymsp[-3].minor.yy440.limit = yymsp[0].minor.yy317; yymsp[-3].minor.yy440.offset = yymsp[-2].minor.yy317;} + case 207: /* limit_opt ::= LIMIT signed COMMA signed */ +{ yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = yymsp[-2].minor.yy525;} break; - case 209: /* slimit_opt ::= SLIMIT signed SOFFSET signed */ -{yymsp[-3].minor.yy440.limit = yymsp[-2].minor.yy317; yymsp[-3].minor.yy440.offset = yymsp[0].minor.yy317;} + case 210: /* slimit_opt ::= SLIMIT signed SOFFSET signed */ +{yygotominor.yy438.limit = yymsp[-2].minor.yy525; yygotominor.yy438.offset = yymsp[0].minor.yy525;} break; - case 210: /* slimit_opt ::= SLIMIT signed COMMA signed */ -{yymsp[-3].minor.yy440.limit = yymsp[0].minor.yy317; yymsp[-3].minor.yy440.offset = yymsp[-2].minor.yy317;} + case 211: /* slimit_opt ::= SLIMIT signed COMMA signed */ +{yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = yymsp[-2].minor.yy525;} break; - case 213: /* expr ::= LP expr RP */ -{yylhsminor.yy118 = yymsp[-1].minor.yy118; yylhsminor.yy118->token.z = yymsp[-2].minor.yy0.z; yylhsminor.yy118->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 214: /* expr ::= LP expr RP */ +{yygotominor.yy178 = yymsp[-1].minor.yy178; yygotominor.yy178->token.z = yymsp[-2].minor.yy0.z; yygotominor.yy178->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} break; - case 214: /* expr ::= ID */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 215: /* expr ::= ID */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} break; - case 215: /* expr ::= ID DOT ID */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 216: /* expr ::= ID DOT ID */ +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} break; - case 216: /* expr ::= ID DOT STAR */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 217: /* expr ::= ID DOT STAR */ +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} break; - case 217: /* expr ::= INTEGER */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 218: /* expr ::= INTEGER */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} break; - case 218: /* expr ::= MINUS INTEGER */ - case 219: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==219); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} - yymsp[-1].minor.yy118 = yylhsminor.yy118; + case 219: /* expr ::= MINUS INTEGER */ + case 220: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==220); +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} break; - case 220: /* expr ::= FLOAT */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 221: /* expr ::= FLOAT */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} break; - case 221: /* expr ::= MINUS FLOAT */ - case 222: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==222); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} - yymsp[-1].minor.yy118 = yylhsminor.yy118; + case 222: /* expr ::= MINUS FLOAT */ + case 223: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==223); +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} break; - case 223: /* expr ::= STRING */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 224: /* expr ::= STRING */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} break; - case 224: /* expr ::= NOW */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 225: /* expr ::= NOW */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } break; - case 225: /* expr ::= VARIABLE */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 226: /* expr ::= VARIABLE */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} break; - case 226: /* expr ::= PLUS VARIABLE */ - case 227: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==227); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} - yymsp[-1].minor.yy118 = yylhsminor.yy118; + case 227: /* expr ::= PLUS VARIABLE */ + case 228: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==228); +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} break; - case 228: /* expr ::= BOOL */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 229: /* expr ::= BOOL */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} break; - case 229: /* expr ::= NULL */ -{ yylhsminor.yy118 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} - yymsp[0].minor.yy118 = yylhsminor.yy118; + case 230: /* expr ::= NULL */ +{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} break; - case 230: /* expr ::= ID LP exprlist RP */ -{ yylhsminor.yy118 = tSqlExprCreateFunction(yymsp[-1].minor.yy159, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } - yymsp[-3].minor.yy118 = yylhsminor.yy118; + case 231: /* expr ::= ID LP exprlist RP */ +{ yygotominor.yy178 = tSqlExprCreateFunction(yymsp[-1].minor.yy285, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } break; - case 231: /* expr ::= ID LP STAR RP */ -{ yylhsminor.yy118 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } - yymsp[-3].minor.yy118 = yylhsminor.yy118; + case 232: /* expr ::= ID LP STAR RP */ +{ yygotominor.yy178 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } break; - case 232: /* expr ::= expr IS NULL */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, NULL, TK_ISNULL);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 233: /* expr ::= expr IS NULL */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, NULL, TK_ISNULL);} break; - case 233: /* expr ::= expr IS NOT NULL */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-3].minor.yy118, NULL, TK_NOTNULL);} - yymsp[-3].minor.yy118 = yylhsminor.yy118; + case 234: /* expr ::= expr IS NOT NULL */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-3].minor.yy178, NULL, TK_NOTNULL);} break; - case 234: /* expr ::= expr LT expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_LT);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 235: /* expr ::= expr LT expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LT);} break; - case 235: /* expr ::= expr GT expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_GT);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 236: /* expr ::= expr GT expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GT);} break; - case 236: /* expr ::= expr LE expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_LE);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 237: /* expr ::= expr LE expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LE);} break; - case 237: /* expr ::= expr GE expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_GE);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 238: /* expr ::= expr GE expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GE);} break; - case 238: /* expr ::= expr NE expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_NE);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 239: /* expr ::= expr NE expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_NE);} break; - case 239: /* expr ::= expr EQ expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_EQ);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 240: /* expr ::= expr EQ expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_EQ);} break; - case 240: /* expr ::= expr BETWEEN expr AND expr */ -{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy118); yylhsminor.yy118 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy118, yymsp[-2].minor.yy118, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy118, TK_LE), TK_AND);} - yymsp[-4].minor.yy118 = yylhsminor.yy118; + case 241: /* expr ::= expr BETWEEN expr AND expr */ +{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy178); yygotominor.yy178 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy178, yymsp[-2].minor.yy178, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy178, TK_LE), TK_AND);} break; - case 241: /* expr ::= expr AND expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_AND);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 242: /* expr ::= expr AND expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_AND);} break; - case 242: /* expr ::= expr OR expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_OR); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 243: /* expr ::= expr OR expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_OR); } break; - case 243: /* expr ::= expr PLUS expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_PLUS); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 244: /* expr ::= expr PLUS expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_PLUS); } break; - case 244: /* expr ::= expr MINUS expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_MINUS); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 245: /* expr ::= expr MINUS expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_MINUS); } break; - case 245: /* expr ::= expr STAR expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_STAR); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 246: /* expr ::= expr STAR expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_STAR); } break; - case 246: /* expr ::= expr SLASH expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_DIVIDE);} - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 247: /* expr ::= expr SLASH expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_DIVIDE);} break; - case 247: /* expr ::= expr REM expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_REM); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 248: /* expr ::= expr REM expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_REM); } break; - case 248: /* expr ::= expr LIKE expr */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-2].minor.yy118, yymsp[0].minor.yy118, TK_LIKE); } - yymsp[-2].minor.yy118 = yylhsminor.yy118; + case 249: /* expr ::= expr LIKE expr */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LIKE); } break; - case 249: /* expr ::= expr IN LP exprlist RP */ -{yylhsminor.yy118 = tSqlExprCreate(yymsp[-4].minor.yy118, (tSqlExpr*)yymsp[-1].minor.yy159, TK_IN); } - yymsp[-4].minor.yy118 = yylhsminor.yy118; + case 250: /* expr ::= expr IN LP exprlist RP */ +{yygotominor.yy178 = tSqlExprCreate(yymsp[-4].minor.yy178, (tSqlExpr*)yymsp[-1].minor.yy285, TK_IN); } break; - case 250: /* exprlist ::= exprlist COMMA expritem */ -{yylhsminor.yy159 = tSqlExprListAppend(yymsp[-2].minor.yy159,yymsp[0].minor.yy118,0, 0);} - yymsp[-2].minor.yy159 = yylhsminor.yy159; + case 251: /* exprlist ::= exprlist COMMA expritem */ +{yygotominor.yy285 = tSqlExprListAppend(yymsp[-2].minor.yy285,yymsp[0].minor.yy178,0, 0);} break; - case 251: /* exprlist ::= expritem */ -{yylhsminor.yy159 = tSqlExprListAppend(0,yymsp[0].minor.yy118,0, 0);} - yymsp[0].minor.yy159 = yylhsminor.yy159; + case 252: /* exprlist ::= expritem */ +{yygotominor.yy285 = tSqlExprListAppend(0,yymsp[0].minor.yy178,0, 0);} break; - case 252: /* expritem ::= expr */ -{yylhsminor.yy118 = yymsp[0].minor.yy118;} - yymsp[0].minor.yy118 = yylhsminor.yy118; - break; - case 254: /* cmd ::= RESET QUERY CACHE */ + case 255: /* cmd ::= RESET QUERY CACHE */ { setDCLSqlElems(pInfo, TSDB_SQL_RESET_CACHE, 0);} break; - case 255: /* cmd ::= SYNCDB ids REPLICA */ + case 256: /* cmd ::= SYNCDB ids REPLICA */ { setDCLSqlElems(pInfo, TSDB_SQL_SYNC_DB_REPLICA, 1, &yymsp[-1].minor.yy0);} break; - case 256: /* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ + case 257: /* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy159, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, -1); + SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy285, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, -1); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 257: /* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ + case 258: /* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; @@ -3010,14 +2568,14 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 258: /* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ + case 259: /* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy159, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, -1); + SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy285, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, -1); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 259: /* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ + case 260: /* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; @@ -3028,7 +2586,7 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 260: /* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ + case 261: /* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ { yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; @@ -3042,26 +2600,26 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 261: /* cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ + case 262: /* cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ { yymsp[-6].minor.yy0.n += yymsp[-5].minor.yy0.n; toTSDBType(yymsp[-2].minor.yy0.type); SArray* A = tVariantListAppendToken(NULL, &yymsp[-2].minor.yy0, -1); - A = tVariantListAppend(A, &yymsp[0].minor.yy488, -1); + A = tVariantListAppend(A, &yymsp[0].minor.yy362, -1); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-6].minor.yy0, NULL, A, TSDB_ALTER_TABLE_UPDATE_TAG_VAL, -1); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 262: /* cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ + case 263: /* cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy159, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, TSDB_SUPER_TABLE); + SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy285, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, TSDB_SUPER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 263: /* cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ + case 264: /* cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; @@ -3072,14 +2630,14 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 264: /* cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ + case 265: /* cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy159, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, TSDB_SUPER_TABLE); + SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy285, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, TSDB_SUPER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 265: /* cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ + case 266: /* cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; @@ -3090,7 +2648,7 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 266: /* cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ + case 267: /* cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ { yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; @@ -3104,36 +2662,43 @@ static void yy_reduce( setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); } break; - case 267: /* cmd ::= KILL CONNECTION INTEGER */ + case 268: /* cmd ::= KILL CONNECTION INTEGER */ {setKillSql(pInfo, TSDB_SQL_KILL_CONNECTION, &yymsp[0].minor.yy0);} break; - case 268: /* cmd ::= KILL STREAM INTEGER COLON INTEGER */ + case 269: /* cmd ::= KILL STREAM INTEGER COLON INTEGER */ {yymsp[-2].minor.yy0.n += (yymsp[-1].minor.yy0.n + yymsp[0].minor.yy0.n); setKillSql(pInfo, TSDB_SQL_KILL_STREAM, &yymsp[-2].minor.yy0);} break; - case 269: /* cmd ::= KILL QUERY INTEGER COLON INTEGER */ + case 270: /* cmd ::= KILL QUERY INTEGER COLON INTEGER */ {yymsp[-2].minor.yy0.n += (yymsp[-1].minor.yy0.n + yymsp[0].minor.yy0.n); setKillSql(pInfo, TSDB_SQL_KILL_QUERY, &yymsp[-2].minor.yy0);} break; default: break; -/********** End reduce actions ************************************************/ }; - assert( yyrulenoYY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); - - /* It is not possible for a REDUCE to be followed by an error */ - assert( yyact!=YY_ERROR_ACTION ); - - yymsp += yysize+1; - yypParser->yytos = yymsp; - yymsp->stateno = (YYACTIONTYPE)yyact; - yymsp->major = (YYCODETYPE)yygoto; - yyTraceShift(yypParser, yyact, "... then shift"); + yypParser->yyidx -= yysize; + yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto); + if( yyact < YYNSTATE ){ +#ifdef NDEBUG + /* If we are not debugging and the reduce action popped at least + ** one element off the stack, then we can push the new element back + ** onto the stack here, and skip the stack overflow test in yy_shift(). + ** That gives a significant speed improvement. */ + if( yysize ){ + yypParser->yyidx++; + yymsp -= yysize-1; + yymsp->stateno = (YYACTIONTYPE)yyact; + yymsp->major = (YYCODETYPE)yygoto; + yymsp->minor = yygotominor; + }else +#endif + { + yy_shift(yypParser,yyact,yygoto,&yygotominor); + } + }else{ + assert( yyact == YYNSTATE + YYNRULE + 1 ); + yy_accept(yypParser); + } } /* @@ -3149,11 +2714,9 @@ static void yy_parse_failed( fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif - while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ -/************ Begin %parse_failure code ***************************************/ -/************ End %parse_failure code *****************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } #endif /* YYNOERRORRECOVERY */ @@ -3164,11 +2727,10 @@ static void yy_parse_failed( static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ - ParseTOKENTYPE yyminor /* The minor type of the error token */ + YYMINORTYPE yyminor /* The minor type of the error token */ ){ ParseARG_FETCH; -#define TOKEN yyminor -/************ Begin %syntax_error code ****************************************/ +#define TOKEN (yyminor.yy0) pInfo->valid = false; int32_t outputBufLen = tListLen(pInfo->msg); @@ -3191,7 +2753,6 @@ static void yy_syntax_error( } assert(len <= outputBufLen); -/************ End %syntax_error code ******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -3207,15 +2768,10 @@ static void yy_accept( fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif -#ifndef YYNOERRORRECOVERY - yypParser->yyerrcnt = -1; -#endif - assert( yypParser->yytos==yypParser->yystack ); + while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser accepts */ -/*********** Begin %parse_accept code *****************************************/ -/*********** End %parse_accept code *******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -3245,52 +2801,50 @@ void Parse( ParseARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; - unsigned int yyact; /* The parser action. */ -#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) + int yyact; /* The parser action. */ int yyendofinput; /* True if we are at the end of input */ -#endif #ifdef YYERRORSYMBOL int yyerrorhit = 0; /* True if yymajor has invoked an error */ #endif yyParser *yypParser; /* The parser */ + /* (re)initialize the parser, if necessary */ yypParser = (yyParser*)yyp; - assert( yypParser->yytos!=0 ); -#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) - yyendofinput = (yymajor==0); + if( yypParser->yyidx<0 ){ +#if YYSTACKDEPTH<=0 + if( yypParser->yystksz <=0 ){ + /*memset(&yyminorunion, 0, sizeof(yyminorunion));*/ + yyminorunion = yyzerominor; + yyStackOverflow(yypParser, &yyminorunion); + return; + } #endif + yypParser->yyidx = 0; + yypParser->yyerrcnt = -1; + yypParser->yystack[0].stateno = 0; + yypParser->yystack[0].major = 0; + } + yyminorunion.yy0 = yyminor; + yyendofinput = (yymajor==0); ParseARG_STORE; #ifndef NDEBUG if( yyTraceFILE ){ - int stateno = yypParser->yytos->stateno; - if( stateno < YY_MIN_REDUCE ){ - fprintf(yyTraceFILE,"%sInput '%s' in state %d\n", - yyTracePrompt,yyTokenName[yymajor],stateno); - }else{ - fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n", - yyTracePrompt,yyTokenName[yymajor],stateno-YY_MIN_REDUCE); - } + fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); } #endif do{ yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); - if( yyact >= YY_MIN_REDUCE ){ - yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor,yyminor); - }else if( yyact <= YY_MAX_SHIFTREDUCE ){ - yy_shift(yypParser,yyact,yymajor,yyminor); -#ifndef YYNOERRORRECOVERY + if( yyactyyerrcnt--; -#endif yymajor = YYNOCODE; - }else if( yyact==YY_ACCEPT_ACTION ){ - yypParser->yytos--; - yy_accept(yypParser); - return; + }else if( yyact < YYNSTATE + YYNRULE ){ + yy_reduce(yypParser,yyact-YYNSTATE); }else{ assert( yyact == YY_ERROR_ACTION ); - yyminorunion.yy0 = yyminor; #ifdef YYERRORSYMBOL int yymx; #endif @@ -3320,9 +2874,9 @@ void Parse( ** */ if( yypParser->yyerrcnt<0 ){ - yy_syntax_error(yypParser,yymajor,yyminor); + yy_syntax_error(yypParser,yymajor,yyminorunion); } - yymx = yypParser->yytos->major; + yymx = yypParser->yystack[yypParser->yyidx].major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ @@ -3330,26 +2884,26 @@ void Parse( yyTracePrompt,yyTokenName[yymajor]); } #endif - yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); + yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion); yymajor = YYNOCODE; }else{ - while( yypParser->yytos >= yypParser->yystack - && yymx != YYERRORSYMBOL - && (yyact = yy_find_reduce_action( - yypParser->yytos->stateno, - YYERRORSYMBOL)) >= YY_MIN_REDUCE + while( + yypParser->yyidx >= 0 && + yymx != YYERRORSYMBOL && + (yyact = yy_find_reduce_action( + yypParser->yystack[yypParser->yyidx].stateno, + YYERRORSYMBOL)) >= YYNSTATE ){ yy_pop_parser_stack(yypParser); } - if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ + if( yypParser->yyidx < 0 || yymajor==0 ){ yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_parse_failed(yypParser); -#ifndef YYNOERRORRECOVERY - yypParser->yyerrcnt = -1; -#endif yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ - yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); + YYMINORTYPE u2; + u2.YYERRSYMDT = 0; + yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); } } yypParser->yyerrcnt = 3; @@ -3362,7 +2916,7 @@ void Parse( ** Applications can set this macro (for example inside %include) if ** they intend to abandon the parse upon the first syntax error seen. */ - yy_syntax_error(yypParser,yymajor, yyminor); + yy_syntax_error(yypParser,yymajor,yyminorunion); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yymajor = YYNOCODE; @@ -3377,31 +2931,16 @@ void Parse( ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ - yy_syntax_error(yypParser,yymajor, yyminor); + yy_syntax_error(yypParser,yymajor,yyminorunion); } yypParser->yyerrcnt = 3; yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); -#ifndef YYNOERRORRECOVERY - yypParser->yyerrcnt = -1; -#endif } yymajor = YYNOCODE; #endif } - }while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack ); -#ifndef NDEBUG - if( yyTraceFILE ){ - yyStackEntry *i; - char cDiv = '['; - fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); - for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ - fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); - cDiv = ' '; - } - fprintf(yyTraceFILE,"]\n"); - } -#endif + }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); return; } diff --git a/src/util/src/ttokenizer.c b/src/util/src/ttokenizer.c index 93d4570ea8..a6d3b4df37 100644 --- a/src/util/src/ttokenizer.c +++ b/src/util/src/ttokenizer.c @@ -217,7 +217,8 @@ static SKeyword keywordTable[] = { {"DISTINCT", TK_DISTINCT}, {"PARTITIONS", TK_PARTITIONS}, {"TOPIC", TK_TOPIC}, - {"TOPICS", TK_TOPICS} + {"TOPICS", TK_TOPICS}, + {"COMPACT", TK_COMPACT} }; static const char isIdChar[] = { From cad3b55a43504c8174af538342256e36dbf003de Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Wed, 26 May 2021 19:10:29 +0800 Subject: [PATCH 02/15] [TD-3178] fix some bug --- src/client/src/tscSQLParser.c | 1 - src/client/src/tscServer.c | 4 ++-- src/dnode/src/dnodeShell.c | 1 + src/mnode/src/mnodeDb.c | 32 +++++++++++++++++++++----------- 4 files changed, 24 insertions(+), 14 deletions(-) diff --git a/src/client/src/tscSQLParser.c b/src/client/src/tscSQLParser.c index 3bc7377267..37dccba175 100644 --- a/src/client/src/tscSQLParser.c +++ b/src/client/src/tscSQLParser.c @@ -2798,7 +2798,6 @@ int32_t setKillInfo(SSqlObj* pSql, struct SSqlInfo* pInfo, int32_t killType) { } static int32_t setCompactVnodeInfo(SSqlObj* pSql, struct SSqlInfo* pInfo) { SSqlCmd* pCmd = &pSql->cmd; - //STableMetaInfo* pTableMetaInfo = tscGetTableMetaInfoFromCmd(pCmd, pCmd->clauseIndex, 0); pCmd->command = pInfo->type; return TSDB_CODE_SUCCESS; diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c index 180dae0afb..1c9b29ccf7 100644 --- a/src/client/src/tscServer.c +++ b/src/client/src/tscServer.c @@ -1575,7 +1575,7 @@ int tscBuildCompactMsg(SSqlObj *pSql, SSqlInfo *pInfo) { for (int32_t i = 0; i < size; i++) { tSqlExprItem* pSub = taosArrayGet(pList, i); tVariant* pVar = &pSub->pNode->value; - if (pVar->nType >= TSDB_DATA_TYPE_TINYINT && pVar->nType <= TSDB_DATA_TYPE_INT) { + if (pVar->nType >= TSDB_DATA_TYPE_TINYINT && pVar->nType <= TSDB_DATA_TYPE_BIGINT) { result[i] = (int32_t)(pVar->i64); } else { free(result); @@ -1603,7 +1603,7 @@ int tscBuildCompactMsg(SSqlObj *pSql, SSqlInfo *pInfo) { } else { tNameGetFullDbName(&pTableMetaInfo->name, pCompactMsg->db); } - + pCompactMsg->numOfVgroup = htons(count); for (int32_t i = 0; i < count; i++) { pCompactMsg->vgid[i] = htons(result[i]); diff --git a/src/dnode/src/dnodeShell.c b/src/dnode/src/dnodeShell.c index 50343cfd32..c80e1059b4 100644 --- a/src/dnode/src/dnodeShell.c +++ b/src/dnode/src/dnodeShell.c @@ -61,6 +61,7 @@ int32_t dnodeInitShell() { dnodeProcessShellMsgFp[TSDB_MSG_TYPE_CM_KILL_STREAM] = dnodeDispatchToMWriteQueue; dnodeProcessShellMsgFp[TSDB_MSG_TYPE_CM_KILL_CONN] = dnodeDispatchToMWriteQueue; dnodeProcessShellMsgFp[TSDB_MSG_TYPE_CM_CONFIG_DNODE]= dnodeDispatchToMWriteQueue; + dnodeProcessShellMsgFp[TSDB_MSG_TYPE_CM_COMPACT_VNODE]= dnodeDispatchToMWriteQueue; // the following message shall be treated as mnode query dnodeProcessShellMsgFp[TSDB_MSG_TYPE_CM_HEARTBEAT] = dnodeDispatchToMReadQueue; diff --git a/src/mnode/src/mnodeDb.c b/src/mnode/src/mnodeDb.c index 9e064a2f9e..3c78a0e33d 100644 --- a/src/mnode/src/mnodeDb.c +++ b/src/mnode/src/mnodeDb.c @@ -1226,25 +1226,34 @@ static int32_t mnodeSyncDb(SDbObj *pDb, SMnodeMsg *pMsg) { static int32_t mnodeCompact(SDbObj *pDb, SCompactMsg *pCompactMsg) { - int32_t count = htonl(pCompactMsg->numOfVgroup); - int32_t *buf = malloc(sizeof(int32_t) * count); + int32_t count = ntohs(pCompactMsg->numOfVgroup); + int32_t *buf = malloc(sizeof(int32_t) * count); if (buf == NULL) { return TSDB_CODE_MND_OUT_OF_MEMORY; } for (int32_t i = 0; i < count; i++) { - buf[i] = htonl(pCompactMsg->vgid[i]); + buf[i] = ntohs(pCompactMsg->vgid[i]); } // copy from mnodeSyncDb, so ugly - void *pIter = NULL; - SVgObj *pVgroup = NULL; - while (1) { - pIter = mnodeGetNextVgroup(pIter, &pVgroup); - if (pVgroup == NULL) break; - if (pVgroup->pDb == pDb) { - mnodeSendCompactVgroupMsg(pVgroup); + for (int32_t i = 0; i < count; i++) { + SVgObj *pVgroup = NULL; + void *pIter = NULL; + bool valid = false; + while (1) { + pIter = mnodeGetNextVgroup(pIter, &pVgroup); + if (pVgroup == NULL) break; + if (pVgroup->pDb == pDb && pVgroup->vgId == buf[i]) { + mnodeSendCompactVgroupMsg(pVgroup); + mnodeDecVgroupRef(pVgroup); + valid = true; + break; + } + mnodeDecVgroupRef(pVgroup); + } + if (valid == false) { + mLError("db:%s, cannot find valid vgId: %d", pDb->name, buf[i]); } - mnodeDecVgroupRef(pVgroup); } free(buf); @@ -1279,6 +1288,7 @@ static int32_t mnodeProcessCompactMsg(SMnodeMsg *pMsg) { mDebug("db:%s, compact is received from thandle:%p", pCompact->db, pMsg->rpcMsg.handle); if (pMsg->pDb == NULL) pMsg->pDb = mnodeGetDb(pCompact->db); + if (pMsg->pDb == NULL) return TSDB_CODE_MND_DB_NOT_SELECTED; if (pMsg->pDb->status != TSDB_DB_STATUS_READY) { mError("db:%s, status:%d, in dropping, ignore compact request", pCompact->db, pMsg->pDb->status); From 07f26ddc12acf7f1ff83bb76075026350901014c Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Wed, 26 May 2021 19:34:21 +0800 Subject: [PATCH 03/15] [TD-3178] fix some bug --- src/dnode/src/dnodeVMgmt.c | 2 +- src/mnode/src/mnodeVgroup.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/dnode/src/dnodeVMgmt.c b/src/dnode/src/dnodeVMgmt.c index d270ca7ea9..c5f7f2add3 100644 --- a/src/dnode/src/dnodeVMgmt.c +++ b/src/dnode/src/dnodeVMgmt.c @@ -194,7 +194,7 @@ static int32_t dnodeProcessCompactVnodeMsg(SRpcMsg *rpcMsg) { SCompactVnodeMsg *pCompactVnode = rpcMsg->pCont; pCompactVnode->vgId = htonl(pCompactVnode->vgId); //do nothing - dDebug("trige compact at vgid: %d", pCompactVnode->vgId); + dDebug("trigger compact at vgid: %d", pCompactVnode->vgId); return TSDB_CODE_SUCCESS; } diff --git a/src/mnode/src/mnodeVgroup.c b/src/mnode/src/mnodeVgroup.c index 666de96854..b61c18f495 100644 --- a/src/mnode/src/mnodeVgroup.c +++ b/src/mnode/src/mnodeVgroup.c @@ -993,11 +993,11 @@ static void mnodeSendSyncVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet) { dnodeSendMsgToDnode(epSet, &rpcMsg); } static void mnodeSendCompactVnodeMsg(SVgObj *pVgroup, SRpcEpSet *epSet) { - SSyncVnodeMsg *pSyncVnode = mnodeBuildSyncVnodeMsg(pVgroup->vgId); + SCompactVnodeMsg *pCompactVnode = mnodeBuildSyncVnodeMsg(pVgroup->vgId); SRpcMsg rpcMsg = { .ahandle = NULL, - .pCont = pSyncVnode, - .contLen = pSyncVnode ? sizeof(SCompactVnodeMsg) : 0, + .pCont = pCompactVnode, + .contLen = pCompactVnode ? sizeof(SCompactVnodeMsg) : 0, .code = 0, .msgType = TSDB_MSG_TYPE_MD_COMPACT_VNODE }; @@ -1020,7 +1020,7 @@ void mnodeSendSyncVgroupMsg(SVgObj *pVgroup) { void mnodeSendCompactVgroupMsg(SVgObj *pVgroup) { mDebug("vgId:%d, send compact all vnodes msg, numOfVnodes:%d db:%s", pVgroup->vgId, pVgroup->numOfVnodes, pVgroup->dbName); for (int32_t i = 0; i < pVgroup->numOfVnodes; ++i) { - if (pVgroup->vnodeGid[i].role != TAOS_SYNC_ROLE_SLAVE) continue; //TODO(yihaoDeng): compact slave or not ? + //if (pVgroup->vnodeGid[i].role != TAOS_SYNC_ROLE_SLAVE) continue; //TODO(yihaoDeng): compact slave or not ? SRpcEpSet epSet = mnodeGetEpSetFromIp(pVgroup->vnodeGid[i].pDnode->dnodeEp); mDebug("vgId:%d, index:%d, send compact vnode msg to dnode %s", pVgroup->vgId, i, pVgroup->vnodeGid[i].pDnode->dnodeEp); From 27e9b11889ae7ce15437ce9941ba1c330d652d41 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Thu, 27 May 2021 03:41:28 +0800 Subject: [PATCH 04/15] [TD-3178] add compact-status in vgroup --- src/inc/taosmsg.h | 2 +- src/mnode/inc/mnodeDef.h | 1 + src/mnode/src/mnodeVgroup.c | 14 +++++++++++++- src/vnode/src/vnodeMgmt.c | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/inc/taosmsg.h b/src/inc/taosmsg.h index a4cee6d394..f5ce25cce0 100644 --- a/src/inc/taosmsg.h +++ b/src/inc/taosmsg.h @@ -539,7 +539,7 @@ typedef struct { uint8_t status; uint8_t role; uint8_t replica; - uint8_t reserved; + uint8_t compact; } SVnodeLoad; typedef struct { diff --git a/src/mnode/inc/mnodeDef.h b/src/mnode/inc/mnodeDef.h index e052f34a33..f170f58b53 100644 --- a/src/mnode/inc/mnodeDef.h +++ b/src/mnode/inc/mnodeDef.h @@ -145,6 +145,7 @@ typedef struct SVgObj { int8_t reserved0[4]; SVnodeGid vnodeGid[TSDB_MAX_REPLICA]; int32_t vgCfgVersion; + int8_t compact; int8_t reserved1[8]; int8_t updateEnd[4]; int32_t refCount; diff --git a/src/mnode/src/mnodeVgroup.c b/src/mnode/src/mnodeVgroup.c index b422934521..7113813746 100644 --- a/src/mnode/src/mnodeVgroup.c +++ b/src/mnode/src/mnodeVgroup.c @@ -354,6 +354,7 @@ void mnodeUpdateVgroupStatus(SVgObj *pVgroup, SDnodeObj *pDnode, SVnodeLoad *pVl pVgroup->pDb->dbCfgVersion, pVgroup->vgCfgVersion, pVgroup->numOfVnodes); mnodeSendAlterVgroupMsg(pVgroup); } + pVgroup->compact = pVload->compact; } static int32_t mnodeAllocVgroupIdPool(SVgObj *pInputVgroup) { @@ -721,6 +722,13 @@ static int32_t mnodeGetVgroupMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *p cols++; } + pShow->bytes[cols] = 4; + pSchema[cols].type = TSDB_DATA_TYPE_INT; + strcpy(pSchema[cols].name, "compacting"); + pSchema[cols].bytes = htons(pShow->bytes[cols]); + cols++; + + pMeta->numOfColumns = htons(cols); pShow->numOfColumns = cols; @@ -824,7 +832,11 @@ static int32_t mnodeRetrieveVgroups(SShowObj *pShow, char *data, int32_t rows, v STR_WITH_MAXSIZE_TO_VARSTR(pWrite, role, pShow->bytes[cols]); cols++; } - + + pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows; + *(int8_t *)pWrite = pVgroup->compact; + cols++; + mnodeDecVgroupRef(pVgroup); numOfRows++; } diff --git a/src/vnode/src/vnodeMgmt.c b/src/vnode/src/vnodeMgmt.c index 32f9532138..aabc1dba9d 100644 --- a/src/vnode/src/vnodeMgmt.c +++ b/src/vnode/src/vnodeMgmt.c @@ -148,6 +148,7 @@ static void vnodeBuildVloadMsg(SVnodeObj *pVnode, SStatusMsg *pStatus) { pLoad->status = pVnode->status; pLoad->role = pVnode->role; pLoad->replica = pVnode->syncCfg.replica; + pLoad->compact = 1;//pVnode->compact; } int32_t vnodeGetVnodeList(int32_t vnodeList[], int32_t *numOfVnodes) { From ac86fab67fd5b6c44e53a2173a1fd043546099e8 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Thu, 27 May 2021 07:18:04 +0800 Subject: [PATCH 05/15] [TD-3178] fix generate file --- src/query/inc/sql.h | 187 ++++++++++++++++++++++++++++++++++++++++ src/util/inc/tstoken.h | 189 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 376 insertions(+) create mode 100644 src/query/inc/sql.h create mode 100644 src/util/inc/tstoken.h diff --git a/src/query/inc/sql.h b/src/query/inc/sql.h new file mode 100644 index 0000000000..b005a990bd --- /dev/null +++ b/src/query/inc/sql.h @@ -0,0 +1,187 @@ +#define TK_ID 1 +#define TK_BOOL 2 +#define TK_TINYINT 3 +#define TK_SMALLINT 4 +#define TK_INTEGER 5 +#define TK_BIGINT 6 +#define TK_FLOAT 7 +#define TK_DOUBLE 8 +#define TK_STRING 9 +#define TK_TIMESTAMP 10 +#define TK_BINARY 11 +#define TK_NCHAR 12 +#define TK_OR 13 +#define TK_AND 14 +#define TK_NOT 15 +#define TK_EQ 16 +#define TK_NE 17 +#define TK_ISNULL 18 +#define TK_NOTNULL 19 +#define TK_IS 20 +#define TK_LIKE 21 +#define TK_GLOB 22 +#define TK_BETWEEN 23 +#define TK_IN 24 +#define TK_GT 25 +#define TK_GE 26 +#define TK_LT 27 +#define TK_LE 28 +#define TK_BITAND 29 +#define TK_BITOR 30 +#define TK_LSHIFT 31 +#define TK_RSHIFT 32 +#define TK_PLUS 33 +#define TK_MINUS 34 +#define TK_DIVIDE 35 +#define TK_TIMES 36 +#define TK_STAR 37 +#define TK_SLASH 38 +#define TK_REM 39 +#define TK_CONCAT 40 +#define TK_UMINUS 41 +#define TK_UPLUS 42 +#define TK_BITNOT 43 +#define TK_SHOW 44 +#define TK_DATABASES 45 +#define TK_TOPICS 46 +#define TK_MNODES 47 +#define TK_DNODES 48 +#define TK_ACCOUNTS 49 +#define TK_USERS 50 +#define TK_MODULES 51 +#define TK_QUERIES 52 +#define TK_CONNECTIONS 53 +#define TK_STREAMS 54 +#define TK_VARIABLES 55 +#define TK_SCORES 56 +#define TK_GRANTS 57 +#define TK_VNODES 58 +#define TK_IPTOKEN 59 +#define TK_DOT 60 +#define TK_CREATE 61 +#define TK_TABLE 62 +#define TK_STABLE 63 +#define TK_DATABASE 64 +#define TK_TABLES 65 +#define TK_STABLES 66 +#define TK_VGROUPS 67 +#define TK_DROP 68 +#define TK_TOPIC 69 +#define TK_DNODE 70 +#define TK_USER 71 +#define TK_ACCOUNT 72 +#define TK_USE 73 +#define TK_DESCRIBE 74 +#define TK_ALTER 75 +#define TK_PASS 76 +#define TK_PRIVILEGE 77 +#define TK_LOCAL 78 +#define TK_COMPACT 79 +#define TK_LP 80 +#define TK_RP 81 +#define TK_IF 82 +#define TK_EXISTS 83 +#define TK_PPS 84 +#define TK_TSERIES 85 +#define TK_DBS 86 +#define TK_STORAGE 87 +#define TK_QTIME 88 +#define TK_CONNS 89 +#define TK_STATE 90 +#define TK_KEEP 91 +#define TK_CACHE 92 +#define TK_REPLICA 93 +#define TK_QUORUM 94 +#define TK_DAYS 95 +#define TK_MINROWS 96 +#define TK_MAXROWS 97 +#define TK_BLOCKS 98 +#define TK_CTIME 99 +#define TK_WAL 100 +#define TK_FSYNC 101 +#define TK_COMP 102 +#define TK_PRECISION 103 +#define TK_UPDATE 104 +#define TK_CACHELAST 105 +#define TK_PARTITIONS 106 +#define TK_UNSIGNED 107 +#define TK_TAGS 108 +#define TK_USING 109 +#define TK_COMMA 110 +#define TK_AS 111 +#define TK_NULL 112 +#define TK_SELECT 113 +#define TK_UNION 114 +#define TK_ALL 115 +#define TK_DISTINCT 116 +#define TK_FROM 117 +#define TK_VARIABLE 118 +#define TK_INTERVAL 119 +#define TK_SESSION 120 +#define TK_FILL 121 +#define TK_SLIDING 122 +#define TK_ORDER 123 +#define TK_BY 124 +#define TK_ASC 125 +#define TK_DESC 126 +#define TK_GROUP 127 +#define TK_HAVING 128 +#define TK_LIMIT 129 +#define TK_OFFSET 130 +#define TK_SLIMIT 131 +#define TK_SOFFSET 132 +#define TK_WHERE 133 +#define TK_NOW 134 +#define TK_RESET 135 +#define TK_QUERY 136 +#define TK_SYNCDB 137 +#define TK_ADD 138 +#define TK_COLUMN 139 +#define TK_TAG 140 +#define TK_CHANGE 141 +#define TK_SET 142 +#define TK_KILL 143 +#define TK_CONNECTION 144 +#define TK_STREAM 145 +#define TK_COLON 146 +#define TK_ABORT 147 +#define TK_AFTER 148 +#define TK_ATTACH 149 +#define TK_BEFORE 150 +#define TK_BEGIN 151 +#define TK_CASCADE 152 +#define TK_CLUSTER 153 +#define TK_CONFLICT 154 +#define TK_COPY 155 +#define TK_DEFERRED 156 +#define TK_DELIMITERS 157 +#define TK_DETACH 158 +#define TK_EACH 159 +#define TK_END 160 +#define TK_EXPLAIN 161 +#define TK_FAIL 162 +#define TK_FOR 163 +#define TK_IGNORE 164 +#define TK_IMMEDIATE 165 +#define TK_INITIALLY 166 +#define TK_INSTEAD 167 +#define TK_MATCH 168 +#define TK_KEY 169 +#define TK_OF 170 +#define TK_RAISE 171 +#define TK_REPLACE 172 +#define TK_RESTRICT 173 +#define TK_ROW 174 +#define TK_STATEMENT 175 +#define TK_TRIGGER 176 +#define TK_VIEW 177 +#define TK_SEMI 178 +#define TK_NONE 179 +#define TK_PREV 180 +#define TK_LINEAR 181 +#define TK_IMPORT 182 +#define TK_TBNAME 183 +#define TK_JOIN 184 +#define TK_INSERT 185 +#define TK_INTO 186 +#define TK_VALUES 187 diff --git a/src/util/inc/tstoken.h b/src/util/inc/tstoken.h new file mode 100644 index 0000000000..ab1ef7b279 --- /dev/null +++ b/src/util/inc/tstoken.h @@ -0,0 +1,189 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#ifndef TDENGINE_TTOKEN_H +#define TDENGINE_TTOKEN_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "os.h" +#include "tutil.h" +#include "ttokendef.h" + +#define TSQL_TBNAME "TBNAME" +#define TSQL_TBNAME_L "tbname" + +#define TSQL_BLOCK_DIST "_BLOCK_DIST" +#define TSQL_BLOCK_DIST_L "_block_dist" + +// used to denote the minimum unite in sql parsing +typedef struct SStrToken { + uint32_t n; + uint32_t type; + char *z; +} SStrToken; + +/** + * tokenizer for sql string + * @param z + * @param tokenType + * @return + */ +uint32_t tSQLGetToken(char *z, uint32_t *tokenType); + +/** + * enhanced tokenizer for sql string. + * + * @param str + * @param i + * @param isPrevOptr + * @return + */ +SStrToken tStrGetToken(char *str, int32_t *i, bool isPrevOptr); + +/** + * check if it is a keyword or not + * @param z + * @param len + * @return + */ +bool isKeyWord(const char *z, int32_t len); + +/** + * check if it is a number or not + * @param pToken + * @return + */ +#define isNumber(tk) \ +((tk)->type == TK_INTEGER || (tk)->type == TK_FLOAT || (tk)->type == TK_HEX || (tk)->type == TK_BIN) + + +/** + * check if it is a token or not + * @param pToken + * @return token type, if it is not a number, TK_ILLEGAL will return + */ +static FORCE_INLINE int32_t tGetNumericStringType(const SStrToken* pToken) { + const char* z = pToken->z; + int32_t type = TK_ILLEGAL; + + uint32_t i = 0; + for(; i < pToken->n; ++i) { + switch (z[i]) { + case '+': + case '-': { + break; + } + + case '.': { + /* + * handle the the float number with out integer part + * .123 + * .123e4 + */ + if (!isdigit(z[i+1])) { + return TK_ILLEGAL; + } + + for (i += 2; isdigit(z[i]); i++) { + } + + if ((z[i] == 'e' || z[i] == 'E') && + (isdigit(z[i + 1]) || ((z[i + 1] == '+' || z[i + 1] == '-') && isdigit(z[i + 2])))) { + i += 2; + while (isdigit(z[i])) { + i++; + } + } + + type = TK_FLOAT; + goto _end; + } + + case '0': { + char next = z[i + 1]; + if (next == 'b') { // bin number + type = TK_BIN; + for (i += 2; (z[i] == '0' || z[i] == '1'); ++i) { + } + + goto _end; + } else if (next == 'x') { //hex number + type = TK_HEX; + for (i += 2; isdigit(z[i]) || (z[i] >= 'a' && z[i] <= 'f') || (z[i] >= 'A' && z[i] <= 'F'); ++i) { + } + + goto _end; + } + } + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': { + type = TK_INTEGER; + for (; isdigit(z[i]); i++) { + } + + int32_t seg = 0; + while (z[i] == '.' && isdigit(z[i + 1])) { + i += 2; + + while (isdigit(z[i])) { + i++; + } + + seg++; + type = TK_FLOAT; + } + + if (seg > 1) { + return TK_ILLEGAL; + } + + if ((z[i] == 'e' || z[i] == 'E') && + (isdigit(z[i + 1]) || ((z[i + 1] == '+' || z[i + 1] == '-') && isdigit(z[i + 2])))) { + i += 2; + while (isdigit(z[i])) { + i++; + } + + type = TK_FLOAT; + } + + goto _end; + } + default: + return TK_ILLEGAL; + } + } + + _end: + return (i < pToken->n)? TK_ILLEGAL:type; +} + +void taosCleanupKeywordsTable(); + +#ifdef __cplusplus +} +#endif + +#endif // TDENGINE_TTOKEN_H From 21046fbb4e4e812c41255151d4d35d792ff7549c Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Mon, 31 May 2021 11:56:52 +0800 Subject: [PATCH 06/15] [td-255] --- src/inc/ttokendef.h | 198 ++-- src/query/inc/sql.h | 187 ---- src/query/src/sql.c | 2519 +++++++++++++++++++++++++------------------ 3 files changed, 1595 insertions(+), 1309 deletions(-) delete mode 100644 src/query/inc/sql.h diff --git a/src/inc/ttokendef.h b/src/inc/ttokendef.h index 4f831fca98..700c6eeb94 100644 --- a/src/inc/ttokendef.h +++ b/src/inc/ttokendef.h @@ -17,105 +17,105 @@ #define TDENGINE_TTOKENDEF_H -#define TK_ID 1 -#define TK_BOOL 2 -#define TK_TINYINT 3 -#define TK_SMALLINT 4 -#define TK_INTEGER 5 -#define TK_BIGINT 6 -#define TK_FLOAT 7 -#define TK_DOUBLE 8 -#define TK_STRING 9 -#define TK_TIMESTAMP 10 -#define TK_BINARY 11 -#define TK_NCHAR 12 -#define TK_OR 13 -#define TK_AND 14 -#define TK_NOT 15 -#define TK_EQ 16 -#define TK_NE 17 -#define TK_ISNULL 18 -#define TK_NOTNULL 19 -#define TK_IS 20 -#define TK_LIKE 21 -#define TK_GLOB 22 -#define TK_BETWEEN 23 -#define TK_IN 24 -#define TK_GT 25 -#define TK_GE 26 -#define TK_LT 27 -#define TK_LE 28 -#define TK_BITAND 29 -#define TK_BITOR 30 -#define TK_LSHIFT 31 -#define TK_RSHIFT 32 -#define TK_PLUS 33 -#define TK_MINUS 34 -#define TK_DIVIDE 35 -#define TK_TIMES 36 -#define TK_STAR 37 -#define TK_SLASH 38 -#define TK_REM 39 -#define TK_CONCAT 40 -#define TK_UMINUS 41 -#define TK_UPLUS 42 -#define TK_BITNOT 43 -#define TK_SHOW 44 -#define TK_DATABASES 45 -#define TK_TOPICS 46 -#define TK_MNODES 47 -#define TK_DNODES 48 -#define TK_ACCOUNTS 49 -#define TK_USERS 50 -#define TK_MODULES 51 -#define TK_QUERIES 52 -#define TK_CONNECTIONS 53 -#define TK_STREAMS 54 -#define TK_VARIABLES 55 -#define TK_SCORES 56 -#define TK_GRANTS 57 -#define TK_VNODES 58 -#define TK_IPTOKEN 59 -#define TK_DOT 60 -#define TK_CREATE 61 -#define TK_TABLE 62 -#define TK_STABLE 63 -#define TK_DATABASE 64 -#define TK_TABLES 65 -#define TK_STABLES 66 -#define TK_VGROUPS 67 -#define TK_DROP 68 -#define TK_TOPIC 69 -#define TK_DNODE 70 -#define TK_USER 71 -#define TK_ACCOUNT 72 -#define TK_USE 73 -#define TK_DESCRIBE 74 -#define TK_ALTER 75 -#define TK_PASS 76 -#define TK_PRIVILEGE 77 -#define TK_LOCAL 78 -#define TK_COMPACT 79 -#define TK_LP 80 -#define TK_RP 81 -#define TK_IF 82 -#define TK_EXISTS 83 -#define TK_PPS 84 -#define TK_TSERIES 85 -#define TK_DBS 86 -#define TK_STORAGE 87 -#define TK_QTIME 88 -#define TK_CONNS 89 -#define TK_STATE 90 -#define TK_KEEP 91 -#define TK_CACHE 92 -#define TK_REPLICA 93 -#define TK_QUORUM 94 -#define TK_DAYS 95 -#define TK_MINROWS 96 -#define TK_MAXROWS 97 -#define TK_BLOCKS 98 -#define TK_CTIME 99 +#define TK_ID 1 +#define TK_BOOL 2 +#define TK_TINYINT 3 +#define TK_SMALLINT 4 +#define TK_INTEGER 5 +#define TK_BIGINT 6 +#define TK_FLOAT 7 +#define TK_DOUBLE 8 +#define TK_STRING 9 +#define TK_TIMESTAMP 10 +#define TK_BINARY 11 +#define TK_NCHAR 12 +#define TK_OR 13 +#define TK_AND 14 +#define TK_NOT 15 +#define TK_EQ 16 +#define TK_NE 17 +#define TK_ISNULL 18 +#define TK_NOTNULL 19 +#define TK_IS 20 +#define TK_LIKE 21 +#define TK_GLOB 22 +#define TK_BETWEEN 23 +#define TK_IN 24 +#define TK_GT 25 +#define TK_GE 26 +#define TK_LT 27 +#define TK_LE 28 +#define TK_BITAND 29 +#define TK_BITOR 30 +#define TK_LSHIFT 31 +#define TK_RSHIFT 32 +#define TK_PLUS 33 +#define TK_MINUS 34 +#define TK_DIVIDE 35 +#define TK_TIMES 36 +#define TK_STAR 37 +#define TK_SLASH 38 +#define TK_REM 39 +#define TK_CONCAT 40 +#define TK_UMINUS 41 +#define TK_UPLUS 42 +#define TK_BITNOT 43 +#define TK_SHOW 44 +#define TK_DATABASES 45 +#define TK_TOPICS 46 +#define TK_MNODES 47 +#define TK_DNODES 48 +#define TK_ACCOUNTS 49 +#define TK_USERS 50 +#define TK_MODULES 51 +#define TK_QUERIES 52 +#define TK_CONNECTIONS 53 +#define TK_STREAMS 54 +#define TK_VARIABLES 55 +#define TK_SCORES 56 +#define TK_GRANTS 57 +#define TK_VNODES 58 +#define TK_IPTOKEN 59 +#define TK_DOT 60 +#define TK_CREATE 61 +#define TK_TABLE 62 +#define TK_STABLE 63 +#define TK_DATABASE 64 +#define TK_TABLES 65 +#define TK_STABLES 66 +#define TK_VGROUPS 67 +#define TK_DROP 68 +#define TK_TOPIC 69 +#define TK_DNODE 70 +#define TK_USER 71 +#define TK_ACCOUNT 72 +#define TK_USE 73 +#define TK_DESCRIBE 74 +#define TK_ALTER 75 +#define TK_PASS 76 +#define TK_PRIVILEGE 77 +#define TK_LOCAL 78 +#define TK_COMPACT 79 +#define TK_LP 80 +#define TK_RP 81 +#define TK_IF 82 +#define TK_EXISTS 83 +#define TK_PPS 84 +#define TK_TSERIES 85 +#define TK_DBS 86 +#define TK_STORAGE 87 +#define TK_QTIME 88 +#define TK_CONNS 89 +#define TK_STATE 90 +#define TK_KEEP 91 +#define TK_CACHE 92 +#define TK_REPLICA 93 +#define TK_QUORUM 94 +#define TK_DAYS 95 +#define TK_MINROWS 96 +#define TK_MAXROWS 97 +#define TK_BLOCKS 98 +#define TK_CTIME 99 #define TK_WAL 100 #define TK_FSYNC 101 #define TK_COMP 102 diff --git a/src/query/inc/sql.h b/src/query/inc/sql.h deleted file mode 100644 index b005a990bd..0000000000 --- a/src/query/inc/sql.h +++ /dev/null @@ -1,187 +0,0 @@ -#define TK_ID 1 -#define TK_BOOL 2 -#define TK_TINYINT 3 -#define TK_SMALLINT 4 -#define TK_INTEGER 5 -#define TK_BIGINT 6 -#define TK_FLOAT 7 -#define TK_DOUBLE 8 -#define TK_STRING 9 -#define TK_TIMESTAMP 10 -#define TK_BINARY 11 -#define TK_NCHAR 12 -#define TK_OR 13 -#define TK_AND 14 -#define TK_NOT 15 -#define TK_EQ 16 -#define TK_NE 17 -#define TK_ISNULL 18 -#define TK_NOTNULL 19 -#define TK_IS 20 -#define TK_LIKE 21 -#define TK_GLOB 22 -#define TK_BETWEEN 23 -#define TK_IN 24 -#define TK_GT 25 -#define TK_GE 26 -#define TK_LT 27 -#define TK_LE 28 -#define TK_BITAND 29 -#define TK_BITOR 30 -#define TK_LSHIFT 31 -#define TK_RSHIFT 32 -#define TK_PLUS 33 -#define TK_MINUS 34 -#define TK_DIVIDE 35 -#define TK_TIMES 36 -#define TK_STAR 37 -#define TK_SLASH 38 -#define TK_REM 39 -#define TK_CONCAT 40 -#define TK_UMINUS 41 -#define TK_UPLUS 42 -#define TK_BITNOT 43 -#define TK_SHOW 44 -#define TK_DATABASES 45 -#define TK_TOPICS 46 -#define TK_MNODES 47 -#define TK_DNODES 48 -#define TK_ACCOUNTS 49 -#define TK_USERS 50 -#define TK_MODULES 51 -#define TK_QUERIES 52 -#define TK_CONNECTIONS 53 -#define TK_STREAMS 54 -#define TK_VARIABLES 55 -#define TK_SCORES 56 -#define TK_GRANTS 57 -#define TK_VNODES 58 -#define TK_IPTOKEN 59 -#define TK_DOT 60 -#define TK_CREATE 61 -#define TK_TABLE 62 -#define TK_STABLE 63 -#define TK_DATABASE 64 -#define TK_TABLES 65 -#define TK_STABLES 66 -#define TK_VGROUPS 67 -#define TK_DROP 68 -#define TK_TOPIC 69 -#define TK_DNODE 70 -#define TK_USER 71 -#define TK_ACCOUNT 72 -#define TK_USE 73 -#define TK_DESCRIBE 74 -#define TK_ALTER 75 -#define TK_PASS 76 -#define TK_PRIVILEGE 77 -#define TK_LOCAL 78 -#define TK_COMPACT 79 -#define TK_LP 80 -#define TK_RP 81 -#define TK_IF 82 -#define TK_EXISTS 83 -#define TK_PPS 84 -#define TK_TSERIES 85 -#define TK_DBS 86 -#define TK_STORAGE 87 -#define TK_QTIME 88 -#define TK_CONNS 89 -#define TK_STATE 90 -#define TK_KEEP 91 -#define TK_CACHE 92 -#define TK_REPLICA 93 -#define TK_QUORUM 94 -#define TK_DAYS 95 -#define TK_MINROWS 96 -#define TK_MAXROWS 97 -#define TK_BLOCKS 98 -#define TK_CTIME 99 -#define TK_WAL 100 -#define TK_FSYNC 101 -#define TK_COMP 102 -#define TK_PRECISION 103 -#define TK_UPDATE 104 -#define TK_CACHELAST 105 -#define TK_PARTITIONS 106 -#define TK_UNSIGNED 107 -#define TK_TAGS 108 -#define TK_USING 109 -#define TK_COMMA 110 -#define TK_AS 111 -#define TK_NULL 112 -#define TK_SELECT 113 -#define TK_UNION 114 -#define TK_ALL 115 -#define TK_DISTINCT 116 -#define TK_FROM 117 -#define TK_VARIABLE 118 -#define TK_INTERVAL 119 -#define TK_SESSION 120 -#define TK_FILL 121 -#define TK_SLIDING 122 -#define TK_ORDER 123 -#define TK_BY 124 -#define TK_ASC 125 -#define TK_DESC 126 -#define TK_GROUP 127 -#define TK_HAVING 128 -#define TK_LIMIT 129 -#define TK_OFFSET 130 -#define TK_SLIMIT 131 -#define TK_SOFFSET 132 -#define TK_WHERE 133 -#define TK_NOW 134 -#define TK_RESET 135 -#define TK_QUERY 136 -#define TK_SYNCDB 137 -#define TK_ADD 138 -#define TK_COLUMN 139 -#define TK_TAG 140 -#define TK_CHANGE 141 -#define TK_SET 142 -#define TK_KILL 143 -#define TK_CONNECTION 144 -#define TK_STREAM 145 -#define TK_COLON 146 -#define TK_ABORT 147 -#define TK_AFTER 148 -#define TK_ATTACH 149 -#define TK_BEFORE 150 -#define TK_BEGIN 151 -#define TK_CASCADE 152 -#define TK_CLUSTER 153 -#define TK_CONFLICT 154 -#define TK_COPY 155 -#define TK_DEFERRED 156 -#define TK_DELIMITERS 157 -#define TK_DETACH 158 -#define TK_EACH 159 -#define TK_END 160 -#define TK_EXPLAIN 161 -#define TK_FAIL 162 -#define TK_FOR 163 -#define TK_IGNORE 164 -#define TK_IMMEDIATE 165 -#define TK_INITIALLY 166 -#define TK_INSTEAD 167 -#define TK_MATCH 168 -#define TK_KEY 169 -#define TK_OF 170 -#define TK_RAISE 171 -#define TK_REPLACE 172 -#define TK_RESTRICT 173 -#define TK_ROW 174 -#define TK_STATEMENT 175 -#define TK_TRIGGER 176 -#define TK_VIEW 177 -#define TK_SEMI 178 -#define TK_NONE 179 -#define TK_PREV 180 -#define TK_LINEAR 181 -#define TK_IMPORT 182 -#define TK_TBNAME 183 -#define TK_JOIN 184 -#define TK_INSERT 185 -#define TK_INTO 186 -#define TK_VALUES 187 diff --git a/src/query/src/sql.c b/src/query/src/sql.c index 38601b1631..6de85cb431 100644 --- a/src/query/src/sql.c +++ b/src/query/src/sql.c @@ -1,9 +1,29 @@ -/* Driver template for the LEMON parser generator. -** The author disclaims copyright to this source code. +/* +** 2000-05-29 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Driver template for the LEMON parser generator. +** +** The "lemon" program processes an LALR(1) input grammar file, then uses +** this template to construct a parser. The "lemon" program inserts text +** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the +** interstitial "-" characters) contained in this template is changed into +** the value of the %name directive from the grammar. Otherwise, the content +** of this template is copied straight through into the generate parser +** source file. +** +** The following is the concatenation of all %include directives from the +** input grammar file: */ -/* First off, code is included that follows the "include" declaration -** in the input grammar file. */ #include +/************ Begin %include sections from the grammar ************************/ #include #include @@ -16,55 +36,66 @@ #include "ttokendef.h" #include "tutil.h" #include "tvariant.h" -/* Next is all token values, in a form suitable for use by makeheaders. -** This section will be null unless lemon is run with the -m switch. -*/ -/* -** These constants (all generated automatically by the parser generator) -** specify the various kinds of tokens (terminals) that the parser -** understands. -** -** Each symbol here is a terminal symbol in the grammar. -*/ -/* Make sure the INTERFACE macro is defined. -*/ -#ifndef INTERFACE -# define INTERFACE 1 -#endif -/* The next thing included is series of defines which control +/**************** End of %include directives **********************************/ +/* These constants specify the various numeric values for terminal symbols +** in a format understandable to "makeheaders". This section is blank unless +** "lemon" is run with the "-m" command-line option. +***************** Begin makeheaders token definitions *************************/ +/**************** End makeheaders token definitions ***************************/ + +/* The next sections is a series of control #defines. ** various aspects of the generated parser. -** YYCODETYPE is the data type used for storing terminal -** and nonterminal numbers. "unsigned char" is -** used if there are fewer than 250 terminals -** and nonterminals. "int" is used otherwise. -** YYNOCODE is a number of type YYCODETYPE which corresponds -** to no legal terminal or nonterminal number. This -** number is used to fill in empty slots of the hash -** table. +** YYCODETYPE is the data type used to store the integer codes +** that represent terminal and non-terminal symbols. +** "unsigned char" is used if there are fewer than +** 256 symbols. Larger types otherwise. +** YYNOCODE is a number of type YYCODETYPE that is not used for +** any terminal or nonterminal symbol. ** YYFALLBACK If defined, this indicates that one or more tokens -** have fall-back values which should be used if the -** original value of the token will not parse. -** YYACTIONTYPE is the data type used for storing terminal -** and nonterminal numbers. "unsigned char" is -** used if there are fewer than 250 rules and -** states combined. "int" is used otherwise. -** ParseTOKENTYPE is the data type used for minor tokens given -** directly to the parser from the tokenizer. -** YYMINORTYPE is the data type used for all minor tokens. +** (also known as: "terminal symbols") have fall-back +** values which should be used if the original symbol +** would not parse. This permits keywords to sometimes +** be used as identifiers, for example. +** YYACTIONTYPE is the data type used for "action codes" - numbers +** that indicate what to do in response to the next +** token. +** ParseTOKENTYPE is the data type used for minor type for terminal +** symbols. Background: A "minor type" is a semantic +** value associated with a terminal or non-terminal +** symbols. For example, for an "ID" terminal symbol, +** the minor type might be the name of the identifier. +** Each non-terminal can have a different minor type. +** Terminal symbols all have the same minor type, though. +** This macros defines the minor type for terminal +** symbols. +** YYMINORTYPE is the data type used for all minor types. ** This is typically a union of many types, one of ** which is ParseTOKENTYPE. The entry in the union -** for base tokens is called "yy0". +** for terminal symbols is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** ParseARG_SDECL A static variable declaration for the %extra_argument ** ParseARG_PDECL A parameter declaration for the %extra_argument ** ParseARG_STORE Code to store %extra_argument into yypParser ** ParseARG_FETCH Code to extract %extra_argument from yypParser -** YYNSTATE the combined number of states. -** YYNRULE the number of rules in the grammar ** YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. +** YYNSTATE the combined number of states. +** YYNRULE the number of rules in the grammar +** YYNTOKEN Number of terminal symbols +** YY_MAX_SHIFT Maximum value for shift actions +** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions +** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions +** YY_ERROR_ACTION The yy_action[] code for syntax error +** YY_ACCEPT_ACTION The yy_action[] code for accept +** YY_NO_ACTION The yy_action[] code for no-op +** YY_MIN_REDUCE Minimum value for reduce actions +** YY_MAX_REDUCE Maximum value for reduce actions */ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int #define YYNOCODE 265 #define YYACTIONTYPE unsigned short int @@ -95,16 +126,19 @@ typedef union { #define ParseARG_PDECL ,SSqlInfo* pInfo #define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo #define ParseARG_STORE yypParser->pInfo = pInfo -#define YYNSTATE 517 -#define YYNRULE 271 #define YYFALLBACK 1 -#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) -#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) -#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) - -/* The yyzerominor constant is used to initialize instances of -** YYMINORTYPE objects to zero. */ -static const YYMINORTYPE yyzerominor = { 0 }; +#define YYNSTATE 322 +#define YYNRULE 271 +#define YYNTOKEN 188 +#define YY_MAX_SHIFT 321 +#define YY_MIN_SHIFTREDUCE 517 +#define YY_MAX_SHIFTREDUCE 787 +#define YY_ERROR_ACTION 788 +#define YY_ACCEPT_ACTION 789 +#define YY_NO_ACTION 790 +#define YY_MIN_REDUCE 791 +#define YY_MAX_REDUCE 1061 +/************* End control #defines *******************************************/ /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. @@ -127,33 +161,35 @@ static const YYMINORTYPE yyzerominor = { 0 }; ** Suppose the action integer is N. Then the action is determined as ** follows ** -** 0 <= N < YYNSTATE Shift N. That is, push the lookahead +** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** -** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. +** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then +** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. ** -** N == YYNSTATE+YYNRULE A syntax error has occurred. +** N == YY_ERROR_ACTION A syntax error has occurred. ** -** N == YYNSTATE+YYNRULE+1 The parser accepts its input. +** N == YY_ACCEPT_ACTION The parser accepts its input. ** -** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused +** N == YY_NO_ACTION No such action. Denotes unused ** slots in the yy_action[] table. ** +** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE +** and YY_MAX_REDUCE +** ** The action table is constructed as a single large table named yy_action[]. -** Given state S and lookahead X, the action is computed as +** Given state S and lookahead X, the action is computed as either: ** -** yy_action[ yy_shift_ofst[S] + X ] +** (A) N = yy_action[ yy_shift_ofst[S] + X ] +** (B) N = yy_default[S] ** -** If the index value yy_shift_ofst[S]+X is out of range or if the value -** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] -** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table -** and that yy_default[S] should be used instead. +** The (A) formula is preferred. The B formula is used instead if +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X. ** -** The formula above is for computing the action when the lookahead is +** The formulas above are for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of -** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of -** YY_SHIFT_USE_DFLT. +** the yy_shift_ofst[] array. ** ** The following are the tables generated in this section: ** @@ -165,295 +201,273 @@ static const YYMINORTYPE yyzerominor = { 0 }; ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. -*/ -#define YY_ACTTAB_COUNT (804) +** +*********** Begin parsing tables **********************************************/ +#define YY_ACTTAB_COUNT (695) static const YYACTIONTYPE yy_action[] = { - /* 0 */ 500, 48, 47, 31, 68, 46, 45, 44, 499, 789, - /* 10 */ 321, 517, 49, 50, 503, 53, 54, 116, 115, 226, - /* 20 */ 43, 224, 52, 281, 57, 55, 58, 56, 133, 131, - /* 30 */ 130, 431, 48, 47, 17, 16, 46, 45, 44, 49, - /* 40 */ 50, 6, 53, 54, 29, 297, 226, 43, 429, 52, - /* 50 */ 281, 57, 55, 58, 56, 472, 336, 471, 283, 48, - /* 60 */ 47, 103, 102, 46, 45, 44, 49, 50, 339, 53, - /* 70 */ 54, 246, 269, 226, 43, 25, 52, 281, 57, 55, - /* 80 */ 58, 56, 318, 317, 127, 238, 48, 47, 500, 502, - /* 90 */ 46, 45, 44, 242, 241, 230, 499, 83, 46, 45, - /* 100 */ 44, 49, 51, 129, 53, 54, 228, 420, 226, 43, - /* 110 */ 71, 52, 281, 57, 55, 58, 56, 414, 411, 413, - /* 120 */ 410, 48, 47, 434, 62, 46, 45, 44, 368, 367, - /* 130 */ 30, 361, 516, 515, 514, 513, 512, 511, 510, 509, - /* 140 */ 508, 507, 506, 505, 504, 320, 63, 50, 208, 53, - /* 150 */ 54, 295, 294, 226, 43, 419, 52, 281, 57, 55, - /* 160 */ 58, 56, 15, 14, 421, 232, 48, 47, 292, 291, - /* 170 */ 46, 45, 44, 53, 54, 128, 229, 226, 43, 287, - /* 180 */ 52, 281, 57, 55, 58, 56, 470, 447, 469, 651, - /* 190 */ 48, 47, 168, 20, 46, 45, 44, 373, 491, 385, - /* 200 */ 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, - /* 210 */ 374, 372, 371, 24, 277, 314, 313, 276, 275, 274, - /* 220 */ 312, 273, 311, 310, 309, 272, 308, 307, 225, 404, - /* 230 */ 412, 409, 415, 467, 408, 185, 407, 402, 500, 19, - /* 240 */ 57, 55, 58, 56, 395, 227, 499, 142, 48, 47, - /* 250 */ 97, 96, 46, 45, 44, 13, 193, 31, 31, 397, - /* 260 */ 204, 205, 417, 194, 282, 65, 20, 365, 119, 118, - /* 270 */ 192, 279, 225, 404, 286, 75, 415, 268, 408, 457, - /* 280 */ 407, 466, 459, 458, 85, 66, 82, 456, 20, 454, - /* 290 */ 453, 455, 142, 452, 451, 31, 61, 329, 416, 293, - /* 300 */ 289, 185, 429, 429, 204, 205, 84, 59, 37, 24, - /* 310 */ 396, 314, 313, 263, 222, 79, 312, 26, 311, 310, - /* 320 */ 309, 223, 308, 307, 3, 169, 104, 98, 109, 435, - /* 330 */ 245, 81, 69, 108, 114, 117, 107, 288, 200, 403, - /* 340 */ 429, 465, 111, 31, 72, 405, 176, 174, 172, 364, - /* 350 */ 31, 59, 31, 171, 122, 121, 120, 5, 34, 158, - /* 360 */ 347, 406, 261, 31, 157, 93, 88, 92, 474, 266, - /* 370 */ 185, 477, 360, 476, 343, 475, 328, 185, 61, 396, - /* 380 */ 344, 341, 334, 403, 247, 217, 396, 75, 429, 405, - /* 390 */ 352, 351, 216, 70, 209, 429, 500, 429, 32, 233, - /* 400 */ 234, 32, 231, 21, 499, 406, 1, 156, 436, 61, - /* 410 */ 137, 393, 86, 32, 448, 249, 168, 362, 142, 168, - /* 420 */ 37, 106, 142, 135, 336, 327, 207, 319, 315, 305, - /* 430 */ 330, 220, 218, 212, 61, 464, 463, 462, 430, 210, - /* 440 */ 461, 460, 450, 446, 445, 444, 366, 443, 442, 441, - /* 450 */ 440, 439, 32, 433, 468, 432, 101, 468, 468, 468, - /* 460 */ 219, 99, 95, 60, 285, 284, 8, 418, 401, 7, - /* 470 */ 91, 278, 391, 392, 390, 389, 388, 387, 473, 87, - /* 480 */ 85, 23, 386, 267, 22, 265, 80, 251, 12, 11, - /* 490 */ 348, 28, 10, 332, 27, 141, 213, 345, 257, 78, - /* 500 */ 138, 139, 342, 340, 337, 9, 77, 74, 244, 326, - /* 510 */ 324, 249, 240, 239, 323, 237, 236, 325, 322, 2, - /* 520 */ 4, 498, 132, 497, 449, 126, 492, 164, 125, 124, - /* 530 */ 490, 316, 123, 483, 306, 167, 304, 302, 299, 303, - /* 540 */ 300, 301, 199, 206, 298, 166, 165, 163, 105, 270, - /* 550 */ 90, 89, 162, 370, 221, 161, 279, 437, 151, 41, - /* 560 */ 150, 146, 201, 143, 64, 259, 149, 350, 254, 255, - /* 570 */ 211, 148, 76, 73, 147, 248, 253, 178, 790, 256, - /* 580 */ 501, 258, 790, 260, 346, 177, 790, 264, 790, 790, - /* 590 */ 262, 496, 495, 42, 494, 145, 359, 67, 152, 493, - /* 600 */ 250, 144, 175, 173, 358, 489, 488, 296, 790, 335, - /* 610 */ 790, 790, 215, 790, 252, 790, 40, 790, 790, 487, - /* 620 */ 353, 486, 790, 349, 790, 790, 485, 357, 790, 790, - /* 630 */ 790, 790, 790, 790, 356, 305, 790, 790, 214, 790, - /* 640 */ 790, 355, 790, 790, 790, 790, 790, 790, 790, 790, - /* 650 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, - /* 660 */ 790, 790, 790, 790, 790, 790, 790, 484, 170, 235, - /* 670 */ 482, 481, 113, 112, 480, 790, 110, 479, 180, 39, - /* 680 */ 790, 33, 36, 438, 160, 428, 427, 790, 100, 426, - /* 690 */ 290, 159, 424, 423, 94, 422, 394, 790, 280, 790, - /* 700 */ 35, 790, 790, 179, 38, 790, 271, 369, 155, 154, - /* 710 */ 363, 153, 140, 136, 338, 333, 331, 134, 243, 790, - /* 720 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, - /* 730 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, - /* 740 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, - /* 750 */ 790, 790, 790, 790, 790, 790, 354, 790, 790, 790, - /* 760 */ 790, 790, 790, 790, 790, 790, 478, 425, 790, 790, - /* 770 */ 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, - /* 780 */ 790, 790, 790, 790, 181, 195, 198, 197, 196, 191, - /* 790 */ 190, 184, 189, 187, 186, 203, 202, 400, 399, 398, - /* 800 */ 188, 183, 182, 18, + /* 0 */ 951, 566, 933, 223, 207, 319, 222, 227, 18, 567, + /* 10 */ 212, 566, 960, 49, 50, 210, 53, 54, 1053, 567, + /* 20 */ 226, 43, 185, 52, 281, 57, 55, 58, 56, 81, + /* 30 */ 837, 1042, 182, 48, 47, 168, 939, 46, 45, 44, + /* 40 */ 49, 50, 72, 53, 54, 219, 135, 226, 43, 566, + /* 50 */ 52, 281, 57, 55, 58, 56, 645, 567, 183, 185, + /* 60 */ 48, 47, 185, 185, 46, 45, 44, 50, 1043, 53, + /* 70 */ 54, 1043, 1043, 226, 43, 957, 52, 281, 57, 55, + /* 80 */ 58, 56, 789, 321, 295, 294, 48, 47, 142, 31, + /* 90 */ 46, 45, 44, 518, 519, 520, 521, 522, 523, 524, + /* 100 */ 525, 526, 527, 528, 529, 530, 320, 86, 731, 208, + /* 110 */ 251, 71, 49, 50, 142, 53, 54, 1, 156, 226, + /* 120 */ 43, 231, 52, 281, 57, 55, 58, 56, 279, 951, + /* 130 */ 228, 209, 48, 47, 936, 218, 46, 45, 44, 49, + /* 140 */ 51, 927, 53, 54, 246, 142, 226, 43, 681, 52, + /* 150 */ 281, 57, 55, 58, 56, 25, 992, 937, 261, 48, + /* 160 */ 47, 939, 925, 46, 45, 44, 24, 277, 314, 313, + /* 170 */ 276, 275, 274, 312, 273, 311, 310, 309, 272, 308, + /* 180 */ 307, 899, 991, 887, 888, 889, 890, 891, 892, 893, + /* 190 */ 894, 895, 896, 897, 898, 900, 901, 53, 54, 19, + /* 200 */ 229, 226, 43, 287, 52, 281, 57, 55, 58, 56, + /* 210 */ 220, 263, 684, 79, 48, 47, 193, 31, 46, 45, + /* 220 */ 44, 48, 47, 194, 305, 46, 45, 44, 119, 118, + /* 230 */ 192, 566, 142, 83, 286, 75, 939, 225, 746, 567, + /* 240 */ 188, 735, 31, 738, 279, 741, 907, 225, 746, 905, + /* 250 */ 906, 735, 62, 738, 908, 741, 910, 911, 909, 216, + /* 260 */ 912, 913, 936, 1039, 922, 923, 30, 926, 37, 204, + /* 270 */ 205, 75, 31, 282, 63, 24, 847, 314, 313, 204, + /* 280 */ 205, 168, 312, 230, 311, 310, 309, 935, 308, 307, + /* 290 */ 245, 688, 69, 31, 57, 55, 58, 56, 200, 13, + /* 300 */ 80, 1038, 48, 47, 37, 315, 46, 45, 44, 1037, + /* 310 */ 26, 104, 98, 109, 217, 238, 59, 936, 108, 114, + /* 320 */ 117, 107, 283, 242, 241, 202, 59, 111, 85, 669, + /* 330 */ 82, 939, 666, 106, 667, 288, 668, 31, 936, 31, + /* 340 */ 247, 305, 5, 34, 158, 31, 3, 169, 747, 157, + /* 350 */ 93, 88, 92, 232, 743, 938, 292, 291, 747, 70, + /* 360 */ 233, 234, 203, 838, 743, 176, 174, 172, 168, 32, + /* 370 */ 742, 691, 171, 122, 121, 120, 46, 45, 44, 289, + /* 380 */ 742, 293, 936, 737, 936, 740, 736, 297, 739, 697, + /* 390 */ 936, 924, 703, 318, 317, 127, 704, 133, 131, 130, + /* 400 */ 655, 712, 713, 65, 249, 266, 657, 224, 733, 29, + /* 410 */ 186, 268, 656, 767, 748, 187, 1002, 565, 137, 750, + /* 420 */ 68, 61, 189, 66, 673, 21, 674, 6, 184, 32, + /* 430 */ 97, 96, 190, 243, 32, 61, 671, 269, 672, 670, + /* 440 */ 84, 61, 20, 20, 734, 1001, 20, 644, 15, 14, + /* 450 */ 191, 103, 102, 17, 16, 116, 115, 196, 197, 198, + /* 460 */ 195, 181, 214, 998, 997, 134, 215, 296, 952, 959, + /* 470 */ 40, 967, 984, 969, 136, 250, 140, 153, 934, 983, + /* 480 */ 152, 932, 132, 252, 154, 211, 155, 850, 271, 38, + /* 490 */ 179, 35, 280, 846, 1058, 696, 744, 94, 1057, 745, + /* 500 */ 254, 259, 1055, 67, 949, 159, 64, 143, 290, 1052, + /* 510 */ 100, 42, 1051, 1049, 160, 868, 144, 264, 36, 145, + /* 520 */ 262, 146, 260, 147, 258, 256, 33, 148, 253, 39, + /* 530 */ 180, 149, 41, 834, 110, 832, 112, 113, 830, 306, + /* 540 */ 829, 235, 170, 827, 826, 825, 824, 823, 822, 173, + /* 550 */ 175, 819, 817, 815, 813, 177, 810, 178, 105, 248, + /* 560 */ 73, 76, 255, 985, 298, 201, 299, 300, 301, 221, + /* 570 */ 303, 302, 304, 270, 316, 787, 236, 237, 786, 206, + /* 580 */ 199, 239, 240, 89, 90, 785, 773, 772, 244, 9, + /* 590 */ 249, 828, 265, 74, 676, 163, 123, 162, 869, 161, + /* 600 */ 124, 165, 164, 166, 167, 821, 4, 125, 820, 903, + /* 610 */ 126, 812, 77, 150, 151, 698, 811, 2, 138, 915, + /* 620 */ 701, 139, 78, 213, 257, 27, 705, 141, 10, 28, + /* 630 */ 11, 12, 22, 267, 23, 85, 87, 608, 604, 602, + /* 640 */ 601, 600, 597, 91, 570, 278, 7, 751, 284, 749, + /* 650 */ 285, 8, 95, 32, 60, 647, 646, 643, 99, 592, + /* 660 */ 101, 590, 582, 588, 584, 586, 580, 578, 611, 610, + /* 670 */ 609, 607, 606, 605, 603, 599, 598, 568, 534, 61, + /* 680 */ 532, 791, 790, 790, 790, 790, 790, 790, 790, 790, + /* 690 */ 790, 790, 790, 128, 129, }; static const YYCODETYPE yy_lookahead[] = { - /* 0 */ 1, 33, 34, 192, 80, 37, 38, 39, 9, 189, - /* 10 */ 190, 0, 13, 14, 59, 16, 17, 76, 77, 20, - /* 20 */ 21, 60, 23, 24, 25, 26, 27, 28, 62, 63, - /* 30 */ 64, 107, 33, 34, 139, 140, 37, 38, 39, 13, - /* 40 */ 14, 80, 16, 17, 80, 234, 20, 21, 237, 23, - /* 50 */ 24, 25, 26, 27, 28, 5, 236, 7, 15, 33, - /* 60 */ 34, 139, 140, 37, 38, 39, 13, 14, 110, 16, - /* 70 */ 17, 251, 108, 20, 21, 117, 23, 24, 25, 26, - /* 80 */ 27, 28, 65, 66, 67, 136, 33, 34, 1, 60, - /* 90 */ 37, 38, 39, 144, 145, 68, 9, 199, 37, 38, - /* 100 */ 39, 13, 14, 21, 16, 17, 68, 81, 20, 21, - /* 110 */ 111, 23, 24, 25, 26, 27, 28, 5, 5, 7, - /* 120 */ 7, 33, 34, 5, 110, 37, 38, 39, 230, 231, - /* 130 */ 232, 233, 45, 46, 47, 48, 49, 50, 51, 52, - /* 140 */ 53, 54, 55, 56, 57, 58, 132, 14, 61, 16, - /* 150 */ 17, 33, 34, 20, 21, 112, 23, 24, 25, 26, - /* 160 */ 27, 28, 139, 140, 81, 138, 33, 34, 141, 142, - /* 170 */ 37, 38, 39, 16, 17, 21, 138, 20, 21, 141, - /* 180 */ 23, 24, 25, 26, 27, 28, 5, 197, 7, 0, - /* 190 */ 33, 34, 202, 110, 37, 38, 39, 211, 83, 213, - /* 200 */ 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - /* 210 */ 224, 225, 226, 91, 92, 93, 94, 95, 96, 97, - /* 220 */ 98, 99, 100, 101, 102, 103, 104, 105, 1, 2, - /* 230 */ 118, 118, 5, 5, 7, 254, 9, 81, 1, 44, - /* 240 */ 25, 26, 27, 28, 263, 198, 9, 192, 33, 34, - /* 250 */ 139, 140, 37, 38, 39, 80, 61, 192, 192, 81, - /* 260 */ 33, 34, 1, 68, 37, 110, 110, 81, 73, 74, - /* 270 */ 75, 82, 1, 2, 79, 80, 5, 81, 7, 211, - /* 280 */ 9, 5, 214, 215, 109, 130, 111, 219, 110, 221, - /* 290 */ 222, 223, 192, 225, 226, 192, 110, 37, 37, 234, - /* 300 */ 234, 254, 237, 237, 33, 34, 110, 80, 113, 91, - /* 310 */ 263, 93, 94, 258, 198, 260, 98, 80, 100, 101, - /* 320 */ 102, 198, 104, 105, 195, 196, 62, 63, 64, 81, - /* 330 */ 135, 239, 137, 69, 70, 71, 72, 234, 143, 112, - /* 340 */ 237, 5, 78, 192, 252, 118, 62, 63, 64, 81, - /* 350 */ 192, 80, 192, 69, 70, 71, 72, 62, 63, 64, - /* 360 */ 260, 134, 262, 192, 69, 70, 71, 72, 2, 81, - /* 370 */ 254, 5, 81, 7, 81, 9, 116, 254, 110, 263, - /* 380 */ 81, 81, 81, 112, 81, 234, 263, 80, 237, 118, - /* 390 */ 125, 126, 234, 199, 234, 237, 1, 237, 110, 33, - /* 400 */ 34, 110, 192, 110, 9, 134, 200, 201, 237, 110, - /* 410 */ 110, 197, 199, 110, 197, 114, 202, 192, 192, 202, - /* 420 */ 113, 76, 192, 192, 236, 231, 191, 192, 212, 84, - /* 430 */ 192, 212, 212, 212, 110, 5, 5, 5, 228, 251, - /* 440 */ 5, 5, 5, 5, 5, 5, 233, 5, 5, 5, - /* 450 */ 5, 5, 110, 5, 238, 5, 140, 238, 238, 238, - /* 460 */ 235, 140, 140, 16, 58, 24, 80, 112, 81, 80, - /* 470 */ 76, 15, 5, 83, 5, 5, 5, 5, 112, 76, - /* 480 */ 109, 80, 9, 108, 80, 108, 260, 256, 80, 124, - /* 490 */ 260, 110, 124, 255, 110, 80, 1, 81, 80, 80, - /* 500 */ 80, 110, 81, 81, 81, 80, 110, 115, 136, 92, - /* 510 */ 5, 114, 5, 146, 5, 5, 146, 93, 5, 200, - /* 520 */ 195, 193, 60, 193, 227, 194, 193, 207, 194, 194, - /* 530 */ 193, 82, 194, 193, 106, 203, 85, 54, 50, 87, - /* 540 */ 86, 88, 193, 193, 89, 206, 205, 204, 90, 193, - /* 550 */ 199, 199, 208, 227, 193, 209, 82, 210, 241, 133, - /* 560 */ 242, 246, 193, 249, 131, 257, 243, 193, 257, 193, - /* 570 */ 257, 244, 193, 193, 245, 193, 119, 192, 264, 120, - /* 580 */ 192, 121, 264, 122, 118, 192, 264, 123, 264, 264, - /* 590 */ 127, 192, 192, 128, 192, 247, 236, 129, 240, 192, - /* 600 */ 236, 248, 192, 192, 250, 192, 192, 229, 264, 236, - /* 610 */ 264, 264, 229, 264, 257, 264, 253, 264, 264, 192, - /* 620 */ 261, 192, 264, 261, 264, 264, 192, 229, 264, 264, - /* 630 */ 264, 264, 264, 264, 229, 84, 264, 264, 229, 264, - /* 640 */ 264, 229, 264, 264, 264, 264, 264, 264, 264, 264, - /* 650 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, - /* 660 */ 264, 264, 264, 264, 264, 264, 264, 192, 192, 192, - /* 670 */ 192, 192, 192, 192, 192, 264, 192, 192, 192, 192, - /* 680 */ 264, 192, 192, 192, 192, 192, 192, 264, 192, 192, - /* 690 */ 192, 192, 192, 192, 192, 192, 192, 264, 192, 264, - /* 700 */ 192, 264, 264, 192, 192, 264, 192, 192, 192, 192, - /* 710 */ 192, 192, 192, 192, 192, 192, 192, 192, 192, 264, + /* 0 */ 236, 1, 192, 198, 191, 192, 198, 198, 254, 9, + /* 10 */ 212, 1, 192, 13, 14, 251, 16, 17, 238, 9, + /* 20 */ 20, 21, 254, 23, 24, 25, 26, 27, 28, 239, + /* 30 */ 197, 263, 254, 33, 34, 202, 238, 37, 38, 39, + /* 40 */ 13, 14, 252, 16, 17, 235, 192, 20, 21, 1, + /* 50 */ 23, 24, 25, 26, 27, 28, 5, 9, 254, 254, + /* 60 */ 33, 34, 254, 254, 37, 38, 39, 14, 263, 16, + /* 70 */ 17, 263, 263, 20, 21, 255, 23, 24, 25, 26, + /* 80 */ 27, 28, 189, 190, 33, 34, 33, 34, 192, 192, + /* 90 */ 37, 38, 39, 45, 46, 47, 48, 49, 50, 51, + /* 100 */ 52, 53, 54, 55, 56, 57, 58, 199, 81, 61, + /* 110 */ 256, 111, 13, 14, 192, 16, 17, 200, 201, 20, + /* 120 */ 21, 192, 23, 24, 25, 26, 27, 28, 82, 236, + /* 130 */ 68, 234, 33, 34, 237, 212, 37, 38, 39, 13, + /* 140 */ 14, 233, 16, 17, 251, 192, 20, 21, 110, 23, + /* 150 */ 24, 25, 26, 27, 28, 117, 260, 228, 262, 33, + /* 160 */ 34, 238, 0, 37, 38, 39, 91, 92, 93, 94, + /* 170 */ 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, + /* 180 */ 105, 211, 260, 213, 214, 215, 216, 217, 218, 219, + /* 190 */ 220, 221, 222, 223, 224, 225, 226, 16, 17, 44, + /* 200 */ 138, 20, 21, 141, 23, 24, 25, 26, 27, 28, + /* 210 */ 212, 258, 37, 260, 33, 34, 61, 192, 37, 38, + /* 220 */ 39, 33, 34, 68, 84, 37, 38, 39, 73, 74, + /* 230 */ 75, 1, 192, 199, 79, 80, 238, 1, 2, 9, + /* 240 */ 254, 5, 192, 7, 82, 9, 211, 1, 2, 214, + /* 250 */ 215, 5, 110, 7, 219, 9, 221, 222, 223, 234, + /* 260 */ 225, 226, 237, 254, 230, 231, 232, 233, 113, 33, + /* 270 */ 34, 80, 192, 37, 132, 91, 197, 93, 94, 33, + /* 280 */ 34, 202, 98, 68, 100, 101, 102, 237, 104, 105, + /* 290 */ 135, 116, 137, 192, 25, 26, 27, 28, 143, 80, + /* 300 */ 260, 254, 33, 34, 113, 212, 37, 38, 39, 254, + /* 310 */ 80, 62, 63, 64, 234, 136, 80, 237, 69, 70, + /* 320 */ 71, 72, 15, 144, 145, 254, 80, 78, 109, 2, + /* 330 */ 111, 238, 5, 76, 7, 234, 9, 192, 237, 192, + /* 340 */ 81, 84, 62, 63, 64, 192, 195, 196, 112, 69, + /* 350 */ 70, 71, 72, 138, 118, 238, 141, 142, 112, 199, + /* 360 */ 33, 34, 254, 197, 118, 62, 63, 64, 202, 110, + /* 370 */ 134, 81, 69, 70, 71, 72, 37, 38, 39, 234, + /* 380 */ 134, 234, 237, 5, 237, 7, 5, 234, 7, 81, + /* 390 */ 237, 231, 81, 65, 66, 67, 81, 62, 63, 64, + /* 400 */ 81, 125, 126, 110, 114, 81, 81, 60, 1, 80, + /* 410 */ 254, 81, 81, 81, 81, 254, 229, 81, 110, 112, + /* 420 */ 80, 110, 254, 130, 5, 110, 7, 80, 254, 110, + /* 430 */ 139, 140, 254, 192, 110, 110, 5, 108, 7, 112, + /* 440 */ 110, 110, 110, 110, 37, 229, 110, 107, 139, 140, + /* 450 */ 254, 139, 140, 139, 140, 76, 77, 254, 254, 254, + /* 460 */ 254, 254, 229, 229, 229, 192, 229, 229, 236, 192, + /* 470 */ 253, 192, 261, 192, 192, 236, 192, 192, 236, 261, + /* 480 */ 240, 192, 60, 257, 192, 257, 192, 192, 192, 192, + /* 490 */ 192, 192, 192, 192, 192, 118, 118, 192, 192, 118, + /* 500 */ 257, 257, 192, 129, 250, 192, 131, 249, 192, 192, + /* 510 */ 192, 128, 192, 192, 192, 192, 248, 123, 192, 247, + /* 520 */ 127, 246, 122, 245, 121, 120, 192, 244, 119, 192, + /* 530 */ 192, 243, 133, 192, 192, 192, 192, 192, 192, 106, + /* 540 */ 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, + /* 550 */ 192, 192, 192, 192, 192, 192, 192, 192, 90, 193, + /* 560 */ 193, 193, 193, 193, 89, 193, 50, 86, 88, 193, + /* 570 */ 87, 54, 85, 193, 82, 5, 146, 5, 5, 193, + /* 580 */ 193, 146, 5, 199, 199, 5, 93, 92, 136, 80, + /* 590 */ 114, 193, 108, 115, 81, 204, 194, 208, 210, 209, + /* 600 */ 194, 205, 207, 206, 203, 193, 195, 194, 193, 227, + /* 610 */ 194, 193, 110, 242, 241, 81, 193, 200, 80, 227, + /* 620 */ 81, 110, 80, 1, 80, 110, 81, 80, 124, 110, + /* 630 */ 124, 80, 80, 108, 80, 109, 76, 9, 5, 5, + /* 640 */ 5, 5, 5, 76, 83, 15, 80, 112, 24, 81, + /* 650 */ 58, 80, 140, 110, 16, 5, 5, 81, 140, 5, + /* 660 */ 140, 5, 5, 5, 5, 5, 5, 5, 5, 5, + /* 670 */ 5, 5, 5, 5, 5, 5, 5, 83, 60, 110, + /* 680 */ 59, 0, 264, 264, 264, 264, 264, 264, 264, 264, + /* 690 */ 264, 264, 264, 21, 21, 264, 264, 264, 264, 264, + /* 700 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 710 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, /* 720 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, /* 730 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, /* 740 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, - /* 750 */ 264, 264, 264, 264, 264, 264, 229, 264, 264, 264, - /* 760 */ 264, 264, 264, 264, 264, 264, 238, 238, 264, 264, + /* 750 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 760 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, /* 770 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, - /* 780 */ 264, 264, 264, 264, 254, 254, 254, 254, 254, 254, - /* 790 */ 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, - /* 800 */ 254, 254, 254, 254, + /* 780 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 790 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 800 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 810 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 820 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 830 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 840 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 850 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 860 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 870 */ 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + /* 880 */ 264, 264, 264, }; -#define YY_SHIFT_USE_DFLT (-106) -#define YY_SHIFT_COUNT (321) -#define YY_SHIFT_MIN (-105) -#define YY_SHIFT_MAX (551) -static const short yy_shift_ofst[] = { - /* 0 */ 195, 122, 122, 218, 218, 474, 227, 271, 271, 395, - /* 10 */ 395, 395, 395, 395, 395, 395, 395, 395, -1, 87, - /* 20 */ 271, 366, 366, 366, 366, 237, 307, 395, 395, 395, - /* 30 */ 189, 395, 395, 345, 474, 551, 551, -106, -106, -106, - /* 40 */ 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, - /* 50 */ 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, - /* 60 */ 366, 366, 118, 118, 118, 118, 118, 118, 118, 395, - /* 70 */ 395, 395, 260, 395, 307, 307, 395, 395, 395, 265, - /* 80 */ 265, -42, 307, 395, 395, 395, 395, 395, 395, 395, - /* 90 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, - /* 100 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, - /* 110 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, - /* 120 */ 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, - /* 130 */ 395, 395, 395, 395, 462, 462, 462, 466, 466, 466, - /* 140 */ 462, 466, 462, 468, 433, 465, 464, 463, 461, 460, - /* 150 */ 459, 457, 426, 462, 462, 462, 428, 474, 474, 462, - /* 160 */ 462, 458, 455, 488, 454, 453, 483, 452, 451, 428, - /* 170 */ 462, 449, 449, 462, 449, 462, 449, 462, 462, -106, - /* 180 */ -106, 26, 53, 53, 88, 53, 133, 157, 215, 215, - /* 190 */ 215, 215, 264, 295, 284, -32, -32, -32, -32, 27, - /* 200 */ -51, 175, 61, 61, 113, 112, 38, 17, -34, 303, - /* 210 */ 301, 300, 299, 293, 14, 155, 291, 288, 268, 196, - /* 220 */ 186, -36, 178, 156, 261, -39, 43, 83, 111, 23, - /* 230 */ -78, -76, -105, 181, 50, -59, 513, 370, 510, 509, - /* 240 */ 367, 507, 505, 424, 417, 372, 397, 377, 425, 392, - /* 250 */ 423, 396, 422, 420, 421, 391, 419, 495, 418, 416, - /* 260 */ 415, 384, 368, 381, 365, 408, 377, 404, 375, 401, - /* 270 */ 371, 403, 473, 472, 471, 470, 469, 467, 390, 456, - /* 280 */ 394, 389, 387, 355, 386, 441, 406, 322, 342, 342, - /* 290 */ 447, 321, 316, 342, 450, 448, 248, 342, 446, 445, - /* 300 */ 444, 443, 442, 440, 439, 438, 437, 436, 435, 432, - /* 310 */ 431, 430, 336, 276, 228, 324, 115, 154, 82, 29, - /* 320 */ -45, 11, +#define YY_SHIFT_COUNT (321) +#define YY_SHIFT_MIN (0) +#define YY_SHIFT_MAX (681) +static const unsigned short int yy_shift_ofst[] = { + /* 0 */ 155, 75, 75, 184, 184, 46, 236, 246, 246, 10, + /* 10 */ 10, 10, 10, 10, 10, 10, 10, 10, 0, 48, + /* 20 */ 246, 327, 327, 327, 327, 230, 191, 10, 10, 10, + /* 30 */ 162, 10, 10, 257, 46, 140, 140, 695, 695, 695, + /* 40 */ 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, + /* 50 */ 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, + /* 60 */ 327, 327, 51, 51, 51, 51, 51, 51, 51, 10, + /* 70 */ 10, 10, 175, 10, 191, 191, 10, 10, 10, 276, + /* 80 */ 276, 38, 191, 10, 10, 10, 10, 10, 10, 10, + /* 90 */ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, + /* 100 */ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, + /* 110 */ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, + /* 120 */ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, + /* 130 */ 10, 10, 10, 10, 422, 422, 422, 377, 377, 377, + /* 140 */ 422, 377, 422, 374, 375, 383, 394, 393, 400, 403, + /* 150 */ 405, 409, 399, 422, 422, 422, 433, 46, 46, 422, + /* 160 */ 422, 468, 475, 516, 481, 480, 517, 483, 487, 433, + /* 170 */ 422, 492, 492, 422, 492, 422, 492, 422, 422, 695, + /* 180 */ 695, 27, 99, 99, 126, 99, 53, 181, 269, 269, + /* 190 */ 269, 269, 249, 280, 303, 188, 188, 188, 188, 215, + /* 200 */ 179, 219, 339, 339, 378, 381, 62, 328, 335, 259, + /* 210 */ 290, 308, 311, 315, 142, 293, 319, 324, 325, 330, + /* 220 */ 331, 329, 332, 333, 407, 347, 307, 336, 291, 309, + /* 230 */ 312, 340, 314, 419, 431, 379, 570, 430, 572, 573, + /* 240 */ 435, 577, 580, 493, 495, 452, 476, 484, 509, 478, + /* 250 */ 513, 502, 534, 538, 539, 511, 542, 622, 544, 545, + /* 260 */ 547, 515, 504, 519, 506, 551, 484, 552, 525, 554, + /* 270 */ 526, 560, 628, 633, 634, 635, 636, 637, 561, 630, + /* 280 */ 567, 566, 568, 535, 571, 624, 592, 512, 543, 543, + /* 290 */ 638, 518, 520, 543, 650, 651, 576, 543, 654, 656, + /* 300 */ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, + /* 310 */ 667, 668, 669, 670, 671, 569, 594, 672, 673, 618, + /* 320 */ 621, 681, }; -#define YY_REDUCE_USE_DFLT (-190) #define YY_REDUCE_COUNT (180) -#define YY_REDUCE_MIN (-189) -#define YY_REDUCE_MAX (549) +#define YY_REDUCE_MIN (-246) +#define YY_REDUCE_MAX (423) static const short yy_reduce_ofst[] = { - /* 0 */ -180, -14, -14, 68, 68, -102, 123, 116, 47, 160, - /* 10 */ 100, 55, 158, 151, 103, 66, 65, -189, 238, 235, - /* 20 */ -19, 221, 220, 219, 216, 231, 188, 230, 226, 225, - /* 30 */ 213, 210, 171, 217, 194, 214, -10, 92, 206, 129, - /* 40 */ 549, 548, 547, 546, 545, 544, 543, 542, 541, 540, - /* 50 */ 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, - /* 60 */ 529, 528, 527, 412, 409, 405, 398, 383, 378, 526, - /* 70 */ 525, 524, 363, 523, 373, 364, 522, 521, 520, 362, - /* 80 */ 359, 358, 360, 519, 518, 517, 516, 515, 514, 512, - /* 90 */ 511, 508, 506, 504, 503, 502, 501, 500, 499, 498, - /* 100 */ 497, 496, 494, 493, 492, 491, 490, 489, 487, 486, - /* 110 */ 485, 484, 482, 481, 480, 479, 478, 477, 476, 475, - /* 120 */ 434, 429, 427, 414, 413, 411, 410, 407, 402, 400, - /* 130 */ 399, 393, 388, 385, 382, 380, 379, 357, 313, 311, - /* 140 */ 376, 308, 374, 354, 314, 353, 348, 315, 329, 327, - /* 150 */ 323, 318, 317, 369, 361, 356, 326, 352, 351, 350, - /* 160 */ 349, 347, 346, 344, 343, 320, 341, 339, 332, 297, - /* 170 */ 340, 338, 335, 337, 334, 333, 331, 330, 328, 319, - /* 180 */ 325, + /* 0 */ -107, -30, -30, 35, 35, 34, -195, -192, -191, -103, + /* 10 */ -104, -47, 25, 80, 101, 145, 147, 153, -180, -187, + /* 20 */ -232, -202, -77, -2, 93, -146, -236, -78, 40, -190, + /* 30 */ -92, -71, 50, -167, 160, 79, 166, -210, -83, 151, + /* 40 */ -246, -222, -196, -14, 9, 47, 55, 71, 108, 156, + /* 50 */ 161, 168, 174, 178, 196, 203, 204, 205, 206, 207, + /* 60 */ -220, 117, 187, 216, 233, 234, 235, 237, 238, 241, + /* 70 */ 273, 277, 217, 279, 232, 239, 281, 282, 284, 211, + /* 80 */ 218, 240, 242, 285, 289, 292, 294, 295, 296, 297, + /* 90 */ 298, 299, 300, 301, 302, 305, 306, 310, 313, 316, + /* 100 */ 317, 318, 320, 321, 322, 323, 326, 334, 337, 338, + /* 110 */ 341, 342, 343, 344, 345, 346, 348, 349, 350, 351, + /* 120 */ 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, + /* 130 */ 362, 363, 364, 365, 366, 367, 368, 226, 228, 243, + /* 140 */ 369, 244, 370, 254, 258, 268, 272, 275, 278, 283, + /* 150 */ 288, 371, 373, 372, 376, 380, 382, 384, 385, 386, + /* 160 */ 387, 388, 390, 389, 391, 395, 396, 397, 401, 392, + /* 170 */ 398, 402, 406, 412, 413, 415, 416, 418, 423, 417, + /* 180 */ 411, }; static const YYACTIONTYPE yy_default[] = { - /* 0 */ 788, 628, 574, 640, 561, 571, 771, 771, 771, 788, - /* 10 */ 788, 788, 788, 788, 788, 788, 788, 788, 687, 533, - /* 20 */ 771, 788, 788, 788, 788, 788, 788, 788, 788, 788, - /* 30 */ 571, 788, 788, 577, 571, 577, 577, 682, 612, 630, + /* 0 */ 788, 902, 848, 914, 835, 845, 1045, 1045, 1045, 788, + /* 10 */ 788, 788, 788, 788, 788, 788, 788, 788, 961, 807, + /* 20 */ 1045, 788, 788, 788, 788, 788, 788, 788, 788, 788, + /* 30 */ 845, 788, 788, 851, 845, 851, 851, 956, 886, 904, /* 40 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, /* 50 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, /* 60 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, - /* 70 */ 788, 788, 689, 692, 788, 788, 694, 788, 788, 714, - /* 80 */ 714, 680, 788, 788, 788, 788, 788, 788, 788, 788, + /* 70 */ 788, 788, 963, 966, 788, 788, 968, 788, 788, 988, + /* 80 */ 988, 954, 788, 788, 788, 788, 788, 788, 788, 788, /* 90 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, /* 100 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, - /* 110 */ 559, 788, 557, 788, 788, 788, 788, 788, 788, 788, - /* 120 */ 788, 788, 788, 788, 788, 788, 788, 544, 788, 788, - /* 130 */ 788, 788, 788, 788, 535, 535, 535, 788, 788, 788, - /* 140 */ 535, 788, 535, 721, 725, 719, 707, 715, 706, 702, - /* 150 */ 700, 699, 729, 535, 535, 535, 575, 571, 571, 535, - /* 160 */ 535, 593, 591, 589, 581, 587, 583, 585, 579, 562, - /* 170 */ 535, 569, 569, 535, 569, 535, 569, 535, 535, 612, - /* 180 */ 630, 788, 730, 720, 788, 770, 760, 759, 766, 758, - /* 190 */ 757, 756, 788, 788, 788, 752, 755, 754, 753, 788, - /* 200 */ 788, 788, 762, 761, 788, 788, 788, 788, 788, 788, - /* 210 */ 788, 788, 788, 788, 726, 722, 788, 788, 788, 788, - /* 220 */ 788, 788, 788, 788, 788, 732, 788, 788, 788, 788, - /* 230 */ 788, 642, 788, 788, 788, 788, 788, 788, 788, 788, - /* 240 */ 788, 788, 788, 788, 788, 788, 679, 788, 788, 788, - /* 250 */ 788, 690, 788, 788, 788, 788, 788, 788, 788, 788, - /* 260 */ 788, 716, 788, 708, 788, 788, 654, 788, 788, 788, + /* 110 */ 833, 788, 831, 788, 788, 788, 788, 788, 788, 788, + /* 120 */ 788, 788, 788, 788, 788, 788, 788, 818, 788, 788, + /* 130 */ 788, 788, 788, 788, 809, 809, 809, 788, 788, 788, + /* 140 */ 809, 788, 809, 995, 999, 993, 981, 989, 980, 976, + /* 150 */ 974, 973, 1003, 809, 809, 809, 849, 845, 845, 809, + /* 160 */ 809, 867, 865, 863, 855, 861, 857, 859, 853, 836, + /* 170 */ 809, 843, 843, 809, 843, 809, 843, 809, 809, 886, + /* 180 */ 904, 788, 1004, 994, 788, 1044, 1034, 1033, 1040, 1032, + /* 190 */ 1031, 1030, 788, 788, 788, 1026, 1029, 1028, 1027, 788, + /* 200 */ 788, 788, 1036, 1035, 788, 788, 788, 788, 788, 788, + /* 210 */ 788, 788, 788, 788, 1000, 996, 788, 788, 788, 788, + /* 220 */ 788, 788, 788, 788, 788, 1006, 788, 788, 788, 788, + /* 230 */ 788, 916, 788, 788, 788, 788, 788, 788, 788, 788, + /* 240 */ 788, 788, 788, 788, 788, 788, 953, 788, 788, 788, + /* 250 */ 788, 964, 788, 788, 788, 788, 788, 788, 788, 788, + /* 260 */ 788, 990, 788, 982, 788, 788, 928, 788, 788, 788, /* 270 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, - /* 280 */ 788, 788, 788, 788, 788, 788, 788, 788, 782, 780, - /* 290 */ 788, 788, 788, 776, 788, 788, 788, 774, 788, 788, + /* 280 */ 788, 788, 788, 788, 788, 788, 788, 788, 1056, 1054, + /* 290 */ 788, 788, 788, 1050, 788, 788, 788, 1048, 788, 788, /* 300 */ 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, - /* 310 */ 788, 788, 788, 788, 788, 596, 788, 542, 540, 788, - /* 320 */ 531, 788, 787, 786, 785, 773, 772, 650, 688, 684, - /* 330 */ 686, 685, 683, 693, 691, 678, 677, 676, 695, 681, - /* 340 */ 698, 697, 701, 704, 703, 705, 696, 718, 717, 710, - /* 350 */ 711, 713, 712, 709, 728, 727, 724, 723, 675, 660, - /* 360 */ 655, 652, 659, 658, 657, 656, 653, 649, 648, 576, - /* 370 */ 629, 627, 626, 625, 624, 623, 622, 621, 620, 619, - /* 380 */ 618, 617, 616, 615, 614, 613, 608, 604, 602, 601, - /* 390 */ 600, 597, 570, 573, 572, 768, 769, 767, 765, 764, - /* 400 */ 763, 749, 748, 747, 746, 743, 742, 741, 738, 744, - /* 410 */ 740, 737, 745, 739, 736, 735, 734, 733, 751, 750, - /* 420 */ 731, 565, 784, 783, 781, 779, 778, 777, 775, 662, - /* 430 */ 663, 644, 647, 646, 645, 643, 661, 595, 594, 592, - /* 440 */ 590, 582, 588, 584, 586, 580, 578, 564, 563, 641, - /* 450 */ 611, 639, 638, 637, 636, 635, 634, 633, 632, 631, - /* 460 */ 610, 609, 607, 606, 605, 603, 599, 598, 665, 674, - /* 470 */ 673, 672, 671, 670, 669, 668, 667, 666, 664, 560, - /* 480 */ 558, 556, 555, 554, 553, 552, 551, 550, 549, 548, - /* 490 */ 547, 568, 546, 545, 543, 541, 539, 538, 537, 567, - /* 500 */ 566, 536, 534, 532, 530, 529, 528, 527, 526, 525, - /* 510 */ 524, 523, 522, 521, 520, 519, 518, + /* 310 */ 788, 788, 788, 788, 788, 870, 788, 816, 814, 788, + /* 320 */ 805, 788, }; +/********** End of lemon-generated parsing tables *****************************/ -/* The next table maps tokens into fallback tokens. If a construct -** like the following: +/* The next table maps tokens (terminal symbols) into fallback tokens. +** If a construct like the following: ** ** %fallback ID X Y Z. ** @@ -461,6 +475,10 @@ static const YYACTIONTYPE yy_default[] = { ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. +** +** This feature can be used, for example, to cause some keywords in a language +** to revert to identifiers if they keyword does not apply in the context where +** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { @@ -666,9 +684,13 @@ static const YYCODETYPE yyFallback[] = { ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. +** +** After the "shift" half of a SHIFTREDUCE action, the stateno field +** actually contains the reduce action for the second half of the +** SHIFTREDUCE. */ struct yyStackEntry { - YYACTIONTYPE stateno; /* The state-number */ + YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This @@ -679,17 +701,21 @@ typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { - int yyidx; /* Index of top element in stack */ + yyStackEntry *yytos; /* Pointer to top element of the stack */ #ifdef YYTRACKMAXSTACKDEPTH - int yyidxMax; /* Maximum value of yyidx */ + int yyhwm; /* High-water mark of the stack */ #endif +#ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ +#endif ParseARG_SDECL /* A place to hold %extra_argument */ #if YYSTACKDEPTH<=0 int yystksz; /* Current side of the stack */ yyStackEntry *yystack; /* The parser's stack */ + yyStackEntry yystk0; /* First stack entry */ #else yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ + yyStackEntry *yystackEnd; /* Last entry in the stack */ #endif }; typedef struct yyParser yyParser; @@ -726,78 +752,276 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ } #endif /* NDEBUG */ -#ifndef NDEBUG +#if defined(YYCOVERAGE) || !defined(NDEBUG) /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *const yyTokenName[] = { - "$", "ID", "BOOL", "TINYINT", - "SMALLINT", "INTEGER", "BIGINT", "FLOAT", - "DOUBLE", "STRING", "TIMESTAMP", "BINARY", - "NCHAR", "OR", "AND", "NOT", - "EQ", "NE", "ISNULL", "NOTNULL", - "IS", "LIKE", "GLOB", "BETWEEN", - "IN", "GT", "GE", "LT", - "LE", "BITAND", "BITOR", "LSHIFT", - "RSHIFT", "PLUS", "MINUS", "DIVIDE", - "TIMES", "STAR", "SLASH", "REM", - "CONCAT", "UMINUS", "UPLUS", "BITNOT", - "SHOW", "DATABASES", "TOPICS", "MNODES", - "DNODES", "ACCOUNTS", "USERS", "MODULES", - "QUERIES", "CONNECTIONS", "STREAMS", "VARIABLES", - "SCORES", "GRANTS", "VNODES", "IPTOKEN", - "DOT", "CREATE", "TABLE", "STABLE", - "DATABASE", "TABLES", "STABLES", "VGROUPS", - "DROP", "TOPIC", "DNODE", "USER", - "ACCOUNT", "USE", "DESCRIBE", "ALTER", - "PASS", "PRIVILEGE", "LOCAL", "COMPACT", - "LP", "RP", "IF", "EXISTS", - "PPS", "TSERIES", "DBS", "STORAGE", - "QTIME", "CONNS", "STATE", "KEEP", - "CACHE", "REPLICA", "QUORUM", "DAYS", - "MINROWS", "MAXROWS", "BLOCKS", "CTIME", - "WAL", "FSYNC", "COMP", "PRECISION", - "UPDATE", "CACHELAST", "PARTITIONS", "UNSIGNED", - "TAGS", "USING", "COMMA", "AS", - "NULL", "SELECT", "UNION", "ALL", - "DISTINCT", "FROM", "VARIABLE", "INTERVAL", - "SESSION", "FILL", "SLIDING", "ORDER", - "BY", "ASC", "DESC", "GROUP", - "HAVING", "LIMIT", "OFFSET", "SLIMIT", - "SOFFSET", "WHERE", "NOW", "RESET", - "QUERY", "SYNCDB", "ADD", "COLUMN", - "TAG", "CHANGE", "SET", "KILL", - "CONNECTION", "STREAM", "COLON", "ABORT", - "AFTER", "ATTACH", "BEFORE", "BEGIN", - "CASCADE", "CLUSTER", "CONFLICT", "COPY", - "DEFERRED", "DELIMITERS", "DETACH", "EACH", - "END", "EXPLAIN", "FAIL", "FOR", - "IGNORE", "IMMEDIATE", "INITIALLY", "INSTEAD", - "MATCH", "KEY", "OF", "RAISE", - "REPLACE", "RESTRICT", "ROW", "STATEMENT", - "TRIGGER", "VIEW", "SEMI", "NONE", - "PREV", "LINEAR", "IMPORT", "TBNAME", - "JOIN", "INSERT", "INTO", "VALUES", - "error", "program", "cmd", "dbPrefix", - "ids", "cpxName", "ifexists", "alter_db_optr", - "alter_topic_optr", "acct_optr", "exprlist", "ifnotexists", - "db_optr", "topic_optr", "pps", "tseries", - "dbs", "streams", "storage", "qtime", - "users", "conns", "state", "keep", - "tagitemlist", "cache", "replica", "quorum", - "days", "minrows", "maxrows", "blocks", - "ctime", "wal", "fsync", "comp", - "prec", "update", "cachelast", "partitions", - "typename", "signed", "create_table_args", "create_stable_args", - "create_table_list", "create_from_stable", "columnlist", "tagNamelist", - "select", "column", "tagitem", "selcollist", - "from", "where_opt", "interval_opt", "session_option", - "fill_opt", "sliding_opt", "groupby_opt", "orderby_opt", - "having_opt", "slimit_opt", "limit_opt", "union", - "sclp", "distinct", "expr", "as", - "tablelist", "tmvar", "sortlist", "sortitem", - "item", "sortorder", "grouplist", "expritem", + /* 0 */ "$", + /* 1 */ "ID", + /* 2 */ "BOOL", + /* 3 */ "TINYINT", + /* 4 */ "SMALLINT", + /* 5 */ "INTEGER", + /* 6 */ "BIGINT", + /* 7 */ "FLOAT", + /* 8 */ "DOUBLE", + /* 9 */ "STRING", + /* 10 */ "TIMESTAMP", + /* 11 */ "BINARY", + /* 12 */ "NCHAR", + /* 13 */ "OR", + /* 14 */ "AND", + /* 15 */ "NOT", + /* 16 */ "EQ", + /* 17 */ "NE", + /* 18 */ "ISNULL", + /* 19 */ "NOTNULL", + /* 20 */ "IS", + /* 21 */ "LIKE", + /* 22 */ "GLOB", + /* 23 */ "BETWEEN", + /* 24 */ "IN", + /* 25 */ "GT", + /* 26 */ "GE", + /* 27 */ "LT", + /* 28 */ "LE", + /* 29 */ "BITAND", + /* 30 */ "BITOR", + /* 31 */ "LSHIFT", + /* 32 */ "RSHIFT", + /* 33 */ "PLUS", + /* 34 */ "MINUS", + /* 35 */ "DIVIDE", + /* 36 */ "TIMES", + /* 37 */ "STAR", + /* 38 */ "SLASH", + /* 39 */ "REM", + /* 40 */ "CONCAT", + /* 41 */ "UMINUS", + /* 42 */ "UPLUS", + /* 43 */ "BITNOT", + /* 44 */ "SHOW", + /* 45 */ "DATABASES", + /* 46 */ "TOPICS", + /* 47 */ "MNODES", + /* 48 */ "DNODES", + /* 49 */ "ACCOUNTS", + /* 50 */ "USERS", + /* 51 */ "MODULES", + /* 52 */ "QUERIES", + /* 53 */ "CONNECTIONS", + /* 54 */ "STREAMS", + /* 55 */ "VARIABLES", + /* 56 */ "SCORES", + /* 57 */ "GRANTS", + /* 58 */ "VNODES", + /* 59 */ "IPTOKEN", + /* 60 */ "DOT", + /* 61 */ "CREATE", + /* 62 */ "TABLE", + /* 63 */ "STABLE", + /* 64 */ "DATABASE", + /* 65 */ "TABLES", + /* 66 */ "STABLES", + /* 67 */ "VGROUPS", + /* 68 */ "DROP", + /* 69 */ "TOPIC", + /* 70 */ "DNODE", + /* 71 */ "USER", + /* 72 */ "ACCOUNT", + /* 73 */ "USE", + /* 74 */ "DESCRIBE", + /* 75 */ "ALTER", + /* 76 */ "PASS", + /* 77 */ "PRIVILEGE", + /* 78 */ "LOCAL", + /* 79 */ "COMPACT", + /* 80 */ "LP", + /* 81 */ "RP", + /* 82 */ "IF", + /* 83 */ "EXISTS", + /* 84 */ "PPS", + /* 85 */ "TSERIES", + /* 86 */ "DBS", + /* 87 */ "STORAGE", + /* 88 */ "QTIME", + /* 89 */ "CONNS", + /* 90 */ "STATE", + /* 91 */ "KEEP", + /* 92 */ "CACHE", + /* 93 */ "REPLICA", + /* 94 */ "QUORUM", + /* 95 */ "DAYS", + /* 96 */ "MINROWS", + /* 97 */ "MAXROWS", + /* 98 */ "BLOCKS", + /* 99 */ "CTIME", + /* 100 */ "WAL", + /* 101 */ "FSYNC", + /* 102 */ "COMP", + /* 103 */ "PRECISION", + /* 104 */ "UPDATE", + /* 105 */ "CACHELAST", + /* 106 */ "PARTITIONS", + /* 107 */ "UNSIGNED", + /* 108 */ "TAGS", + /* 109 */ "USING", + /* 110 */ "COMMA", + /* 111 */ "AS", + /* 112 */ "NULL", + /* 113 */ "SELECT", + /* 114 */ "UNION", + /* 115 */ "ALL", + /* 116 */ "DISTINCT", + /* 117 */ "FROM", + /* 118 */ "VARIABLE", + /* 119 */ "INTERVAL", + /* 120 */ "SESSION", + /* 121 */ "FILL", + /* 122 */ "SLIDING", + /* 123 */ "ORDER", + /* 124 */ "BY", + /* 125 */ "ASC", + /* 126 */ "DESC", + /* 127 */ "GROUP", + /* 128 */ "HAVING", + /* 129 */ "LIMIT", + /* 130 */ "OFFSET", + /* 131 */ "SLIMIT", + /* 132 */ "SOFFSET", + /* 133 */ "WHERE", + /* 134 */ "NOW", + /* 135 */ "RESET", + /* 136 */ "QUERY", + /* 137 */ "SYNCDB", + /* 138 */ "ADD", + /* 139 */ "COLUMN", + /* 140 */ "TAG", + /* 141 */ "CHANGE", + /* 142 */ "SET", + /* 143 */ "KILL", + /* 144 */ "CONNECTION", + /* 145 */ "STREAM", + /* 146 */ "COLON", + /* 147 */ "ABORT", + /* 148 */ "AFTER", + /* 149 */ "ATTACH", + /* 150 */ "BEFORE", + /* 151 */ "BEGIN", + /* 152 */ "CASCADE", + /* 153 */ "CLUSTER", + /* 154 */ "CONFLICT", + /* 155 */ "COPY", + /* 156 */ "DEFERRED", + /* 157 */ "DELIMITERS", + /* 158 */ "DETACH", + /* 159 */ "EACH", + /* 160 */ "END", + /* 161 */ "EXPLAIN", + /* 162 */ "FAIL", + /* 163 */ "FOR", + /* 164 */ "IGNORE", + /* 165 */ "IMMEDIATE", + /* 166 */ "INITIALLY", + /* 167 */ "INSTEAD", + /* 168 */ "MATCH", + /* 169 */ "KEY", + /* 170 */ "OF", + /* 171 */ "RAISE", + /* 172 */ "REPLACE", + /* 173 */ "RESTRICT", + /* 174 */ "ROW", + /* 175 */ "STATEMENT", + /* 176 */ "TRIGGER", + /* 177 */ "VIEW", + /* 178 */ "SEMI", + /* 179 */ "NONE", + /* 180 */ "PREV", + /* 181 */ "LINEAR", + /* 182 */ "IMPORT", + /* 183 */ "TBNAME", + /* 184 */ "JOIN", + /* 185 */ "INSERT", + /* 186 */ "INTO", + /* 187 */ "VALUES", + /* 188 */ "error", + /* 189 */ "program", + /* 190 */ "cmd", + /* 191 */ "dbPrefix", + /* 192 */ "ids", + /* 193 */ "cpxName", + /* 194 */ "ifexists", + /* 195 */ "alter_db_optr", + /* 196 */ "alter_topic_optr", + /* 197 */ "acct_optr", + /* 198 */ "exprlist", + /* 199 */ "ifnotexists", + /* 200 */ "db_optr", + /* 201 */ "topic_optr", + /* 202 */ "pps", + /* 203 */ "tseries", + /* 204 */ "dbs", + /* 205 */ "streams", + /* 206 */ "storage", + /* 207 */ "qtime", + /* 208 */ "users", + /* 209 */ "conns", + /* 210 */ "state", + /* 211 */ "keep", + /* 212 */ "tagitemlist", + /* 213 */ "cache", + /* 214 */ "replica", + /* 215 */ "quorum", + /* 216 */ "days", + /* 217 */ "minrows", + /* 218 */ "maxrows", + /* 219 */ "blocks", + /* 220 */ "ctime", + /* 221 */ "wal", + /* 222 */ "fsync", + /* 223 */ "comp", + /* 224 */ "prec", + /* 225 */ "update", + /* 226 */ "cachelast", + /* 227 */ "partitions", + /* 228 */ "typename", + /* 229 */ "signed", + /* 230 */ "create_table_args", + /* 231 */ "create_stable_args", + /* 232 */ "create_table_list", + /* 233 */ "create_from_stable", + /* 234 */ "columnlist", + /* 235 */ "tagNamelist", + /* 236 */ "select", + /* 237 */ "column", + /* 238 */ "tagitem", + /* 239 */ "selcollist", + /* 240 */ "from", + /* 241 */ "where_opt", + /* 242 */ "interval_opt", + /* 243 */ "session_option", + /* 244 */ "fill_opt", + /* 245 */ "sliding_opt", + /* 246 */ "groupby_opt", + /* 247 */ "orderby_opt", + /* 248 */ "having_opt", + /* 249 */ "slimit_opt", + /* 250 */ "limit_opt", + /* 251 */ "union", + /* 252 */ "sclp", + /* 253 */ "distinct", + /* 254 */ "expr", + /* 255 */ "as", + /* 256 */ "tablelist", + /* 257 */ "tmvar", + /* 258 */ "sortlist", + /* 259 */ "sortitem", + /* 260 */ "item", + /* 261 */ "sortorder", + /* 262 */ "grouplist", + /* 263 */ "expritem", }; -#endif /* NDEBUG */ +#endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. @@ -1080,27 +1304,74 @@ static const char *const yyRuleName[] = { #if YYSTACKDEPTH<=0 /* -** Try to increase the size of the parser stack. +** Try to increase the size of the parser stack. Return the number +** of errors. Return 0 on success. */ -static void yyGrowStack(yyParser *p){ +static int yyGrowStack(yyParser *p){ int newSize; + int idx; yyStackEntry *pNew; newSize = p->yystksz*2 + 100; - pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); + idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; + if( p->yystack==&p->yystk0 ){ + pNew = malloc(newSize*sizeof(pNew[0])); + if( pNew ) pNew[0] = p->yystk0; + }else{ + pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); + } if( pNew ){ p->yystack = pNew; - p->yystksz = newSize; + p->yytos = &p->yystack[idx]; #ifndef NDEBUG if( yyTraceFILE ){ - fprintf(yyTraceFILE,"%sStack grows to %d entries!\n", - yyTracePrompt, p->yystksz); + fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", + yyTracePrompt, p->yystksz, newSize); } #endif + p->yystksz = newSize; } + return pNew==0; } #endif +/* Datatype of the argument to the memory allocated passed as the +** second argument to ParseAlloc() below. This can be changed by +** putting an appropriate #define in the %include section of the input +** grammar. +*/ +#ifndef YYMALLOCARGTYPE +# define YYMALLOCARGTYPE size_t +#endif + +/* Initialize a new parser that has already been allocated. +*/ +void ParseInit(void *yypParser){ + yyParser *pParser = (yyParser*)yypParser; +#ifdef YYTRACKMAXSTACKDEPTH + pParser->yyhwm = 0; +#endif +#if YYSTACKDEPTH<=0 + pParser->yytos = NULL; + pParser->yystack = NULL; + pParser->yystksz = 0; + if( yyGrowStack(pParser) ){ + pParser->yystack = &pParser->yystk0; + pParser->yystksz = 1; + } +#endif +#ifndef YYNOERRORRECOVERY + pParser->yyerrcnt = -1; +#endif + pParser->yytos = pParser->yystack; + pParser->yystack[0].stateno = 0; + pParser->yystack[0].major = 0; +#if YYSTACKDEPTH>0 + pParser->yystackEnd = &pParser->yystack[YYSTACKDEPTH-1]; +#endif +} + +#ifndef Parse_ENGINEALWAYSONSTACK /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like @@ -1113,27 +1384,21 @@ static void yyGrowStack(yyParser *p){ ** A pointer to a parser. This pointer is used in subsequent calls ** to Parse and ParseFree. */ -void *ParseAlloc(void *(*mallocProc)(size_t)){ +void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ yyParser *pParser; - pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); - if( pParser ){ - pParser->yyidx = -1; -#ifdef YYTRACKMAXSTACKDEPTH - pParser->yyidxMax = 0; -#endif -#if YYSTACKDEPTH<=0 - pParser->yystack = NULL; - pParser->yystksz = 0; - yyGrowStack(pParser); -#endif - } + pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); + if( pParser ) ParseInit(pParser); return pParser; } +#endif /* Parse_ENGINEALWAYSONSTACK */ -/* The following function deletes the value associated with a -** symbol. The symbol can be either a terminal or nonterminal. -** "yymajor" is the symbol code, and "yypminor" is a pointer to -** the value. + +/* The following function deletes the "minor type" or semantic value +** associated with a symbol. The symbol can be either a terminal +** or nonterminal. "yymajor" is the symbol code, and "yypminor" is +** a pointer to the value to be deleted. The code used to do the +** deletions is derived from the %destructor and/or %token_destructor +** directives of the input grammar. */ static void yy_destructor( yyParser *yypParser, /* The parser */ @@ -1149,9 +1414,10 @@ static void yy_destructor( ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those - ** which appear on the RHS of the rule, but which are not used + ** which appear on the RHS of the rule, but which are *not* used ** inside the C code. */ +/********* Begin destructor definitions ***************************************/ case 198: /* exprlist */ case 239: /* selcollist */ case 252: /* sclp */ @@ -1206,6 +1472,7 @@ destroyAllSqlNode((yypminor->yy285)); tVariantDestroy(&(yypminor->yy362)); } break; +/********* End destructor definitions *****************************************/ default: break; /* If no destructor action specified: do nothing */ } } @@ -1215,51 +1482,53 @@ tVariantDestroy(&(yypminor->yy362)); ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. -** -** Return the major token number for the symbol popped. */ -static int yy_pop_parser_stack(yyParser *pParser){ - YYCODETYPE yymajor; - yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; - - if( pParser->yyidx<0 ) return 0; +static void yy_pop_parser_stack(yyParser *pParser){ + yyStackEntry *yytos; + assert( pParser->yytos!=0 ); + assert( pParser->yytos > pParser->yystack ); + yytos = pParser->yytos--; #ifndef NDEBUG - if( yyTraceFILE && pParser->yyidx>=0 ){ + if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif - yymajor = yytos->major; - yy_destructor(pParser, yymajor, &yytos->minor); - pParser->yyidx--; - return yymajor; + yy_destructor(pParser, yytos->major, &yytos->minor); } +/* +** Clear all secondary memory allocations from the parser +*/ +void ParseFinalize(void *p){ + yyParser *pParser = (yyParser*)p; + while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); +#if YYSTACKDEPTH<=0 + if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); +#endif +} + +#ifndef Parse_ENGINEALWAYSONSTACK /* -** Deallocate and destroy a parser. Destructors are all called for +** Deallocate and destroy a parser. Destructors are called for ** all stack elements before shutting the parser down. ** -** Inputs: -**
    -**
  • A pointer to the parser. This should be a pointer -** obtained from ParseAlloc. -**
  • A pointer to a function used to reclaim memory obtained -** from malloc. -**
+** If the YYPARSEFREENEVERNULL macro exists (for example because it +** is defined in a %include section of the input grammar) then it is +** assumed that the input pointer is never NULL. */ void ParseFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ - yyParser *pParser = (yyParser*)p; - if( pParser==0 ) return; - while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); -#if YYSTACKDEPTH<=0 - free(pParser->yystack); +#ifndef YYPARSEFREENEVERNULL + if( p==0 ) return; #endif - (*freeProc)((void*)pParser); + ParseFinalize(p); + (*freeProc)(p); } +#endif /* Parse_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. @@ -1267,33 +1536,70 @@ void ParseFree( #ifdef YYTRACKMAXSTACKDEPTH int ParseStackPeak(void *p){ yyParser *pParser = (yyParser*)p; - return pParser->yyidxMax; + return pParser->yyhwm; +} +#endif + +/* This array of booleans keeps track of the parser statement +** coverage. The element yycoverage[X][Y] is set when the parser +** is in state X and has a lookahead token Y. In a well-tested +** systems, every element of this matrix should end up being set. +*/ +#if defined(YYCOVERAGE) +static unsigned char yycoverage[YYNSTATE][YYNTOKEN]; +#endif + +/* +** Write into out a description of every state/lookahead combination that +** +** (1) has not been used by the parser, and +** (2) is not a syntax error. +** +** Return the number of missed state/lookahead combinations. +*/ +#if defined(YYCOVERAGE) +int ParseCoverage(FILE *out){ + int stateno, iLookAhead, i; + int nMissed = 0; + for(stateno=0; statenoyystack[pParser->yyidx].stateno; + int stateno = pParser->yytos->stateno; - if( stateno>YY_SHIFT_COUNT - || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){ - return yy_default[stateno]; - } - assert( iLookAhead!=YYNOCODE ); - i += iLookAhead; - if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ - if( iLookAhead>0 ){ + if( stateno>YY_MAX_SHIFT ) return stateno; + assert( stateno <= YY_SHIFT_COUNT ); +#if defined(YYCOVERAGE) + yycoverage[stateno][iLookAhead] = 1; +#endif + do{ + i = yy_shift_ofst[stateno]; + assert( i>=0 && i+YYNTOKEN<=sizeof(yy_lookahead)/sizeof(yy_lookahead[0]) ); + assert( iLookAhead!=YYNOCODE ); + assert( iLookAhead < YYNTOKEN ); + i += iLookAhead; + if( yy_lookahead[i]!=iLookAhead ){ #ifdef YYFALLBACK YYCODETYPE iFallback; /* Fallback token */ if( iLookAhead=YY_ACTTAB_COUNT j0 ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", - yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); + yyTracePrompt, yyTokenName[iLookAhead], + yyTokenName[YYWILDCARD]); } #endif /* NDEBUG */ return yy_action[j]; } } #endif /* YYWILDCARD */ + return yy_default[stateno]; + }else{ + return yy_action[i]; } - return yy_default[stateno]; - }else{ - return yy_action[i]; - } + }while(1); } /* ** Find the appropriate action for a parser given the non-terminal ** look-ahead token iLookAhead. -** -** If the look-ahead token is YYNOCODE, then check to see if the action is -** independent of the look-ahead. If it is, return the action, otherwise -** return YY_NO_ACTION. */ static int yy_find_reduce_action( int stateno, /* Current state number */ @@ -1357,7 +1662,6 @@ static int yy_find_reduce_action( assert( stateno<=YY_REDUCE_COUNT ); #endif i = yy_reduce_ofst[stateno]; - assert( i!=YY_REDUCE_USE_DFLT ); assert( iLookAhead!=YYNOCODE ); i += iLookAhead; #ifdef YYERRORSYMBOL @@ -1374,20 +1678,42 @@ static int yy_find_reduce_action( /* ** The following routine is called if the stack overflows. */ -static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){ +static void yyStackOverflow(yyParser *yypParser){ ParseARG_FETCH; - yypParser->yyidx--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ +/******** Begin %stack_overflow code ******************************************/ +/******** End %stack_overflow code ********************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ } +/* +** Print tracing information for a SHIFT action +*/ +#ifndef NDEBUG +static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ + if( yyTraceFILE ){ + if( yyNewStateyytos->major], + yyNewState); + }else{ + fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n", + yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major], + yyNewState - YY_MIN_REDUCE); + } + } +} +#else +# define yyTraceShift(X,Y,Z) +#endif + /* ** Perform a shift action. */ @@ -1395,323 +1721,319 @@ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ int yyNewState, /* The new state to shift in */ int yyMajor, /* The major token to shift in */ - YYMINORTYPE *yypMinor /* Pointer to the minor token to shift in */ + ParseTOKENTYPE yyMinor /* The minor token to shift in */ ){ yyStackEntry *yytos; - yypParser->yyidx++; + yypParser->yytos++; #ifdef YYTRACKMAXSTACKDEPTH - if( yypParser->yyidx>yypParser->yyidxMax ){ - yypParser->yyidxMax = yypParser->yyidx; + if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ + yypParser->yyhwm++; + assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); } #endif #if YYSTACKDEPTH>0 - if( yypParser->yyidx>=YYSTACKDEPTH ){ - yyStackOverflow(yypParser, yypMinor); + if( yypParser->yytos>yypParser->yystackEnd ){ + yypParser->yytos--; + yyStackOverflow(yypParser); return; } #else - if( yypParser->yyidx>=yypParser->yystksz ){ - yyGrowStack(yypParser); - if( yypParser->yyidx>=yypParser->yystksz ){ - yyStackOverflow(yypParser, yypMinor); + if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ + if( yyGrowStack(yypParser) ){ + yypParser->yytos--; + yyStackOverflow(yypParser); return; } } #endif - yytos = &yypParser->yystack[yypParser->yyidx]; + if( yyNewState > YY_MAX_SHIFT ){ + yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; + } + yytos = yypParser->yytos; yytos->stateno = (YYACTIONTYPE)yyNewState; yytos->major = (YYCODETYPE)yyMajor; - yytos->minor = *yypMinor; -#ifndef NDEBUG - if( yyTraceFILE && yypParser->yyidx>0 ){ - int i; - fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); - fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); - for(i=1; i<=yypParser->yyidx; i++) - fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); - fprintf(yyTraceFILE,"\n"); - } -#endif + yytos->minor.yy0 = yyMinor; + yyTraceShift(yypParser, yyNewState, "Shift"); } /* The following table contains information about every rule that ** is used during the reduce. */ static const struct { - YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ - unsigned char nrhs; /* Number of right-hand side symbols in the rule */ + 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[] = { - { 189, 1 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 2 }, - { 190, 3 }, - { 191, 0 }, - { 191, 2 }, - { 193, 0 }, - { 193, 2 }, - { 190, 5 }, - { 190, 5 }, - { 190, 4 }, - { 190, 3 }, - { 190, 5 }, - { 190, 3 }, - { 190, 5 }, - { 190, 3 }, - { 190, 4 }, - { 190, 5 }, - { 190, 5 }, - { 190, 4 }, - { 190, 4 }, - { 190, 3 }, - { 190, 3 }, - { 190, 3 }, - { 190, 2 }, - { 190, 3 }, - { 190, 5 }, - { 190, 5 }, - { 190, 4 }, - { 190, 5 }, - { 190, 3 }, - { 190, 4 }, - { 190, 4 }, - { 190, 4 }, - { 190, 4 }, - { 190, 6 }, - { 190, 6 }, - { 192, 1 }, - { 192, 1 }, - { 194, 2 }, - { 194, 0 }, - { 199, 3 }, - { 199, 0 }, - { 190, 3 }, - { 190, 6 }, - { 190, 5 }, - { 190, 5 }, - { 190, 5 }, - { 202, 0 }, - { 202, 2 }, - { 203, 0 }, - { 203, 2 }, - { 204, 0 }, - { 204, 2 }, - { 205, 0 }, - { 205, 2 }, - { 206, 0 }, - { 206, 2 }, - { 207, 0 }, - { 207, 2 }, - { 208, 0 }, - { 208, 2 }, - { 209, 0 }, - { 209, 2 }, - { 210, 0 }, - { 210, 2 }, - { 197, 9 }, - { 211, 2 }, - { 213, 2 }, - { 214, 2 }, - { 215, 2 }, - { 216, 2 }, - { 217, 2 }, - { 218, 2 }, - { 219, 2 }, - { 220, 2 }, - { 221, 2 }, - { 222, 2 }, - { 223, 2 }, - { 224, 2 }, - { 225, 2 }, - { 226, 2 }, - { 227, 2 }, - { 200, 0 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 200, 2 }, - { 201, 1 }, - { 201, 2 }, - { 195, 0 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 195, 2 }, - { 196, 1 }, - { 196, 2 }, - { 228, 1 }, - { 228, 4 }, - { 228, 2 }, - { 229, 1 }, - { 229, 2 }, - { 229, 2 }, - { 190, 3 }, - { 190, 3 }, - { 190, 3 }, - { 190, 3 }, - { 232, 1 }, - { 232, 2 }, - { 230, 6 }, - { 231, 10 }, - { 233, 10 }, - { 233, 13 }, - { 235, 3 }, - { 235, 1 }, - { 230, 5 }, - { 234, 3 }, - { 234, 1 }, - { 237, 2 }, - { 212, 3 }, - { 212, 1 }, - { 238, 1 }, - { 238, 1 }, - { 238, 1 }, - { 238, 1 }, - { 238, 1 }, - { 238, 2 }, - { 238, 2 }, - { 238, 2 }, - { 238, 2 }, - { 236, 13 }, - { 236, 3 }, - { 251, 1 }, - { 251, 4 }, - { 190, 1 }, - { 236, 2 }, - { 252, 2 }, - { 252, 0 }, - { 239, 4 }, - { 239, 2 }, - { 255, 2 }, - { 255, 1 }, - { 255, 0 }, - { 253, 1 }, - { 253, 0 }, - { 240, 2 }, - { 240, 4 }, - { 256, 2 }, - { 256, 3 }, - { 256, 4 }, - { 256, 5 }, - { 257, 1 }, - { 242, 4 }, - { 242, 6 }, - { 242, 0 }, - { 243, 0 }, - { 243, 7 }, - { 244, 0 }, - { 244, 6 }, - { 244, 4 }, - { 245, 4 }, - { 245, 0 }, - { 247, 0 }, - { 247, 3 }, - { 258, 4 }, - { 258, 2 }, - { 260, 2 }, - { 261, 1 }, - { 261, 1 }, - { 261, 0 }, - { 246, 0 }, - { 246, 3 }, - { 262, 3 }, - { 262, 1 }, - { 248, 0 }, - { 248, 2 }, - { 250, 0 }, - { 250, 2 }, - { 250, 4 }, - { 250, 4 }, - { 249, 0 }, - { 249, 2 }, - { 249, 4 }, - { 249, 4 }, - { 241, 0 }, - { 241, 2 }, - { 254, 3 }, - { 254, 1 }, - { 254, 3 }, - { 254, 3 }, - { 254, 1 }, - { 254, 2 }, - { 254, 2 }, - { 254, 1 }, - { 254, 2 }, - { 254, 2 }, - { 254, 1 }, - { 254, 1 }, - { 254, 1 }, - { 254, 2 }, - { 254, 2 }, - { 254, 1 }, - { 254, 1 }, - { 254, 4 }, - { 254, 4 }, - { 254, 3 }, - { 254, 4 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 5 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 3 }, - { 254, 5 }, - { 198, 3 }, - { 198, 1 }, - { 263, 1 }, - { 263, 0 }, - { 190, 3 }, - { 190, 3 }, - { 190, 7 }, - { 190, 7 }, - { 190, 7 }, - { 190, 7 }, - { 190, 8 }, - { 190, 9 }, - { 190, 7 }, - { 190, 7 }, - { 190, 7 }, - { 190, 7 }, - { 190, 8 }, - { 190, 3 }, - { 190, 5 }, - { 190, 5 }, + { 189, -1 }, /* (0) program ::= cmd */ + { 190, -2 }, /* (1) cmd ::= SHOW DATABASES */ + { 190, -2 }, /* (2) cmd ::= SHOW TOPICS */ + { 190, -2 }, /* (3) cmd ::= SHOW MNODES */ + { 190, -2 }, /* (4) cmd ::= SHOW DNODES */ + { 190, -2 }, /* (5) cmd ::= SHOW ACCOUNTS */ + { 190, -2 }, /* (6) cmd ::= SHOW USERS */ + { 190, -2 }, /* (7) cmd ::= SHOW MODULES */ + { 190, -2 }, /* (8) cmd ::= SHOW QUERIES */ + { 190, -2 }, /* (9) cmd ::= SHOW CONNECTIONS */ + { 190, -2 }, /* (10) cmd ::= SHOW STREAMS */ + { 190, -2 }, /* (11) cmd ::= SHOW VARIABLES */ + { 190, -2 }, /* (12) cmd ::= SHOW SCORES */ + { 190, -2 }, /* (13) cmd ::= SHOW GRANTS */ + { 190, -2 }, /* (14) cmd ::= SHOW VNODES */ + { 190, -3 }, /* (15) cmd ::= SHOW VNODES IPTOKEN */ + { 191, 0 }, /* (16) dbPrefix ::= */ + { 191, -2 }, /* (17) dbPrefix ::= ids DOT */ + { 193, 0 }, /* (18) cpxName ::= */ + { 193, -2 }, /* (19) cpxName ::= DOT ids */ + { 190, -5 }, /* (20) cmd ::= SHOW CREATE TABLE ids cpxName */ + { 190, -5 }, /* (21) cmd ::= SHOW CREATE STABLE ids cpxName */ + { 190, -4 }, /* (22) cmd ::= SHOW CREATE DATABASE ids */ + { 190, -3 }, /* (23) cmd ::= SHOW dbPrefix TABLES */ + { 190, -5 }, /* (24) cmd ::= SHOW dbPrefix TABLES LIKE ids */ + { 190, -3 }, /* (25) cmd ::= SHOW dbPrefix STABLES */ + { 190, -5 }, /* (26) cmd ::= SHOW dbPrefix STABLES LIKE ids */ + { 190, -3 }, /* (27) cmd ::= SHOW dbPrefix VGROUPS */ + { 190, -4 }, /* (28) cmd ::= SHOW dbPrefix VGROUPS ids */ + { 190, -5 }, /* (29) cmd ::= DROP TABLE ifexists ids cpxName */ + { 190, -5 }, /* (30) cmd ::= DROP STABLE ifexists ids cpxName */ + { 190, -4 }, /* (31) cmd ::= DROP DATABASE ifexists ids */ + { 190, -4 }, /* (32) cmd ::= DROP TOPIC ifexists ids */ + { 190, -3 }, /* (33) cmd ::= DROP DNODE ids */ + { 190, -3 }, /* (34) cmd ::= DROP USER ids */ + { 190, -3 }, /* (35) cmd ::= DROP ACCOUNT ids */ + { 190, -2 }, /* (36) cmd ::= USE ids */ + { 190, -3 }, /* (37) cmd ::= DESCRIBE ids cpxName */ + { 190, -5 }, /* (38) cmd ::= ALTER USER ids PASS ids */ + { 190, -5 }, /* (39) cmd ::= ALTER USER ids PRIVILEGE ids */ + { 190, -4 }, /* (40) cmd ::= ALTER DNODE ids ids */ + { 190, -5 }, /* (41) cmd ::= ALTER DNODE ids ids ids */ + { 190, -3 }, /* (42) cmd ::= ALTER LOCAL ids */ + { 190, -4 }, /* (43) cmd ::= ALTER LOCAL ids ids */ + { 190, -4 }, /* (44) cmd ::= ALTER DATABASE ids alter_db_optr */ + { 190, -4 }, /* (45) cmd ::= ALTER TOPIC ids alter_topic_optr */ + { 190, -4 }, /* (46) cmd ::= ALTER ACCOUNT ids acct_optr */ + { 190, -6 }, /* (47) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */ + { 190, -6 }, /* (48) cmd ::= COMPACT VNODES IN LP exprlist RP */ + { 192, -1 }, /* (49) ids ::= ID */ + { 192, -1 }, /* (50) ids ::= STRING */ + { 194, -2 }, /* (51) ifexists ::= IF EXISTS */ + { 194, 0 }, /* (52) ifexists ::= */ + { 199, -3 }, /* (53) ifnotexists ::= IF NOT EXISTS */ + { 199, 0 }, /* (54) ifnotexists ::= */ + { 190, -3 }, /* (55) cmd ::= CREATE DNODE ids */ + { 190, -6 }, /* (56) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ + { 190, -5 }, /* (57) cmd ::= CREATE DATABASE ifnotexists ids db_optr */ + { 190, -5 }, /* (58) cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ + { 190, -5 }, /* (59) cmd ::= CREATE USER ids PASS ids */ + { 202, 0 }, /* (60) pps ::= */ + { 202, -2 }, /* (61) pps ::= PPS INTEGER */ + { 203, 0 }, /* (62) tseries ::= */ + { 203, -2 }, /* (63) tseries ::= TSERIES INTEGER */ + { 204, 0 }, /* (64) dbs ::= */ + { 204, -2 }, /* (65) dbs ::= DBS INTEGER */ + { 205, 0 }, /* (66) streams ::= */ + { 205, -2 }, /* (67) streams ::= STREAMS INTEGER */ + { 206, 0 }, /* (68) storage ::= */ + { 206, -2 }, /* (69) storage ::= STORAGE INTEGER */ + { 207, 0 }, /* (70) qtime ::= */ + { 207, -2 }, /* (71) qtime ::= QTIME INTEGER */ + { 208, 0 }, /* (72) users ::= */ + { 208, -2 }, /* (73) users ::= USERS INTEGER */ + { 209, 0 }, /* (74) conns ::= */ + { 209, -2 }, /* (75) conns ::= CONNS INTEGER */ + { 210, 0 }, /* (76) state ::= */ + { 210, -2 }, /* (77) state ::= STATE ids */ + { 197, -9 }, /* (78) acct_optr ::= pps tseries storage streams qtime dbs users conns state */ + { 211, -2 }, /* (79) keep ::= KEEP tagitemlist */ + { 213, -2 }, /* (80) cache ::= CACHE INTEGER */ + { 214, -2 }, /* (81) replica ::= REPLICA INTEGER */ + { 215, -2 }, /* (82) quorum ::= QUORUM INTEGER */ + { 216, -2 }, /* (83) days ::= DAYS INTEGER */ + { 217, -2 }, /* (84) minrows ::= MINROWS INTEGER */ + { 218, -2 }, /* (85) maxrows ::= MAXROWS INTEGER */ + { 219, -2 }, /* (86) blocks ::= BLOCKS INTEGER */ + { 220, -2 }, /* (87) ctime ::= CTIME INTEGER */ + { 221, -2 }, /* (88) wal ::= WAL INTEGER */ + { 222, -2 }, /* (89) fsync ::= FSYNC INTEGER */ + { 223, -2 }, /* (90) comp ::= COMP INTEGER */ + { 224, -2 }, /* (91) prec ::= PRECISION STRING */ + { 225, -2 }, /* (92) update ::= UPDATE INTEGER */ + { 226, -2 }, /* (93) cachelast ::= CACHELAST INTEGER */ + { 227, -2 }, /* (94) partitions ::= PARTITIONS INTEGER */ + { 200, 0 }, /* (95) db_optr ::= */ + { 200, -2 }, /* (96) db_optr ::= db_optr cache */ + { 200, -2 }, /* (97) db_optr ::= db_optr replica */ + { 200, -2 }, /* (98) db_optr ::= db_optr quorum */ + { 200, -2 }, /* (99) db_optr ::= db_optr days */ + { 200, -2 }, /* (100) db_optr ::= db_optr minrows */ + { 200, -2 }, /* (101) db_optr ::= db_optr maxrows */ + { 200, -2 }, /* (102) db_optr ::= db_optr blocks */ + { 200, -2 }, /* (103) db_optr ::= db_optr ctime */ + { 200, -2 }, /* (104) db_optr ::= db_optr wal */ + { 200, -2 }, /* (105) db_optr ::= db_optr fsync */ + { 200, -2 }, /* (106) db_optr ::= db_optr comp */ + { 200, -2 }, /* (107) db_optr ::= db_optr prec */ + { 200, -2 }, /* (108) db_optr ::= db_optr keep */ + { 200, -2 }, /* (109) db_optr ::= db_optr update */ + { 200, -2 }, /* (110) db_optr ::= db_optr cachelast */ + { 201, -1 }, /* (111) topic_optr ::= db_optr */ + { 201, -2 }, /* (112) topic_optr ::= topic_optr partitions */ + { 195, 0 }, /* (113) alter_db_optr ::= */ + { 195, -2 }, /* (114) alter_db_optr ::= alter_db_optr replica */ + { 195, -2 }, /* (115) alter_db_optr ::= alter_db_optr quorum */ + { 195, -2 }, /* (116) alter_db_optr ::= alter_db_optr keep */ + { 195, -2 }, /* (117) alter_db_optr ::= alter_db_optr blocks */ + { 195, -2 }, /* (118) alter_db_optr ::= alter_db_optr comp */ + { 195, -2 }, /* (119) alter_db_optr ::= alter_db_optr wal */ + { 195, -2 }, /* (120) alter_db_optr ::= alter_db_optr fsync */ + { 195, -2 }, /* (121) alter_db_optr ::= alter_db_optr update */ + { 195, -2 }, /* (122) alter_db_optr ::= alter_db_optr cachelast */ + { 196, -1 }, /* (123) alter_topic_optr ::= alter_db_optr */ + { 196, -2 }, /* (124) alter_topic_optr ::= alter_topic_optr partitions */ + { 228, -1 }, /* (125) typename ::= ids */ + { 228, -4 }, /* (126) typename ::= ids LP signed RP */ + { 228, -2 }, /* (127) typename ::= ids UNSIGNED */ + { 229, -1 }, /* (128) signed ::= INTEGER */ + { 229, -2 }, /* (129) signed ::= PLUS INTEGER */ + { 229, -2 }, /* (130) signed ::= MINUS INTEGER */ + { 190, -3 }, /* (131) cmd ::= CREATE TABLE create_table_args */ + { 190, -3 }, /* (132) cmd ::= CREATE TABLE create_stable_args */ + { 190, -3 }, /* (133) cmd ::= CREATE STABLE create_stable_args */ + { 190, -3 }, /* (134) cmd ::= CREATE TABLE create_table_list */ + { 232, -1 }, /* (135) create_table_list ::= create_from_stable */ + { 232, -2 }, /* (136) create_table_list ::= create_table_list create_from_stable */ + { 230, -6 }, /* (137) create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ + { 231, -10 }, /* (138) create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ + { 233, -10 }, /* (139) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ + { 233, -13 }, /* (140) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ + { 235, -3 }, /* (141) tagNamelist ::= tagNamelist COMMA ids */ + { 235, -1 }, /* (142) tagNamelist ::= ids */ + { 230, -5 }, /* (143) create_table_args ::= ifnotexists ids cpxName AS select */ + { 234, -3 }, /* (144) columnlist ::= columnlist COMMA column */ + { 234, -1 }, /* (145) columnlist ::= column */ + { 237, -2 }, /* (146) column ::= ids typename */ + { 212, -3 }, /* (147) tagitemlist ::= tagitemlist COMMA tagitem */ + { 212, -1 }, /* (148) tagitemlist ::= tagitem */ + { 238, -1 }, /* (149) tagitem ::= INTEGER */ + { 238, -1 }, /* (150) tagitem ::= FLOAT */ + { 238, -1 }, /* (151) tagitem ::= STRING */ + { 238, -1 }, /* (152) tagitem ::= BOOL */ + { 238, -1 }, /* (153) tagitem ::= NULL */ + { 238, -2 }, /* (154) tagitem ::= MINUS INTEGER */ + { 238, -2 }, /* (155) tagitem ::= MINUS FLOAT */ + { 238, -2 }, /* (156) tagitem ::= PLUS INTEGER */ + { 238, -2 }, /* (157) tagitem ::= PLUS FLOAT */ + { 236, -13 }, /* (158) select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ + { 236, -3 }, /* (159) select ::= LP select RP */ + { 251, -1 }, /* (160) union ::= select */ + { 251, -4 }, /* (161) union ::= union UNION ALL select */ + { 190, -1 }, /* (162) cmd ::= union */ + { 236, -2 }, /* (163) select ::= SELECT selcollist */ + { 252, -2 }, /* (164) sclp ::= selcollist COMMA */ + { 252, 0 }, /* (165) sclp ::= */ + { 239, -4 }, /* (166) selcollist ::= sclp distinct expr as */ + { 239, -2 }, /* (167) selcollist ::= sclp STAR */ + { 255, -2 }, /* (168) as ::= AS ids */ + { 255, -1 }, /* (169) as ::= ids */ + { 255, 0 }, /* (170) as ::= */ + { 253, -1 }, /* (171) distinct ::= DISTINCT */ + { 253, 0 }, /* (172) distinct ::= */ + { 240, -2 }, /* (173) from ::= FROM tablelist */ + { 240, -4 }, /* (174) from ::= FROM LP union RP */ + { 256, -2 }, /* (175) tablelist ::= ids cpxName */ + { 256, -3 }, /* (176) tablelist ::= ids cpxName ids */ + { 256, -4 }, /* (177) tablelist ::= tablelist COMMA ids cpxName */ + { 256, -5 }, /* (178) tablelist ::= tablelist COMMA ids cpxName ids */ + { 257, -1 }, /* (179) tmvar ::= VARIABLE */ + { 242, -4 }, /* (180) interval_opt ::= INTERVAL LP tmvar RP */ + { 242, -6 }, /* (181) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ + { 242, 0 }, /* (182) interval_opt ::= */ + { 243, 0 }, /* (183) session_option ::= */ + { 243, -7 }, /* (184) session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ + { 244, 0 }, /* (185) fill_opt ::= */ + { 244, -6 }, /* (186) fill_opt ::= FILL LP ID COMMA tagitemlist RP */ + { 244, -4 }, /* (187) fill_opt ::= FILL LP ID RP */ + { 245, -4 }, /* (188) sliding_opt ::= SLIDING LP tmvar RP */ + { 245, 0 }, /* (189) sliding_opt ::= */ + { 247, 0 }, /* (190) orderby_opt ::= */ + { 247, -3 }, /* (191) orderby_opt ::= ORDER BY sortlist */ + { 258, -4 }, /* (192) sortlist ::= sortlist COMMA item sortorder */ + { 258, -2 }, /* (193) sortlist ::= item sortorder */ + { 260, -2 }, /* (194) item ::= ids cpxName */ + { 261, -1 }, /* (195) sortorder ::= ASC */ + { 261, -1 }, /* (196) sortorder ::= DESC */ + { 261, 0 }, /* (197) sortorder ::= */ + { 246, 0 }, /* (198) groupby_opt ::= */ + { 246, -3 }, /* (199) groupby_opt ::= GROUP BY grouplist */ + { 262, -3 }, /* (200) grouplist ::= grouplist COMMA item */ + { 262, -1 }, /* (201) grouplist ::= item */ + { 248, 0 }, /* (202) having_opt ::= */ + { 248, -2 }, /* (203) having_opt ::= HAVING expr */ + { 250, 0 }, /* (204) limit_opt ::= */ + { 250, -2 }, /* (205) limit_opt ::= LIMIT signed */ + { 250, -4 }, /* (206) limit_opt ::= LIMIT signed OFFSET signed */ + { 250, -4 }, /* (207) limit_opt ::= LIMIT signed COMMA signed */ + { 249, 0 }, /* (208) slimit_opt ::= */ + { 249, -2 }, /* (209) slimit_opt ::= SLIMIT signed */ + { 249, -4 }, /* (210) slimit_opt ::= SLIMIT signed SOFFSET signed */ + { 249, -4 }, /* (211) slimit_opt ::= SLIMIT signed COMMA signed */ + { 241, 0 }, /* (212) where_opt ::= */ + { 241, -2 }, /* (213) where_opt ::= WHERE expr */ + { 254, -3 }, /* (214) expr ::= LP expr RP */ + { 254, -1 }, /* (215) expr ::= ID */ + { 254, -3 }, /* (216) expr ::= ID DOT ID */ + { 254, -3 }, /* (217) expr ::= ID DOT STAR */ + { 254, -1 }, /* (218) expr ::= INTEGER */ + { 254, -2 }, /* (219) expr ::= MINUS INTEGER */ + { 254, -2 }, /* (220) expr ::= PLUS INTEGER */ + { 254, -1 }, /* (221) expr ::= FLOAT */ + { 254, -2 }, /* (222) expr ::= MINUS FLOAT */ + { 254, -2 }, /* (223) expr ::= PLUS FLOAT */ + { 254, -1 }, /* (224) expr ::= STRING */ + { 254, -1 }, /* (225) expr ::= NOW */ + { 254, -1 }, /* (226) expr ::= VARIABLE */ + { 254, -2 }, /* (227) expr ::= PLUS VARIABLE */ + { 254, -2 }, /* (228) expr ::= MINUS VARIABLE */ + { 254, -1 }, /* (229) expr ::= BOOL */ + { 254, -1 }, /* (230) expr ::= NULL */ + { 254, -4 }, /* (231) expr ::= ID LP exprlist RP */ + { 254, -4 }, /* (232) expr ::= ID LP STAR RP */ + { 254, -3 }, /* (233) expr ::= expr IS NULL */ + { 254, -4 }, /* (234) expr ::= expr IS NOT NULL */ + { 254, -3 }, /* (235) expr ::= expr LT expr */ + { 254, -3 }, /* (236) expr ::= expr GT expr */ + { 254, -3 }, /* (237) expr ::= expr LE expr */ + { 254, -3 }, /* (238) expr ::= expr GE expr */ + { 254, -3 }, /* (239) expr ::= expr NE expr */ + { 254, -3 }, /* (240) expr ::= expr EQ expr */ + { 254, -5 }, /* (241) expr ::= expr BETWEEN expr AND expr */ + { 254, -3 }, /* (242) expr ::= expr AND expr */ + { 254, -3 }, /* (243) expr ::= expr OR expr */ + { 254, -3 }, /* (244) expr ::= expr PLUS expr */ + { 254, -3 }, /* (245) expr ::= expr MINUS expr */ + { 254, -3 }, /* (246) expr ::= expr STAR expr */ + { 254, -3 }, /* (247) expr ::= expr SLASH expr */ + { 254, -3 }, /* (248) expr ::= expr REM expr */ + { 254, -3 }, /* (249) expr ::= expr LIKE expr */ + { 254, -5 }, /* (250) expr ::= expr IN LP exprlist RP */ + { 198, -3 }, /* (251) exprlist ::= exprlist COMMA expritem */ + { 198, -1 }, /* (252) exprlist ::= expritem */ + { 263, -1 }, /* (253) expritem ::= expr */ + { 263, 0 }, /* (254) expritem ::= */ + { 190, -3 }, /* (255) cmd ::= RESET QUERY CACHE */ + { 190, -3 }, /* (256) cmd ::= SYNCDB ids REPLICA */ + { 190, -7 }, /* (257) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ + { 190, -7 }, /* (258) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ + { 190, -7 }, /* (259) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ + { 190, -7 }, /* (260) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ + { 190, -8 }, /* (261) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ + { 190, -9 }, /* (262) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ + { 190, -7 }, /* (263) cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ + { 190, -7 }, /* (264) cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ + { 190, -7 }, /* (265) cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ + { 190, -7 }, /* (266) cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ + { 190, -8 }, /* (267) cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ + { 190, -3 }, /* (268) cmd ::= KILL CONNECTION INTEGER */ + { 190, -5 }, /* (269) cmd ::= KILL STREAM INTEGER COLON INTEGER */ + { 190, -5 }, /* (270) cmd ::= KILL QUERY INTEGER COLON INTEGER */ }; static void yy_accept(yyParser*); /* Forward Declaration */ @@ -1719,43 +2041,66 @@ static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. +** +** The yyLookahead and yyLookaheadToken parameters provide reduce actions +** access to the lookahead token (if any). The yyLookahead will be YYNOCODE +** if the lookahead token has already been consumed. As this procedure is +** only called from one place, optimizing compilers will in-line it, which +** means that the extra parameters have no performance impact. */ static void yy_reduce( yyParser *yypParser, /* The parser */ - int yyruleno /* Number of the rule by which to reduce */ + unsigned int yyruleno, /* Number of the rule by which to reduce */ + int yyLookahead, /* Lookahead token, or YYNOCODE if none */ + ParseTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ ){ int yygoto; /* The next state */ int yyact; /* The next action */ - YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ ParseARG_FETCH; - yymsp = &yypParser->yystack[yypParser->yyidx]; + (void)yyLookahead; + (void)yyLookaheadToken; + yymsp = yypParser->yytos; #ifndef NDEBUG - if( yyTraceFILE && yyruleno>=0 - && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ - fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt, - yyRuleName[yyruleno]); + if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ + yysize = yyRuleInfo[yyruleno].nrhs; + if( yysize ){ + fprintf(yyTraceFILE, "%sReduce %d [%s], go to state %d.\n", + yyTracePrompt, + yyruleno, yyRuleName[yyruleno], yymsp[yysize].stateno); + }else{ + fprintf(yyTraceFILE, "%sReduce %d [%s].\n", + yyTracePrompt, yyruleno, yyRuleName[yyruleno]); + } } #endif /* NDEBUG */ - /* Silence complaints from purify about yygotominor being uninitialized - ** in some cases when it is copied into the stack after the following - ** switch. yygotominor is uninitialized when a rule reduces that does - ** not set the value of its left-hand side nonterminal. Leaving the - ** value of the nonterminal uninitialized is utterly harmless as long - ** as the value is never used. So really the only thing this code - ** accomplishes is to quieten purify. - ** - ** 2007-01-16: The wireshark project (www.wireshark.org) reports that - ** without this code, their parser segfaults. I'm not sure what there - ** parser is doing to make this happen. This is the second bug report - ** from wireshark this week. Clearly they are stressing Lemon in ways - ** that it has not been previously stressed... (SQLite ticket #2172) - */ - /*memset(&yygotominor, 0, sizeof(yygotominor));*/ - yygotominor = yyzerominor; - + /* Check that the stack is large enough to grow by a single entry + ** if the RHS of the rule is empty. This ensures that there is room + ** enough on the stack to push the LHS value */ + if( yyRuleInfo[yyruleno].nrhs==0 ){ +#ifdef YYTRACKMAXSTACKDEPTH + if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ + yypParser->yyhwm++; + assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); + } +#endif +#if YYSTACKDEPTH>0 + if( yypParser->yytos>=yypParser->yystackEnd ){ + yyStackOverflow(yypParser); + return; + } +#else + if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ + if( yyGrowStack(yypParser) ){ + yyStackOverflow(yypParser); + return; + } + yymsp = yypParser->yytos; + } +#endif + } switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example @@ -1766,7 +2111,12 @@ static void yy_reduce( ** #line ** break; */ +/********** Begin reduce actions **********************************************/ + YYMINORTYPE yylhsminor; case 0: /* program ::= cmd */ + case 131: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==131); + case 132: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==132); + case 133: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==133); {} break; case 1: /* cmd ::= SHOW DATABASES */ @@ -1815,16 +2165,17 @@ static void yy_reduce( { setShowOptions(pInfo, TSDB_MGMT_TABLE_VNODES, &yymsp[0].minor.yy0, 0); } break; case 16: /* dbPrefix ::= */ -{yygotominor.yy0.n = 0; yygotominor.yy0.type = 0;} +{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.type = 0;} break; case 17: /* dbPrefix ::= ids DOT */ -{yygotominor.yy0 = yymsp[-1].minor.yy0; } +{yylhsminor.yy0 = yymsp[-1].minor.yy0; } + yymsp[-1].minor.yy0 = yylhsminor.yy0; break; case 18: /* cpxName ::= */ -{yygotominor.yy0.n = 0; } +{yymsp[1].minor.yy0.n = 0; } break; case 19: /* cpxName ::= DOT ids */ -{yygotominor.yy0 = yymsp[0].minor.yy0; yygotominor.yy0.n += 1; } +{yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n += 1; } break; case 20: /* cmd ::= SHOW CREATE TABLE ids cpxName */ { @@ -1948,16 +2299,19 @@ static void yy_reduce( break; case 49: /* ids ::= ID */ case 50: /* ids ::= STRING */ yytestcase(yyruleno==50); -{yygotominor.yy0 = yymsp[0].minor.yy0; } +{yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 51: /* ifexists ::= IF EXISTS */ - case 53: /* ifnotexists ::= IF NOT EXISTS */ yytestcase(yyruleno==53); -{ yygotominor.yy0.n = 1;} +{ yymsp[-1].minor.yy0.n = 1;} break; case 52: /* ifexists ::= */ case 54: /* ifnotexists ::= */ yytestcase(yyruleno==54); case 172: /* distinct ::= */ yytestcase(yyruleno==172); -{ yygotominor.yy0.n = 0;} +{ yymsp[1].minor.yy0.n = 0;} + break; + case 53: /* ifnotexists ::= IF NOT EXISTS */ +{ yymsp[-2].minor.yy0.n = 1;} break; case 55: /* cmd ::= CREATE DNODE ids */ { setDCLSqlElems(pInfo, TSDB_SQL_CREATE_DNODE, 1, &yymsp[0].minor.yy0);} @@ -1981,7 +2335,7 @@ static void yy_reduce( case 72: /* users ::= */ yytestcase(yyruleno==72); case 74: /* conns ::= */ yytestcase(yyruleno==74); case 76: /* state ::= */ yytestcase(yyruleno==76); -{ yygotominor.yy0.n = 0; } +{ yymsp[1].minor.yy0.n = 0; } break; case 61: /* pps ::= PPS INTEGER */ case 63: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==63); @@ -1992,23 +2346,24 @@ static void yy_reduce( case 73: /* users ::= USERS INTEGER */ yytestcase(yyruleno==73); case 75: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==75); case 77: /* state ::= STATE ids */ yytestcase(yyruleno==77); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } break; case 78: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */ { - yygotominor.yy187.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; - yygotominor.yy187.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; - yygotominor.yy187.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; - yygotominor.yy187.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; - yygotominor.yy187.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; - yygotominor.yy187.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; - yygotominor.yy187.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; - yygotominor.yy187.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; - yygotominor.yy187.stat = yymsp[0].minor.yy0; + yylhsminor.yy187.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; + yylhsminor.yy187.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; + yylhsminor.yy187.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; + yylhsminor.yy187.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; + yylhsminor.yy187.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; + yylhsminor.yy187.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; + yylhsminor.yy187.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; + yylhsminor.yy187.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; + yylhsminor.yy187.stat = yymsp[0].minor.yy0; } + yymsp[-8].minor.yy187 = yylhsminor.yy187; break; case 79: /* keep ::= KEEP tagitemlist */ -{ yygotominor.yy285 = yymsp[0].minor.yy285; } +{ yymsp[-1].minor.yy285 = yymsp[0].minor.yy285; } break; case 80: /* cache ::= CACHE INTEGER */ case 81: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==81); @@ -2025,109 +2380,129 @@ static void yy_reduce( case 92: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==92); case 93: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==93); case 94: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==94); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } break; case 95: /* db_optr ::= */ -{setDefaultCreateDbOption(&yygotominor.yy526); yygotominor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} +{setDefaultCreateDbOption(&yymsp[1].minor.yy526); yymsp[1].minor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} break; case 96: /* db_optr ::= db_optr cache */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 97: /* db_optr ::= db_optr replica */ case 114: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==114); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 98: /* db_optr ::= db_optr quorum */ case 115: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==115); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 99: /* db_optr ::= db_optr days */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 100: /* db_optr ::= db_optr minrows */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 101: /* db_optr ::= db_optr maxrows */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 102: /* db_optr ::= db_optr blocks */ case 117: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==117); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 103: /* db_optr ::= db_optr ctime */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 104: /* db_optr ::= db_optr wal */ case 119: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==119); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 105: /* db_optr ::= db_optr fsync */ case 120: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==120); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 106: /* db_optr ::= db_optr comp */ case 118: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==118); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 107: /* db_optr ::= db_optr prec */ -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.precision = yymsp[0].minor.yy0; } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.precision = yymsp[0].minor.yy0; } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 108: /* db_optr ::= db_optr keep */ case 116: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==116); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.keep = yymsp[0].minor.yy285; } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.keep = yymsp[0].minor.yy285; } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 109: /* db_optr ::= db_optr update */ case 121: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==121); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 110: /* db_optr ::= db_optr cachelast */ case 122: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==122); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 111: /* topic_optr ::= db_optr */ case 123: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==123); -{ yygotominor.yy526 = yymsp[0].minor.yy526; yygotominor.yy526.dbType = TSDB_DB_TYPE_TOPIC; } +{ yylhsminor.yy526 = yymsp[0].minor.yy526; yylhsminor.yy526.dbType = TSDB_DB_TYPE_TOPIC; } + yymsp[0].minor.yy526 = yylhsminor.yy526; break; case 112: /* topic_optr ::= topic_optr partitions */ case 124: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==124); -{ yygotominor.yy526 = yymsp[-1].minor.yy526; yygotominor.yy526.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy526 = yymsp[-1].minor.yy526; yylhsminor.yy526.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy526 = yylhsminor.yy526; break; case 113: /* alter_db_optr ::= */ -{ setDefaultCreateDbOption(&yygotominor.yy526); yygotominor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} +{ setDefaultCreateDbOption(&yymsp[1].minor.yy526); yymsp[1].minor.yy526.dbType = TSDB_DB_TYPE_DEFAULT;} break; case 125: /* typename ::= ids */ { yymsp[0].minor.yy0.type = 0; - tSetColumnType (&yygotominor.yy295, &yymsp[0].minor.yy0); + tSetColumnType (&yylhsminor.yy295, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy295 = yylhsminor.yy295; break; case 126: /* typename ::= ids LP signed RP */ { if (yymsp[-1].minor.yy525 <= 0) { yymsp[-3].minor.yy0.type = 0; - tSetColumnType(&yygotominor.yy295, &yymsp[-3].minor.yy0); + tSetColumnType(&yylhsminor.yy295, &yymsp[-3].minor.yy0); } else { yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy525; // negative value of name length - tSetColumnType(&yygotominor.yy295, &yymsp[-3].minor.yy0); + tSetColumnType(&yylhsminor.yy295, &yymsp[-3].minor.yy0); } } + yymsp[-3].minor.yy295 = yylhsminor.yy295; break; case 127: /* typename ::= ids UNSIGNED */ { yymsp[-1].minor.yy0.type = 0; yymsp[-1].minor.yy0.n = ((yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z); - tSetColumnType (&yygotominor.yy295, &yymsp[-1].minor.yy0); + tSetColumnType (&yylhsminor.yy295, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy295 = yylhsminor.yy295; break; case 128: /* signed ::= INTEGER */ - case 129: /* signed ::= PLUS INTEGER */ yytestcase(yyruleno==129); -{ yygotominor.yy525 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy525 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[0].minor.yy525 = yylhsminor.yy525; + break; + case 129: /* signed ::= PLUS INTEGER */ +{ yymsp[-1].minor.yy525 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; case 130: /* signed ::= MINUS INTEGER */ - case 131: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==131); - case 132: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==132); - case 133: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==133); -{ yygotominor.yy525 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} +{ yymsp[-1].minor.yy525 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} break; case 134: /* cmd ::= CREATE TABLE create_table_list */ { pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy470;} @@ -2139,87 +2514,103 @@ static void yy_reduce( taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy96); pCreateTable->type = TSQL_CREATE_TABLE_FROM_STABLE; - yygotominor.yy470 = pCreateTable; + yylhsminor.yy470 = pCreateTable; } + yymsp[0].minor.yy470 = yylhsminor.yy470; break; case 136: /* create_table_list ::= create_table_list create_from_stable */ { taosArrayPush(yymsp[-1].minor.yy470->childTableInfo, &yymsp[0].minor.yy96); - yygotominor.yy470 = yymsp[-1].minor.yy470; + yylhsminor.yy470 = yymsp[-1].minor.yy470; } + yymsp[-1].minor.yy470 = yylhsminor.yy470; break; case 137: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ { - yygotominor.yy470 = tSetCreateTableInfo(yymsp[-1].minor.yy285, NULL, NULL, TSQL_CREATE_TABLE); - setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy470 = tSetCreateTableInfo(yymsp[-1].minor.yy285, NULL, NULL, TSQL_CREATE_TABLE); + setSqlInfo(pInfo, yylhsminor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-4].minor.yy0, &yymsp[-5].minor.yy0); } + yymsp[-5].minor.yy470 = yylhsminor.yy470; break; case 138: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ { - yygotominor.yy470 = tSetCreateTableInfo(yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, NULL, TSQL_CREATE_STABLE); - setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy470 = tSetCreateTableInfo(yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, NULL, TSQL_CREATE_STABLE); + setSqlInfo(pInfo, yylhsminor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } + yymsp[-9].minor.yy470 = yylhsminor.yy470; break; case 139: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ { yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; - yygotominor.yy96 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy285, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); + yylhsminor.yy96 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy285, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } + yymsp[-9].minor.yy96 = yylhsminor.yy96; break; case 140: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ { yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-11].minor.yy0.n += yymsp[-10].minor.yy0.n; - yygotominor.yy96 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); + yylhsminor.yy96 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy285, yymsp[-1].minor.yy285, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); } + yymsp[-12].minor.yy96 = yylhsminor.yy96; break; case 141: /* tagNamelist ::= tagNamelist COMMA ids */ -{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy0); yygotominor.yy285 = yymsp[-2].minor.yy285; } +{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy0); yylhsminor.yy285 = yymsp[-2].minor.yy285; } + yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 142: /* tagNamelist ::= ids */ -{yygotominor.yy285 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yygotominor.yy285, &yymsp[0].minor.yy0);} +{yylhsminor.yy285 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yylhsminor.yy285, &yymsp[0].minor.yy0);} + yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 143: /* create_table_args ::= ifnotexists ids cpxName AS select */ { - yygotominor.yy470 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy344, TSQL_CREATE_STREAM); - setSqlInfo(pInfo, yygotominor.yy470, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy470 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy344, TSQL_CREATE_STREAM); + setSqlInfo(pInfo, yylhsminor.yy470, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-3].minor.yy0.n += yymsp[-2].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-3].minor.yy0, &yymsp[-4].minor.yy0); } + yymsp[-4].minor.yy470 = yylhsminor.yy470; break; case 144: /* columnlist ::= columnlist COMMA column */ -{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy295); yygotominor.yy285 = yymsp[-2].minor.yy285; } +{taosArrayPush(yymsp[-2].minor.yy285, &yymsp[0].minor.yy295); yylhsminor.yy285 = yymsp[-2].minor.yy285; } + yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 145: /* columnlist ::= column */ -{yygotominor.yy285 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yygotominor.yy285, &yymsp[0].minor.yy295);} +{yylhsminor.yy285 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yylhsminor.yy285, &yymsp[0].minor.yy295);} + yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 146: /* column ::= ids typename */ { - tSetColumnInfo(&yygotominor.yy295, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy295); + tSetColumnInfo(&yylhsminor.yy295, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy295); } + yymsp[-1].minor.yy295 = yylhsminor.yy295; break; case 147: /* tagitemlist ::= tagitemlist COMMA tagitem */ -{ yygotominor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); } +{ yylhsminor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); } + yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 148: /* tagitemlist ::= tagitem */ -{ yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); } +{ yylhsminor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); } + yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 149: /* tagitem ::= INTEGER */ case 150: /* tagitem ::= FLOAT */ yytestcase(yyruleno==150); case 151: /* tagitem ::= STRING */ yytestcase(yyruleno==151); case 152: /* tagitem ::= BOOL */ yytestcase(yyruleno==152); -{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yygotominor.yy362, &yymsp[0].minor.yy0); } +{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yylhsminor.yy362, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy362 = yylhsminor.yy362; break; case 153: /* tagitem ::= NULL */ -{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yygotominor.yy362, &yymsp[0].minor.yy0); } +{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yylhsminor.yy362, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy362 = yylhsminor.yy362; break; case 154: /* tagitem ::= MINUS INTEGER */ case 155: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==155); @@ -2229,113 +2620,130 @@ static void yy_reduce( yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = yymsp[0].minor.yy0.type; toTSDBType(yymsp[-1].minor.yy0.type); - tVariantCreate(&yygotominor.yy362, &yymsp[-1].minor.yy0); + tVariantCreate(&yylhsminor.yy362, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy362 = yylhsminor.yy362; break; case 158: /* select ::= SELECT selcollist from where_opt interval_opt session_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ { - yygotominor.yy344 = tSetQuerySqlNode(&yymsp[-12].minor.yy0, yymsp[-11].minor.yy285, yymsp[-10].minor.yy148, yymsp[-9].minor.yy178, yymsp[-4].minor.yy285, yymsp[-3].minor.yy285, &yymsp[-8].minor.yy376, &yymsp[-7].minor.yy523, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy285, &yymsp[0].minor.yy438, &yymsp[-1].minor.yy438, yymsp[-2].minor.yy178); + yylhsminor.yy344 = tSetQuerySqlNode(&yymsp[-12].minor.yy0, yymsp[-11].minor.yy285, yymsp[-10].minor.yy148, yymsp[-9].minor.yy178, yymsp[-4].minor.yy285, yymsp[-3].minor.yy285, &yymsp[-8].minor.yy376, &yymsp[-7].minor.yy523, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy285, &yymsp[0].minor.yy438, &yymsp[-1].minor.yy438, yymsp[-2].minor.yy178); } + yymsp[-12].minor.yy344 = yylhsminor.yy344; break; case 159: /* select ::= LP select RP */ -{yygotominor.yy344 = yymsp[-1].minor.yy344;} +{yymsp[-2].minor.yy344 = yymsp[-1].minor.yy344;} break; case 160: /* union ::= select */ -{ yygotominor.yy285 = setSubclause(NULL, yymsp[0].minor.yy344); } +{ yylhsminor.yy285 = setSubclause(NULL, yymsp[0].minor.yy344); } + yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 161: /* union ::= union UNION ALL select */ -{ yygotominor.yy285 = appendSelectClause(yymsp[-3].minor.yy285, yymsp[0].minor.yy344); } +{ yylhsminor.yy285 = appendSelectClause(yymsp[-3].minor.yy285, yymsp[0].minor.yy344); } + yymsp[-3].minor.yy285 = yylhsminor.yy285; break; case 162: /* cmd ::= union */ { setSqlInfo(pInfo, yymsp[0].minor.yy285, NULL, TSDB_SQL_SELECT); } break; case 163: /* select ::= SELECT selcollist */ { - yygotominor.yy344 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy285, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + yylhsminor.yy344 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy285, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); } + yymsp[-1].minor.yy344 = yylhsminor.yy344; break; case 164: /* sclp ::= selcollist COMMA */ -{yygotominor.yy285 = yymsp[-1].minor.yy285;} +{yylhsminor.yy285 = yymsp[-1].minor.yy285;} + yymsp[-1].minor.yy285 = yylhsminor.yy285; break; case 165: /* sclp ::= */ case 190: /* orderby_opt ::= */ yytestcase(yyruleno==190); -{yygotominor.yy285 = 0;} +{yymsp[1].minor.yy285 = 0;} break; case 166: /* selcollist ::= sclp distinct expr as */ { - yygotominor.yy285 = tSqlExprListAppend(yymsp[-3].minor.yy285, yymsp[-1].minor.yy178, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); + yylhsminor.yy285 = tSqlExprListAppend(yymsp[-3].minor.yy285, yymsp[-1].minor.yy178, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); } + yymsp[-3].minor.yy285 = yylhsminor.yy285; break; case 167: /* selcollist ::= sclp STAR */ { tSqlExpr *pNode = tSqlExprCreateIdValue(NULL, TK_ALL); - yygotominor.yy285 = tSqlExprListAppend(yymsp[-1].minor.yy285, pNode, 0, 0); + yylhsminor.yy285 = tSqlExprListAppend(yymsp[-1].minor.yy285, pNode, 0, 0); } + yymsp[-1].minor.yy285 = yylhsminor.yy285; break; case 168: /* as ::= AS ids */ - case 169: /* as ::= ids */ yytestcase(yyruleno==169); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } + break; + case 169: /* as ::= ids */ +{ yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 170: /* as ::= */ -{ yygotominor.yy0.n = 0; } +{ yymsp[1].minor.yy0.n = 0; } break; case 171: /* distinct ::= DISTINCT */ -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 173: /* from ::= FROM tablelist */ -{yygotominor.yy148 = yymsp[0].minor.yy148;} +{yymsp[-1].minor.yy148 = yymsp[0].minor.yy148;} break; case 174: /* from ::= FROM LP union RP */ -{yygotominor.yy148 = setSubquery(NULL, yymsp[-1].minor.yy285);} +{yymsp[-3].minor.yy148 = setSubquery(NULL, yymsp[-1].minor.yy285);} break; case 175: /* tablelist ::= ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yygotominor.yy148 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); + yylhsminor.yy148 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); } + yymsp[-1].minor.yy148 = yylhsminor.yy148; break; case 176: /* tablelist ::= ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yygotominor.yy148 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yylhsminor.yy148 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } + yymsp[-2].minor.yy148 = yylhsminor.yy148; break; case 177: /* tablelist ::= tablelist COMMA ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yygotominor.yy148 = setTableNameList(yymsp[-3].minor.yy148, &yymsp[-1].minor.yy0, NULL); + yylhsminor.yy148 = setTableNameList(yymsp[-3].minor.yy148, &yymsp[-1].minor.yy0, NULL); } + yymsp[-3].minor.yy148 = yylhsminor.yy148; break; case 178: /* tablelist ::= tablelist COMMA ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yygotominor.yy148 = setTableNameList(yymsp[-4].minor.yy148, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yylhsminor.yy148 = setTableNameList(yymsp[-4].minor.yy148, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } + yymsp[-4].minor.yy148 = yylhsminor.yy148; break; case 179: /* tmvar ::= VARIABLE */ -{yygotominor.yy0 = yymsp[0].minor.yy0;} +{yylhsminor.yy0 = yymsp[0].minor.yy0;} + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 180: /* interval_opt ::= INTERVAL LP tmvar RP */ -{yygotominor.yy376.interval = yymsp[-1].minor.yy0; yygotominor.yy376.offset.n = 0;} +{yymsp[-3].minor.yy376.interval = yymsp[-1].minor.yy0; yymsp[-3].minor.yy376.offset.n = 0;} break; case 181: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ -{yygotominor.yy376.interval = yymsp[-3].minor.yy0; yygotominor.yy376.offset = yymsp[-1].minor.yy0;} +{yymsp[-5].minor.yy376.interval = yymsp[-3].minor.yy0; yymsp[-5].minor.yy376.offset = yymsp[-1].minor.yy0;} break; case 182: /* interval_opt ::= */ -{memset(&yygotominor.yy376, 0, sizeof(yygotominor.yy376));} +{memset(&yymsp[1].minor.yy376, 0, sizeof(yymsp[1].minor.yy376));} break; case 183: /* session_option ::= */ -{yygotominor.yy523.col.n = 0; yygotominor.yy523.gap.n = 0;} +{yymsp[1].minor.yy523.col.n = 0; yymsp[1].minor.yy523.gap.n = 0;} break; case 184: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - yygotominor.yy523.col = yymsp[-4].minor.yy0; - yygotominor.yy523.gap = yymsp[-1].minor.yy0; + yymsp[-6].minor.yy523.col = yymsp[-4].minor.yy0; + yymsp[-6].minor.yy523.gap = yymsp[-1].minor.yy0; } break; case 185: /* fill_opt ::= */ -{ yygotominor.yy285 = 0; } +{ yymsp[1].minor.yy285 = 0; } break; case 186: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */ { @@ -2344,205 +2752,251 @@ static void yy_reduce( tVariantCreate(&A, &yymsp[-3].minor.yy0); tVariantListInsert(yymsp[-1].minor.yy285, &A, -1, 0); - yygotominor.yy285 = yymsp[-1].minor.yy285; + yymsp[-5].minor.yy285 = yymsp[-1].minor.yy285; } break; case 187: /* fill_opt ::= FILL LP ID RP */ { toTSDBType(yymsp[-1].minor.yy0.type); - yygotominor.yy285 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); + yymsp[-3].minor.yy285 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); } break; case 188: /* sliding_opt ::= SLIDING LP tmvar RP */ -{yygotominor.yy0 = yymsp[-1].minor.yy0; } +{yymsp[-3].minor.yy0 = yymsp[-1].minor.yy0; } break; case 189: /* sliding_opt ::= */ -{yygotominor.yy0.n = 0; yygotominor.yy0.z = NULL; yygotominor.yy0.type = 0; } +{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = NULL; yymsp[1].minor.yy0.type = 0; } break; case 191: /* orderby_opt ::= ORDER BY sortlist */ -{yygotominor.yy285 = yymsp[0].minor.yy285;} +{yymsp[-2].minor.yy285 = yymsp[0].minor.yy285;} break; case 192: /* sortlist ::= sortlist COMMA item sortorder */ { - yygotominor.yy285 = tVariantListAppend(yymsp[-3].minor.yy285, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); + yylhsminor.yy285 = tVariantListAppend(yymsp[-3].minor.yy285, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); } + yymsp[-3].minor.yy285 = yylhsminor.yy285; break; case 193: /* sortlist ::= item sortorder */ { - yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); + yylhsminor.yy285 = tVariantListAppend(NULL, &yymsp[-1].minor.yy362, yymsp[0].minor.yy460); } + yymsp[-1].minor.yy285 = yylhsminor.yy285; break; case 194: /* item ::= ids cpxName */ { toTSDBType(yymsp[-1].minor.yy0.type); yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - tVariantCreate(&yygotominor.yy362, &yymsp[-1].minor.yy0); + tVariantCreate(&yylhsminor.yy362, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy362 = yylhsminor.yy362; break; case 195: /* sortorder ::= ASC */ - case 197: /* sortorder ::= */ yytestcase(yyruleno==197); -{ yygotominor.yy460 = TSDB_ORDER_ASC; } +{ yymsp[0].minor.yy460 = TSDB_ORDER_ASC; } break; case 196: /* sortorder ::= DESC */ -{ yygotominor.yy460 = TSDB_ORDER_DESC;} +{ yymsp[0].minor.yy460 = TSDB_ORDER_DESC;} + break; + case 197: /* sortorder ::= */ +{ yymsp[1].minor.yy460 = TSDB_ORDER_ASC; } break; case 198: /* groupby_opt ::= */ -{ yygotominor.yy285 = 0;} +{ yymsp[1].minor.yy285 = 0;} break; case 199: /* groupby_opt ::= GROUP BY grouplist */ -{ yygotominor.yy285 = yymsp[0].minor.yy285;} +{ yymsp[-2].minor.yy285 = yymsp[0].minor.yy285;} break; case 200: /* grouplist ::= grouplist COMMA item */ { - yygotominor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); + yylhsminor.yy285 = tVariantListAppend(yymsp[-2].minor.yy285, &yymsp[0].minor.yy362, -1); } + yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 201: /* grouplist ::= item */ { - yygotominor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); + yylhsminor.yy285 = tVariantListAppend(NULL, &yymsp[0].minor.yy362, -1); } + yymsp[0].minor.yy285 = yylhsminor.yy285; break; case 202: /* having_opt ::= */ case 212: /* where_opt ::= */ yytestcase(yyruleno==212); case 254: /* expritem ::= */ yytestcase(yyruleno==254); -{yygotominor.yy178 = 0;} +{yymsp[1].minor.yy178 = 0;} break; case 203: /* having_opt ::= HAVING expr */ case 213: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==213); - case 253: /* expritem ::= expr */ yytestcase(yyruleno==253); -{yygotominor.yy178 = yymsp[0].minor.yy178;} +{yymsp[-1].minor.yy178 = yymsp[0].minor.yy178;} break; case 204: /* limit_opt ::= */ case 208: /* slimit_opt ::= */ yytestcase(yyruleno==208); -{yygotominor.yy438.limit = -1; yygotominor.yy438.offset = 0;} +{yymsp[1].minor.yy438.limit = -1; yymsp[1].minor.yy438.offset = 0;} break; case 205: /* limit_opt ::= LIMIT signed */ case 209: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==209); -{yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = 0;} +{yymsp[-1].minor.yy438.limit = yymsp[0].minor.yy525; yymsp[-1].minor.yy438.offset = 0;} break; case 206: /* limit_opt ::= LIMIT signed OFFSET signed */ -{ yygotominor.yy438.limit = yymsp[-2].minor.yy525; yygotominor.yy438.offset = yymsp[0].minor.yy525;} +{ yymsp[-3].minor.yy438.limit = yymsp[-2].minor.yy525; yymsp[-3].minor.yy438.offset = yymsp[0].minor.yy525;} break; case 207: /* limit_opt ::= LIMIT signed COMMA signed */ -{ yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = yymsp[-2].minor.yy525;} +{ yymsp[-3].minor.yy438.limit = yymsp[0].minor.yy525; yymsp[-3].minor.yy438.offset = yymsp[-2].minor.yy525;} break; case 210: /* slimit_opt ::= SLIMIT signed SOFFSET signed */ -{yygotominor.yy438.limit = yymsp[-2].minor.yy525; yygotominor.yy438.offset = yymsp[0].minor.yy525;} +{yymsp[-3].minor.yy438.limit = yymsp[-2].minor.yy525; yymsp[-3].minor.yy438.offset = yymsp[0].minor.yy525;} break; case 211: /* slimit_opt ::= SLIMIT signed COMMA signed */ -{yygotominor.yy438.limit = yymsp[0].minor.yy525; yygotominor.yy438.offset = yymsp[-2].minor.yy525;} +{yymsp[-3].minor.yy438.limit = yymsp[0].minor.yy525; yymsp[-3].minor.yy438.offset = yymsp[-2].minor.yy525;} break; case 214: /* expr ::= LP expr RP */ -{yygotominor.yy178 = yymsp[-1].minor.yy178; yygotominor.yy178->token.z = yymsp[-2].minor.yy0.z; yygotominor.yy178->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} +{yylhsminor.yy178 = yymsp[-1].minor.yy178; yylhsminor.yy178->token.z = yymsp[-2].minor.yy0.z; yylhsminor.yy178->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 215: /* expr ::= ID */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 216: /* expr ::= ID DOT ID */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 217: /* expr ::= ID DOT STAR */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 218: /* expr ::= INTEGER */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 219: /* expr ::= MINUS INTEGER */ case 220: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==220); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} + yymsp[-1].minor.yy178 = yylhsminor.yy178; break; case 221: /* expr ::= FLOAT */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 222: /* expr ::= MINUS FLOAT */ case 223: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==223); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} + yymsp[-1].minor.yy178 = yylhsminor.yy178; break; case 224: /* expr ::= STRING */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 225: /* expr ::= NOW */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 226: /* expr ::= VARIABLE */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 227: /* expr ::= PLUS VARIABLE */ case 228: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==228); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} + yymsp[-1].minor.yy178 = yylhsminor.yy178; break; case 229: /* expr ::= BOOL */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 230: /* expr ::= NULL */ -{ yygotominor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} +{ yylhsminor.yy178 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 231: /* expr ::= ID LP exprlist RP */ -{ yygotominor.yy178 = tSqlExprCreateFunction(yymsp[-1].minor.yy285, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } +{ yylhsminor.yy178 = tSqlExprCreateFunction(yymsp[-1].minor.yy285, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } + yymsp[-3].minor.yy178 = yylhsminor.yy178; break; case 232: /* expr ::= ID LP STAR RP */ -{ yygotominor.yy178 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } +{ yylhsminor.yy178 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } + yymsp[-3].minor.yy178 = yylhsminor.yy178; break; case 233: /* expr ::= expr IS NULL */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, NULL, TK_ISNULL);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, NULL, TK_ISNULL);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 234: /* expr ::= expr IS NOT NULL */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-3].minor.yy178, NULL, TK_NOTNULL);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-3].minor.yy178, NULL, TK_NOTNULL);} + yymsp[-3].minor.yy178 = yylhsminor.yy178; break; case 235: /* expr ::= expr LT expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LT);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LT);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 236: /* expr ::= expr GT expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GT);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GT);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 237: /* expr ::= expr LE expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LE);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LE);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 238: /* expr ::= expr GE expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GE);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_GE);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 239: /* expr ::= expr NE expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_NE);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_NE);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 240: /* expr ::= expr EQ expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_EQ);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_EQ);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 241: /* expr ::= expr BETWEEN expr AND expr */ -{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy178); yygotominor.yy178 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy178, yymsp[-2].minor.yy178, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy178, TK_LE), TK_AND);} +{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy178); yylhsminor.yy178 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy178, yymsp[-2].minor.yy178, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy178, TK_LE), TK_AND);} + yymsp[-4].minor.yy178 = yylhsminor.yy178; break; case 242: /* expr ::= expr AND expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_AND);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_AND);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 243: /* expr ::= expr OR expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_OR); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_OR); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 244: /* expr ::= expr PLUS expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_PLUS); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_PLUS); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 245: /* expr ::= expr MINUS expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_MINUS); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_MINUS); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 246: /* expr ::= expr STAR expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_STAR); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_STAR); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 247: /* expr ::= expr SLASH expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_DIVIDE);} +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_DIVIDE);} + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 248: /* expr ::= expr REM expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_REM); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_REM); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 249: /* expr ::= expr LIKE expr */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LIKE); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-2].minor.yy178, yymsp[0].minor.yy178, TK_LIKE); } + yymsp[-2].minor.yy178 = yylhsminor.yy178; break; case 250: /* expr ::= expr IN LP exprlist RP */ -{yygotominor.yy178 = tSqlExprCreate(yymsp[-4].minor.yy178, (tSqlExpr*)yymsp[-1].minor.yy285, TK_IN); } +{yylhsminor.yy178 = tSqlExprCreate(yymsp[-4].minor.yy178, (tSqlExpr*)yymsp[-1].minor.yy285, TK_IN); } + yymsp[-4].minor.yy178 = yylhsminor.yy178; break; case 251: /* exprlist ::= exprlist COMMA expritem */ -{yygotominor.yy285 = tSqlExprListAppend(yymsp[-2].minor.yy285,yymsp[0].minor.yy178,0, 0);} +{yylhsminor.yy285 = tSqlExprListAppend(yymsp[-2].minor.yy285,yymsp[0].minor.yy178,0, 0);} + yymsp[-2].minor.yy285 = yylhsminor.yy285; break; case 252: /* exprlist ::= expritem */ -{yygotominor.yy285 = tSqlExprListAppend(0,yymsp[0].minor.yy178,0, 0);} +{yylhsminor.yy285 = tSqlExprListAppend(0,yymsp[0].minor.yy178,0, 0);} + yymsp[0].minor.yy285 = yylhsminor.yy285; + break; + case 253: /* expritem ::= expr */ +{yylhsminor.yy178 = yymsp[0].minor.yy178;} + yymsp[0].minor.yy178 = yylhsminor.yy178; break; case 255: /* cmd ::= RESET QUERY CACHE */ { setDCLSqlElems(pInfo, TSDB_SQL_RESET_CACHE, 0);} @@ -2673,32 +3127,25 @@ static void yy_reduce( break; default: break; +/********** End reduce actions ************************************************/ }; + assert( yyrulenoyyidx -= yysize; - yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto); - if( yyact < YYNSTATE ){ -#ifdef NDEBUG - /* If we are not debugging and the reduce action popped at least - ** one element off the stack, then we can push the new element back - ** onto the stack here, and skip the stack overflow test in yy_shift(). - ** That gives a significant speed improvement. */ - if( yysize ){ - yypParser->yyidx++; - yymsp -= yysize-1; - yymsp->stateno = (YYACTIONTYPE)yyact; - yymsp->major = (YYCODETYPE)yygoto; - yymsp->minor = yygotominor; - }else -#endif - { - yy_shift(yypParser,yyact,yygoto,&yygotominor); - } - }else{ - assert( yyact == YYNSTATE + YYNRULE + 1 ); - yy_accept(yypParser); - } + yyact = yy_find_reduce_action(yymsp[yysize].stateno,(YYCODETYPE)yygoto); + + /* There are no SHIFTREDUCE actions on nonterminals because the table + ** generator has simplified them to pure REDUCE actions. */ + assert( !(yyact>YY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); + + /* It is not possible for a REDUCE to be followed by an error */ + assert( yyact!=YY_ERROR_ACTION ); + + yymsp += yysize+1; + yypParser->yytos = yymsp; + yymsp->stateno = (YYACTIONTYPE)yyact; + yymsp->major = (YYCODETYPE)yygoto; + yyTraceShift(yypParser, yyact, "... then shift"); } /* @@ -2714,9 +3161,11 @@ static void yy_parse_failed( fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ +/************ Begin %parse_failure code ***************************************/ +/************ End %parse_failure code *****************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } #endif /* YYNOERRORRECOVERY */ @@ -2727,10 +3176,11 @@ static void yy_parse_failed( static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ - YYMINORTYPE yyminor /* The minor type of the error token */ + ParseTOKENTYPE yyminor /* The minor type of the error token */ ){ ParseARG_FETCH; -#define TOKEN (yyminor.yy0) +#define TOKEN yyminor +/************ Begin %syntax_error code ****************************************/ pInfo->valid = false; int32_t outputBufLen = tListLen(pInfo->msg); @@ -2753,6 +3203,7 @@ static void yy_syntax_error( } assert(len <= outputBufLen); +/************ End %syntax_error code ******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -2768,10 +3219,15 @@ static void yy_accept( fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif + assert( yypParser->yytos==yypParser->yystack ); /* Here code is inserted which will be executed whenever the ** parser accepts */ +/*********** Begin %parse_accept code *****************************************/ +/*********** End %parse_accept code *******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -2801,50 +3257,52 @@ void Parse( ParseARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; - int yyact; /* The parser action. */ + unsigned int yyact; /* The parser action. */ +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) int yyendofinput; /* True if we are at the end of input */ +#endif #ifdef YYERRORSYMBOL int yyerrorhit = 0; /* True if yymajor has invoked an error */ #endif yyParser *yypParser; /* The parser */ - /* (re)initialize the parser, if necessary */ yypParser = (yyParser*)yyp; - if( yypParser->yyidx<0 ){ -#if YYSTACKDEPTH<=0 - if( yypParser->yystksz <=0 ){ - /*memset(&yyminorunion, 0, sizeof(yyminorunion));*/ - yyminorunion = yyzerominor; - yyStackOverflow(yypParser, &yyminorunion); - return; - } -#endif - yypParser->yyidx = 0; - yypParser->yyerrcnt = -1; - yypParser->yystack[0].stateno = 0; - yypParser->yystack[0].major = 0; - } - yyminorunion.yy0 = yyminor; + assert( yypParser->yytos!=0 ); +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) yyendofinput = (yymajor==0); +#endif ParseARG_STORE; #ifndef NDEBUG if( yyTraceFILE ){ - fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); + int stateno = yypParser->yytos->stateno; + if( stateno < YY_MIN_REDUCE ){ + fprintf(yyTraceFILE,"%sInput '%s' in state %d\n", + yyTracePrompt,yyTokenName[yymajor],stateno); + }else{ + fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n", + yyTracePrompt,yyTokenName[yymajor],stateno-YY_MIN_REDUCE); + } } #endif do{ yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); - if( yyact= YY_MIN_REDUCE ){ + yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor,yyminor); + }else if( yyact <= YY_MAX_SHIFTREDUCE ){ + yy_shift(yypParser,yyact,yymajor,yyminor); +#ifndef YYNOERRORRECOVERY yypParser->yyerrcnt--; +#endif yymajor = YYNOCODE; - }else if( yyact < YYNSTATE + YYNRULE ){ - yy_reduce(yypParser,yyact-YYNSTATE); + }else if( yyact==YY_ACCEPT_ACTION ){ + yypParser->yytos--; + yy_accept(yypParser); + return; }else{ assert( yyact == YY_ERROR_ACTION ); + yyminorunion.yy0 = yyminor; #ifdef YYERRORSYMBOL int yymx; #endif @@ -2874,9 +3332,9 @@ void Parse( ** */ if( yypParser->yyerrcnt<0 ){ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor,yyminor); } - yymx = yypParser->yystack[yypParser->yyidx].major; + yymx = yypParser->yytos->major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ @@ -2884,26 +3342,26 @@ void Parse( yyTracePrompt,yyTokenName[yymajor]); } #endif - yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion); + yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); yymajor = YYNOCODE; }else{ - while( - yypParser->yyidx >= 0 && - yymx != YYERRORSYMBOL && - (yyact = yy_find_reduce_action( - yypParser->yystack[yypParser->yyidx].stateno, - YYERRORSYMBOL)) >= YYNSTATE + while( yypParser->yytos >= yypParser->yystack + && yymx != YYERRORSYMBOL + && (yyact = yy_find_reduce_action( + yypParser->yytos->stateno, + YYERRORSYMBOL)) >= YY_MIN_REDUCE ){ yy_pop_parser_stack(yypParser); } - if( yypParser->yyidx < 0 || yymajor==0 ){ + if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_parse_failed(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ - YYMINORTYPE u2; - u2.YYERRSYMDT = 0; - yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); + yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); } } yypParser->yyerrcnt = 3; @@ -2916,7 +3374,7 @@ void Parse( ** Applications can set this macro (for example inside %include) if ** they intend to abandon the parse upon the first syntax error seen. */ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor, yyminor); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yymajor = YYNOCODE; @@ -2931,16 +3389,31 @@ void Parse( ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor, yyminor); } yypParser->yyerrcnt = 3; yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif } yymajor = YYNOCODE; #endif } - }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); + }while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack ); +#ifndef NDEBUG + if( yyTraceFILE ){ + yyStackEntry *i; + char cDiv = '['; + fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); + for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ + fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); + cDiv = ' '; + } + fprintf(yyTraceFILE,"]\n"); + } +#endif return; } From b38ebe9a3ebd21c8bcca7790369c345d751526f7 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 11 Jun 2021 16:04:04 +0800 Subject: [PATCH 07/15] [td-225]update sql.y --- src/inc/ttokendef.h | 198 ++-- src/query/src/sql.c | 2585 +++++++++++++++++++++++++------------------ 2 files changed, 1629 insertions(+), 1154 deletions(-) diff --git a/src/inc/ttokendef.h b/src/inc/ttokendef.h index be13dd05f8..f6047d57dc 100644 --- a/src/inc/ttokendef.h +++ b/src/inc/ttokendef.h @@ -16,105 +16,105 @@ #ifndef TDENGINE_TTOKENDEF_H #define TDENGINE_TTOKENDEF_H -#define TK_ID 1 -#define TK_BOOL 2 -#define TK_TINYINT 3 -#define TK_SMALLINT 4 -#define TK_INTEGER 5 -#define TK_BIGINT 6 -#define TK_FLOAT 7 -#define TK_DOUBLE 8 -#define TK_STRING 9 -#define TK_TIMESTAMP 10 -#define TK_BINARY 11 -#define TK_NCHAR 12 -#define TK_OR 13 -#define TK_AND 14 -#define TK_NOT 15 -#define TK_EQ 16 -#define TK_NE 17 -#define TK_ISNULL 18 -#define TK_NOTNULL 19 -#define TK_IS 20 -#define TK_LIKE 21 -#define TK_GLOB 22 -#define TK_BETWEEN 23 -#define TK_IN 24 -#define TK_GT 25 -#define TK_GE 26 -#define TK_LT 27 -#define TK_LE 28 -#define TK_BITAND 29 -#define TK_BITOR 30 -#define TK_LSHIFT 31 -#define TK_RSHIFT 32 -#define TK_PLUS 33 -#define TK_MINUS 34 -#define TK_DIVIDE 35 -#define TK_TIMES 36 -#define TK_STAR 37 -#define TK_SLASH 38 -#define TK_REM 39 -#define TK_CONCAT 40 -#define TK_UMINUS 41 -#define TK_UPLUS 42 -#define TK_BITNOT 43 -#define TK_SHOW 44 -#define TK_DATABASES 45 -#define TK_TOPICS 46 -#define TK_MNODES 47 -#define TK_DNODES 48 -#define TK_ACCOUNTS 49 -#define TK_USERS 50 -#define TK_MODULES 51 -#define TK_QUERIES 52 -#define TK_CONNECTIONS 53 -#define TK_STREAMS 54 -#define TK_VARIABLES 55 -#define TK_SCORES 56 -#define TK_GRANTS 57 -#define TK_VNODES 58 -#define TK_IPTOKEN 59 -#define TK_DOT 60 -#define TK_CREATE 61 -#define TK_TABLE 62 -#define TK_STABLE 63 -#define TK_DATABASE 64 -#define TK_TABLES 65 -#define TK_STABLES 66 -#define TK_VGROUPS 67 -#define TK_DROP 68 -#define TK_TOPIC 69 -#define TK_DNODE 70 -#define TK_USER 71 -#define TK_ACCOUNT 72 -#define TK_USE 73 -#define TK_DESCRIBE 74 -#define TK_ALTER 75 -#define TK_PASS 76 -#define TK_PRIVILEGE 77 -#define TK_LOCAL 78 -#define TK_COMPACT 79 -#define TK_LP 80 -#define TK_RP 81 -#define TK_IF 82 -#define TK_EXISTS 83 -#define TK_PPS 84 -#define TK_TSERIES 85 -#define TK_DBS 86 -#define TK_STORAGE 87 -#define TK_QTIME 88 -#define TK_CONNS 89 -#define TK_STATE 90 -#define TK_COMMA 91 -#define TK_KEEP 92 -#define TK_CACHE 93 -#define TK_REPLICA 94 -#define TK_QUORUM 95 -#define TK_DAYS 96 -#define TK_MINROWS 97 -#define TK_MAXROWS 98 -#define TK_BLOCKS 99 +#define TK_ID 1 +#define TK_BOOL 2 +#define TK_TINYINT 3 +#define TK_SMALLINT 4 +#define TK_INTEGER 5 +#define TK_BIGINT 6 +#define TK_FLOAT 7 +#define TK_DOUBLE 8 +#define TK_STRING 9 +#define TK_TIMESTAMP 10 +#define TK_BINARY 11 +#define TK_NCHAR 12 +#define TK_OR 13 +#define TK_AND 14 +#define TK_NOT 15 +#define TK_EQ 16 +#define TK_NE 17 +#define TK_ISNULL 18 +#define TK_NOTNULL 19 +#define TK_IS 20 +#define TK_LIKE 21 +#define TK_GLOB 22 +#define TK_BETWEEN 23 +#define TK_IN 24 +#define TK_GT 25 +#define TK_GE 26 +#define TK_LT 27 +#define TK_LE 28 +#define TK_BITAND 29 +#define TK_BITOR 30 +#define TK_LSHIFT 31 +#define TK_RSHIFT 32 +#define TK_PLUS 33 +#define TK_MINUS 34 +#define TK_DIVIDE 35 +#define TK_TIMES 36 +#define TK_STAR 37 +#define TK_SLASH 38 +#define TK_REM 39 +#define TK_CONCAT 40 +#define TK_UMINUS 41 +#define TK_UPLUS 42 +#define TK_BITNOT 43 +#define TK_SHOW 44 +#define TK_DATABASES 45 +#define TK_TOPICS 46 +#define TK_MNODES 47 +#define TK_DNODES 48 +#define TK_ACCOUNTS 49 +#define TK_USERS 50 +#define TK_MODULES 51 +#define TK_QUERIES 52 +#define TK_CONNECTIONS 53 +#define TK_STREAMS 54 +#define TK_VARIABLES 55 +#define TK_SCORES 56 +#define TK_GRANTS 57 +#define TK_VNODES 58 +#define TK_IPTOKEN 59 +#define TK_DOT 60 +#define TK_CREATE 61 +#define TK_TABLE 62 +#define TK_STABLE 63 +#define TK_DATABASE 64 +#define TK_TABLES 65 +#define TK_STABLES 66 +#define TK_VGROUPS 67 +#define TK_DROP 68 +#define TK_TOPIC 69 +#define TK_DNODE 70 +#define TK_USER 71 +#define TK_ACCOUNT 72 +#define TK_USE 73 +#define TK_DESCRIBE 74 +#define TK_ALTER 75 +#define TK_PASS 76 +#define TK_PRIVILEGE 77 +#define TK_LOCAL 78 +#define TK_COMPACT 79 +#define TK_LP 80 +#define TK_RP 81 +#define TK_IF 82 +#define TK_EXISTS 83 +#define TK_PPS 84 +#define TK_TSERIES 85 +#define TK_DBS 86 +#define TK_STORAGE 87 +#define TK_QTIME 88 +#define TK_CONNS 89 +#define TK_STATE 90 +#define TK_COMMA 91 +#define TK_KEEP 92 +#define TK_CACHE 93 +#define TK_REPLICA 94 +#define TK_QUORUM 95 +#define TK_DAYS 96 +#define TK_MINROWS 97 +#define TK_MAXROWS 98 +#define TK_BLOCKS 99 #define TK_CTIME 100 #define TK_WAL 101 #define TK_FSYNC 102 diff --git a/src/query/src/sql.c b/src/query/src/sql.c index 9e95b4ce92..8764c6d0d3 100644 --- a/src/query/src/sql.c +++ b/src/query/src/sql.c @@ -1,9 +1,29 @@ -/* Driver template for the LEMON parser generator. -** The author disclaims copyright to this source code. +/* +** 2000-05-29 +** +** The author disclaims copyright to this source code. In place of +** a legal notice, here is a blessing: +** +** May you do good and not evil. +** May you find forgiveness for yourself and forgive others. +** May you share freely, never taking more than you give. +** +************************************************************************* +** Driver template for the LEMON parser generator. +** +** The "lemon" program processes an LALR(1) input grammar file, then uses +** this template to construct a parser. The "lemon" program inserts text +** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the +** interstitial "-" characters) contained in this template is changed into +** the value of the %name directive from the grammar. Otherwise, the content +** of this template is copied straight through into the generate parser +** source file. +** +** The following is the concatenation of all %include directives from the +** input grammar file: */ -/* First off, code is included that follows the "include" declaration -** in the input grammar file. */ #include +/************ Begin %include sections from the grammar ************************/ #include #include @@ -16,55 +36,66 @@ #include "ttokendef.h" #include "tutil.h" #include "tvariant.h" -/* Next is all token values, in a form suitable for use by makeheaders. -** This section will be null unless lemon is run with the -m switch. -*/ -/* -** These constants (all generated automatically by the parser generator) -** specify the various kinds of tokens (terminals) that the parser -** understands. -** -** Each symbol here is a terminal symbol in the grammar. -*/ -/* Make sure the INTERFACE macro is defined. -*/ -#ifndef INTERFACE -# define INTERFACE 1 -#endif -/* The next thing included is series of defines which control +/**************** End of %include directives **********************************/ +/* These constants specify the various numeric values for terminal symbols +** in a format understandable to "makeheaders". This section is blank unless +** "lemon" is run with the "-m" command-line option. +***************** Begin makeheaders token definitions *************************/ +/**************** End makeheaders token definitions ***************************/ + +/* The next sections is a series of control #defines. ** various aspects of the generated parser. -** YYCODETYPE is the data type used for storing terminal -** and nonterminal numbers. "unsigned char" is -** used if there are fewer than 250 terminals -** and nonterminals. "int" is used otherwise. -** YYNOCODE is a number of type YYCODETYPE which corresponds -** to no legal terminal or nonterminal number. This -** number is used to fill in empty slots of the hash -** table. +** YYCODETYPE is the data type used to store the integer codes +** that represent terminal and non-terminal symbols. +** "unsigned char" is used if there are fewer than +** 256 symbols. Larger types otherwise. +** YYNOCODE is a number of type YYCODETYPE that is not used for +** any terminal or nonterminal symbol. ** YYFALLBACK If defined, this indicates that one or more tokens -** have fall-back values which should be used if the -** original value of the token will not parse. -** YYACTIONTYPE is the data type used for storing terminal -** and nonterminal numbers. "unsigned char" is -** used if there are fewer than 250 rules and -** states combined. "int" is used otherwise. -** ParseTOKENTYPE is the data type used for minor tokens given -** directly to the parser from the tokenizer. -** YYMINORTYPE is the data type used for all minor tokens. +** (also known as: "terminal symbols") have fall-back +** values which should be used if the original symbol +** would not parse. This permits keywords to sometimes +** be used as identifiers, for example. +** YYACTIONTYPE is the data type used for "action codes" - numbers +** that indicate what to do in response to the next +** token. +** ParseTOKENTYPE is the data type used for minor type for terminal +** symbols. Background: A "minor type" is a semantic +** value associated with a terminal or non-terminal +** symbols. For example, for an "ID" terminal symbol, +** the minor type might be the name of the identifier. +** Each non-terminal can have a different minor type. +** Terminal symbols all have the same minor type, though. +** This macros defines the minor type for terminal +** symbols. +** YYMINORTYPE is the data type used for all minor types. ** This is typically a union of many types, one of ** which is ParseTOKENTYPE. The entry in the union -** for base tokens is called "yy0". +** for terminal symbols is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** ParseARG_SDECL A static variable declaration for the %extra_argument ** ParseARG_PDECL A parameter declaration for the %extra_argument ** ParseARG_STORE Code to store %extra_argument into yypParser ** ParseARG_FETCH Code to extract %extra_argument from yypParser -** YYNSTATE the combined number of states. -** YYNRULE the number of rules in the grammar ** YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. +** YYNSTATE the combined number of states. +** YYNRULE the number of rules in the grammar +** YYNTOKEN Number of terminal symbols +** YY_MAX_SHIFT Maximum value for shift actions +** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions +** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions +** YY_ERROR_ACTION The yy_action[] code for syntax error +** YY_ACCEPT_ACTION The yy_action[] code for accept +** YY_NO_ACTION The yy_action[] code for no-op +** YY_MIN_REDUCE Minimum value for reduce actions +** YY_MAX_REDUCE Maximum value for reduce actions */ +#ifndef INTERFACE +# define INTERFACE 1 +#endif +/************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int #define YYNOCODE 271 #define YYACTIONTYPE unsigned short int @@ -96,16 +127,19 @@ typedef union { #define ParseARG_PDECL ,SSqlInfo* pInfo #define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo #define ParseARG_STORE yypParser->pInfo = pInfo -#define YYNSTATE 548 -#define YYNRULE 284 #define YYFALLBACK 1 -#define YY_NO_ACTION (YYNSTATE+YYNRULE+2) -#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1) -#define YY_ERROR_ACTION (YYNSTATE+YYNRULE) - -/* The yyzerominor constant is used to initialize instances of -** YYMINORTYPE objects to zero. */ -static const YYMINORTYPE yyzerominor = { 0 }; +#define YYNSTATE 347 +#define YYNRULE 284 +#define YYNTOKEN 190 +#define YY_MAX_SHIFT 346 +#define YY_MIN_SHIFTREDUCE 548 +#define YY_MAX_SHIFTREDUCE 831 +#define YY_ERROR_ACTION 832 +#define YY_ACCEPT_ACTION 833 +#define YY_NO_ACTION 834 +#define YY_MIN_REDUCE 835 +#define YY_MAX_REDUCE 1118 +/************* End control #defines *******************************************/ /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. @@ -128,33 +162,35 @@ static const YYMINORTYPE yyzerominor = { 0 }; ** Suppose the action integer is N. Then the action is determined as ** follows ** -** 0 <= N < YYNSTATE Shift N. That is, push the lookahead +** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** -** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE. +** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then +** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. ** -** N == YYNSTATE+YYNRULE A syntax error has occurred. +** N == YY_ERROR_ACTION A syntax error has occurred. ** -** N == YYNSTATE+YYNRULE+1 The parser accepts its input. +** N == YY_ACCEPT_ACTION The parser accepts its input. ** -** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused +** N == YY_NO_ACTION No such action. Denotes unused ** slots in the yy_action[] table. ** +** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE +** and YY_MAX_REDUCE +** ** The action table is constructed as a single large table named yy_action[]. -** Given state S and lookahead X, the action is computed as +** Given state S and lookahead X, the action is computed as either: ** -** yy_action[ yy_shift_ofst[S] + X ] +** (A) N = yy_action[ yy_shift_ofst[S] + X ] +** (B) N = yy_default[S] ** -** If the index value yy_shift_ofst[S]+X is out of range or if the value -** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S] -** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table -** and that yy_default[S] should be used instead. +** The (A) formula is preferred. The B formula is used instead if +** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X. ** -** The formula above is for computing the action when the lookahead is +** The formulas above are for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of -** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of -** YY_SHIFT_USE_DFLT. +** the yy_shift_ofst[] array. ** ** The following are the tables generated in this section: ** @@ -166,311 +202,286 @@ static const YYMINORTYPE yyzerominor = { 0 }; ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. -*/ -#define YY_ACTTAB_COUNT (852) +** +*********** Begin parsing tables **********************************************/ +#define YY_ACTTAB_COUNT (734) static const YYACTIONTYPE yy_action[] = { - /* 0 */ 531, 53, 52, 126, 125, 51, 50, 49, 530, 143, - /* 10 */ 141, 140, 54, 55, 14, 58, 59, 379, 378, 239, - /* 20 */ 48, 450, 57, 300, 62, 60, 63, 61, 343, 342, - /* 30 */ 137, 25, 53, 52, 833, 346, 51, 50, 49, 54, - /* 40 */ 55, 548, 58, 59, 94, 91, 239, 48, 237, 57, - /* 50 */ 300, 62, 60, 63, 61, 443, 440, 442, 439, 53, - /* 60 */ 52, 74, 253, 51, 50, 49, 54, 55, 6, 58, - /* 70 */ 59, 257, 256, 239, 48, 533, 57, 300, 62, 60, - /* 80 */ 63, 61, 68, 362, 145, 92, 53, 52, 531, 470, - /* 90 */ 51, 50, 49, 51, 50, 49, 530, 81, 80, 261, - /* 100 */ 473, 54, 56, 534, 58, 59, 240, 449, 239, 48, - /* 110 */ 77, 57, 300, 62, 60, 63, 61, 397, 396, 34, - /* 120 */ 388, 53, 52, 71, 69, 51, 50, 49, 320, 319, - /* 130 */ 264, 264, 547, 546, 545, 544, 543, 542, 541, 540, - /* 140 */ 539, 538, 537, 536, 535, 345, 35, 55, 220, 58, - /* 150 */ 59, 268, 267, 239, 48, 248, 57, 300, 62, 60, - /* 160 */ 63, 61, 302, 72, 152, 197, 53, 52, 441, 438, - /* 170 */ 51, 50, 49, 58, 59, 425, 446, 239, 48, 235, - /* 180 */ 57, 300, 62, 60, 63, 61, 22, 236, 21, 322, - /* 190 */ 53, 52, 469, 468, 51, 50, 49, 402, 414, 413, - /* 200 */ 412, 411, 410, 409, 408, 407, 406, 405, 404, 403, - /* 210 */ 401, 400, 445, 152, 41, 296, 339, 338, 295, 294, - /* 220 */ 293, 337, 292, 336, 335, 334, 291, 333, 332, 238, - /* 230 */ 433, 531, 365, 444, 282, 437, 88, 436, 197, 530, - /* 240 */ 24, 62, 60, 63, 61, 113, 197, 112, 425, 53, - /* 250 */ 52, 181, 35, 51, 50, 49, 425, 205, 9, 448, - /* 260 */ 35, 217, 218, 522, 206, 301, 20, 33, 19, 129, - /* 270 */ 128, 204, 36, 238, 433, 305, 83, 444, 247, 437, - /* 280 */ 496, 436, 498, 497, 459, 89, 458, 495, 431, 493, - /* 290 */ 492, 494, 531, 491, 490, 318, 288, 139, 25, 468, - /* 300 */ 530, 1, 167, 317, 138, 217, 218, 468, 64, 42, - /* 310 */ 41, 461, 339, 338, 464, 152, 463, 337, 462, 336, - /* 320 */ 335, 334, 242, 333, 332, 457, 474, 456, 114, 108, - /* 330 */ 119, 18, 260, 17, 75, 118, 124, 127, 117, 35, - /* 340 */ 432, 213, 244, 245, 121, 35, 434, 83, 107, 249, - /* 350 */ 106, 246, 64, 315, 314, 354, 35, 188, 186, 184, - /* 360 */ 90, 35, 35, 435, 183, 132, 131, 130, 5, 38, - /* 370 */ 169, 29, 35, 35, 78, 168, 102, 97, 101, 35, - /* 380 */ 42, 16, 316, 15, 432, 685, 468, 374, 312, 280, - /* 390 */ 434, 426, 468, 243, 95, 241, 394, 308, 307, 311, - /* 400 */ 287, 25, 391, 468, 310, 309, 65, 435, 468, 468, - /* 410 */ 93, 35, 65, 285, 387, 230, 229, 370, 371, 468, - /* 420 */ 468, 460, 221, 36, 36, 367, 468, 26, 65, 395, - /* 430 */ 262, 3, 180, 76, 353, 147, 340, 507, 486, 422, - /* 440 */ 36, 487, 116, 179, 179, 389, 179, 152, 506, 362, - /* 450 */ 330, 233, 362, 231, 197, 392, 355, 392, 475, 225, - /* 460 */ 505, 219, 344, 392, 424, 223, 352, 298, 222, 504, - /* 470 */ 503, 502, 501, 500, 499, 489, 485, 484, 483, 482, - /* 480 */ 481, 480, 479, 478, 472, 471, 304, 111, 109, 105, - /* 490 */ 232, 8, 103, 447, 430, 7, 100, 67, 66, 297, - /* 500 */ 421, 420, 419, 418, 417, 416, 96, 303, 94, 28, - /* 510 */ 415, 286, 27, 284, 13, 12, 32, 11, 31, 375, - /* 520 */ 151, 276, 357, 372, 226, 87, 149, 369, 86, 85, - /* 530 */ 368, 148, 264, 366, 30, 266, 82, 363, 10, 349, - /* 540 */ 259, 350, 255, 351, 254, 348, 252, 251, 347, 4, - /* 550 */ 2, 529, 142, 528, 509, 136, 523, 508, 135, 521, - /* 560 */ 488, 134, 178, 133, 514, 327, 331, 341, 177, 324, - /* 570 */ 176, 329, 212, 211, 328, 325, 326, 175, 174, 323, - /* 580 */ 173, 115, 172, 99, 298, 476, 289, 98, 234, 214, - /* 590 */ 160, 46, 157, 155, 70, 377, 162, 278, 271, 161, - /* 600 */ 272, 224, 159, 84, 399, 79, 156, 263, 190, 834, - /* 610 */ 532, 834, 270, 189, 273, 834, 275, 527, 526, 834, - /* 620 */ 525, 834, 834, 834, 158, 277, 373, 279, 386, 154, - /* 630 */ 283, 524, 834, 281, 153, 265, 47, 834, 385, 73, - /* 640 */ 834, 163, 269, 455, 834, 45, 361, 187, 834, 451, - /* 650 */ 834, 380, 834, 834, 185, 520, 376, 519, 834, 834, - /* 660 */ 834, 834, 834, 321, 393, 228, 834, 834, 384, 834, - /* 670 */ 834, 383, 834, 834, 834, 834, 834, 330, 834, 834, - /* 680 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 690 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 700 */ 834, 834, 834, 834, 518, 834, 517, 516, 515, 182, - /* 710 */ 250, 513, 512, 834, 123, 122, 511, 834, 120, 510, - /* 720 */ 192, 44, 37, 40, 477, 171, 467, 466, 834, 110, - /* 730 */ 465, 834, 313, 170, 834, 834, 454, 834, 453, 104, - /* 740 */ 452, 306, 423, 299, 39, 191, 834, 43, 290, 398, - /* 750 */ 166, 165, 390, 164, 274, 150, 146, 364, 360, 359, - /* 760 */ 358, 356, 144, 258, 834, 834, 834, 834, 834, 834, - /* 770 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 780 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 790 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 800 */ 834, 834, 227, 382, 381, 834, 834, 834, 834, 834, - /* 810 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 820 */ 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, - /* 830 */ 834, 834, 193, 207, 210, 209, 208, 203, 202, 196, - /* 840 */ 201, 199, 198, 216, 215, 429, 428, 427, 200, 195, - /* 850 */ 194, 23, + /* 0 */ 23, 597, 1007, 597, 219, 344, 194, 833, 346, 598, + /* 10 */ 597, 598, 197, 54, 55, 225, 58, 59, 598, 986, + /* 20 */ 239, 48, 1094, 57, 300, 62, 60, 63, 61, 998, + /* 30 */ 998, 231, 233, 53, 52, 986, 986, 51, 50, 49, + /* 40 */ 54, 55, 35, 58, 59, 222, 223, 239, 48, 597, + /* 50 */ 57, 300, 62, 60, 63, 61, 998, 598, 152, 236, + /* 60 */ 53, 52, 235, 152, 51, 50, 49, 55, 1004, 58, + /* 70 */ 59, 772, 261, 239, 48, 240, 57, 300, 62, 60, + /* 80 */ 63, 61, 29, 195, 83, 221, 53, 52, 145, 983, + /* 90 */ 51, 50, 49, 549, 550, 551, 552, 553, 554, 555, + /* 100 */ 556, 557, 558, 559, 560, 561, 345, 773, 770, 220, + /* 110 */ 95, 77, 54, 55, 35, 58, 59, 42, 197, 239, + /* 120 */ 48, 197, 57, 300, 62, 60, 63, 61, 1095, 298, + /* 130 */ 1043, 1095, 53, 52, 197, 89, 51, 50, 49, 54, + /* 140 */ 56, 330, 58, 59, 1095, 974, 239, 48, 629, 57, + /* 150 */ 300, 62, 60, 63, 61, 268, 267, 229, 152, 53, + /* 160 */ 52, 983, 248, 51, 50, 49, 41, 296, 339, 338, + /* 170 */ 295, 294, 293, 337, 292, 336, 335, 334, 291, 333, + /* 180 */ 332, 946, 934, 935, 936, 937, 938, 939, 940, 941, + /* 190 */ 942, 943, 944, 945, 947, 948, 58, 59, 24, 984, + /* 200 */ 239, 48, 35, 57, 300, 62, 60, 63, 61, 51, + /* 210 */ 50, 49, 972, 53, 52, 205, 881, 51, 50, 49, + /* 220 */ 76, 179, 206, 35, 340, 915, 92, 129, 128, 204, + /* 230 */ 1044, 237, 280, 305, 83, 200, 238, 785, 35, 776, + /* 240 */ 774, 779, 777, 980, 780, 230, 238, 785, 715, 983, + /* 250 */ 774, 6, 777, 971, 780, 114, 108, 119, 969, 970, + /* 260 */ 34, 973, 118, 124, 127, 117, 309, 42, 217, 218, + /* 270 */ 983, 121, 301, 41, 9, 339, 338, 35, 217, 218, + /* 280 */ 337, 310, 336, 335, 334, 983, 333, 332, 232, 116, + /* 290 */ 260, 262, 75, 954, 298, 952, 953, 330, 242, 213, + /* 300 */ 955, 36, 957, 958, 956, 718, 959, 960, 62, 60, + /* 310 */ 63, 61, 775, 152, 778, 64, 53, 52, 14, 247, + /* 320 */ 51, 50, 49, 703, 982, 64, 700, 1091, 701, 35, + /* 330 */ 702, 5, 38, 169, 35, 188, 186, 184, 168, 102, + /* 340 */ 97, 101, 183, 132, 131, 130, 35, 786, 94, 91, + /* 350 */ 679, 1090, 783, 782, 244, 245, 35, 786, 35, 35, + /* 360 */ 53, 52, 891, 782, 51, 50, 49, 179, 90, 243, + /* 370 */ 781, 241, 311, 308, 307, 1089, 983, 312, 320, 319, + /* 380 */ 781, 983, 78, 282, 722, 88, 882, 253, 71, 316, + /* 390 */ 249, 179, 246, 983, 315, 314, 257, 256, 80, 317, + /* 400 */ 68, 318, 322, 983, 81, 983, 983, 343, 342, 137, + /* 410 */ 143, 141, 140, 1, 167, 3, 180, 751, 752, 734, + /* 420 */ 742, 302, 743, 1054, 689, 784, 33, 215, 72, 147, + /* 430 */ 65, 264, 26, 704, 36, 285, 691, 264, 287, 690, + /* 440 */ 806, 787, 69, 596, 74, 36, 65, 216, 93, 65, + /* 450 */ 25, 25, 16, 25, 15, 288, 107, 198, 106, 18, + /* 460 */ 707, 17, 708, 199, 705, 20, 706, 19, 201, 113, + /* 470 */ 985, 112, 678, 22, 196, 21, 126, 125, 202, 203, + /* 480 */ 208, 209, 210, 207, 193, 1114, 1106, 1053, 227, 1050, + /* 490 */ 1049, 228, 321, 258, 144, 1006, 1017, 45, 1014, 1015, + /* 500 */ 1019, 999, 265, 1036, 146, 150, 981, 274, 1035, 163, + /* 510 */ 142, 269, 164, 157, 979, 733, 165, 224, 789, 263, + /* 520 */ 166, 153, 894, 283, 290, 43, 191, 271, 39, 299, + /* 530 */ 890, 306, 73, 278, 1113, 996, 70, 47, 104, 154, + /* 540 */ 155, 1112, 281, 1109, 170, 313, 1105, 110, 279, 156, + /* 550 */ 1104, 277, 158, 275, 273, 1101, 159, 171, 270, 912, + /* 560 */ 40, 37, 44, 192, 878, 120, 876, 122, 123, 874, + /* 570 */ 873, 250, 182, 871, 870, 869, 868, 867, 866, 185, + /* 580 */ 187, 863, 861, 859, 857, 189, 854, 190, 46, 79, + /* 590 */ 84, 272, 331, 1037, 115, 323, 324, 325, 326, 327, + /* 600 */ 328, 329, 214, 341, 234, 289, 831, 252, 251, 830, + /* 610 */ 211, 212, 254, 98, 99, 255, 829, 812, 811, 259, + /* 620 */ 10, 264, 872, 284, 133, 710, 174, 134, 173, 913, + /* 630 */ 172, 175, 177, 176, 135, 178, 865, 914, 864, 2, + /* 640 */ 136, 950, 856, 855, 82, 30, 4, 266, 160, 161, + /* 650 */ 162, 962, 85, 735, 148, 149, 738, 86, 226, 740, + /* 660 */ 87, 276, 31, 744, 151, 13, 11, 32, 12, 27, + /* 670 */ 28, 286, 96, 94, 642, 638, 636, 635, 634, 631, + /* 680 */ 601, 297, 100, 7, 303, 790, 788, 8, 304, 103, + /* 690 */ 105, 66, 67, 109, 111, 681, 680, 677, 623, 36, + /* 700 */ 621, 613, 619, 615, 617, 611, 609, 645, 644, 643, + /* 710 */ 641, 640, 639, 637, 633, 632, 181, 599, 565, 835, + /* 720 */ 563, 834, 834, 834, 834, 834, 834, 834, 834, 834, + /* 730 */ 834, 834, 138, 139, }; static const YYCODETYPE yy_lookahead[] = { - /* 0 */ 1, 33, 34, 76, 77, 37, 38, 39, 9, 62, - /* 10 */ 63, 64, 13, 14, 80, 16, 17, 126, 127, 20, - /* 20 */ 21, 81, 23, 24, 25, 26, 27, 28, 65, 66, - /* 30 */ 67, 91, 33, 34, 191, 192, 37, 38, 39, 13, - /* 40 */ 14, 0, 16, 17, 110, 111, 20, 21, 60, 23, - /* 50 */ 24, 25, 26, 27, 28, 5, 5, 7, 7, 33, - /* 60 */ 34, 80, 137, 37, 38, 39, 13, 14, 80, 16, - /* 70 */ 17, 146, 147, 20, 21, 60, 23, 24, 25, 26, - /* 80 */ 27, 28, 91, 240, 194, 201, 33, 34, 1, 108, - /* 90 */ 37, 38, 39, 37, 38, 39, 9, 81, 81, 256, - /* 100 */ 5, 13, 14, 59, 16, 17, 200, 81, 20, 21, - /* 110 */ 111, 23, 24, 25, 26, 27, 28, 233, 234, 235, - /* 120 */ 236, 33, 34, 91, 133, 37, 38, 39, 33, 34, - /* 130 */ 114, 114, 45, 46, 47, 48, 49, 50, 51, 52, - /* 140 */ 53, 54, 55, 56, 57, 58, 194, 14, 61, 16, - /* 150 */ 17, 261, 262, 20, 21, 194, 23, 24, 25, 26, - /* 160 */ 27, 28, 15, 131, 194, 259, 33, 34, 118, 118, - /* 170 */ 37, 38, 39, 16, 17, 269, 1, 20, 21, 200, - /* 180 */ 23, 24, 25, 26, 27, 28, 140, 200, 142, 237, - /* 190 */ 33, 34, 231, 241, 37, 38, 39, 215, 216, 217, - /* 200 */ 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - /* 210 */ 228, 229, 37, 194, 92, 93, 94, 95, 96, 97, - /* 220 */ 98, 99, 100, 101, 102, 103, 104, 105, 106, 1, - /* 230 */ 2, 1, 91, 5, 264, 7, 266, 9, 259, 9, - /* 240 */ 44, 25, 26, 27, 28, 140, 259, 142, 269, 33, - /* 250 */ 34, 91, 194, 37, 38, 39, 269, 61, 117, 112, - /* 260 */ 194, 33, 34, 83, 68, 37, 140, 80, 142, 73, - /* 270 */ 74, 75, 91, 1, 2, 79, 80, 5, 68, 7, - /* 280 */ 215, 9, 217, 218, 5, 266, 7, 222, 81, 224, - /* 290 */ 225, 226, 1, 228, 229, 237, 109, 21, 91, 241, - /* 300 */ 9, 202, 203, 237, 21, 33, 34, 241, 80, 113, - /* 310 */ 92, 2, 94, 95, 5, 194, 7, 99, 9, 101, - /* 320 */ 102, 103, 68, 105, 106, 5, 81, 7, 62, 63, - /* 330 */ 64, 140, 136, 142, 138, 69, 70, 71, 72, 194, - /* 340 */ 112, 145, 33, 34, 78, 194, 118, 80, 140, 139, - /* 350 */ 142, 141, 80, 143, 144, 37, 194, 62, 63, 64, - /* 360 */ 243, 194, 194, 135, 69, 70, 71, 72, 62, 63, - /* 370 */ 64, 80, 194, 194, 257, 69, 70, 71, 72, 194, - /* 380 */ 113, 140, 237, 142, 112, 0, 241, 266, 237, 268, - /* 390 */ 118, 81, 241, 139, 201, 141, 81, 143, 144, 237, - /* 400 */ 81, 91, 81, 241, 237, 237, 91, 135, 241, 241, - /* 410 */ 91, 194, 91, 81, 81, 237, 237, 81, 81, 241, - /* 420 */ 241, 112, 237, 91, 91, 81, 241, 91, 91, 236, - /* 430 */ 81, 197, 198, 201, 116, 91, 213, 214, 199, 199, - /* 440 */ 91, 199, 76, 204, 204, 194, 204, 194, 5, 240, - /* 450 */ 84, 238, 240, 238, 259, 242, 194, 242, 241, 238, - /* 460 */ 5, 193, 194, 242, 269, 256, 234, 82, 256, 5, - /* 470 */ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - /* 480 */ 5, 5, 5, 5, 5, 5, 58, 142, 142, 142, - /* 490 */ 239, 80, 142, 112, 81, 80, 76, 16, 16, 15, - /* 500 */ 83, 5, 5, 5, 5, 5, 76, 24, 110, 80, - /* 510 */ 9, 109, 80, 109, 80, 125, 91, 125, 91, 266, - /* 520 */ 80, 80, 260, 81, 1, 80, 91, 81, 80, 91, - /* 530 */ 81, 80, 114, 81, 80, 91, 115, 81, 80, 5, - /* 540 */ 137, 94, 5, 93, 148, 5, 5, 148, 5, 197, - /* 550 */ 202, 195, 60, 195, 214, 196, 195, 5, 196, 195, - /* 560 */ 230, 196, 205, 196, 195, 54, 107, 82, 208, 50, - /* 570 */ 207, 85, 195, 195, 87, 86, 88, 209, 206, 89, - /* 580 */ 210, 90, 211, 201, 82, 212, 195, 201, 195, 195, - /* 590 */ 247, 134, 250, 252, 132, 195, 245, 263, 263, 246, - /* 600 */ 195, 263, 248, 195, 230, 195, 251, 195, 194, 270, - /* 610 */ 194, 270, 119, 194, 120, 270, 121, 194, 194, 270, - /* 620 */ 194, 270, 270, 270, 249, 122, 118, 123, 240, 253, - /* 630 */ 124, 194, 270, 128, 254, 240, 129, 270, 255, 130, - /* 640 */ 270, 244, 263, 242, 270, 258, 240, 194, 270, 242, - /* 650 */ 270, 267, 270, 270, 194, 194, 267, 194, 270, 270, - /* 660 */ 270, 270, 270, 232, 242, 232, 270, 270, 232, 270, - /* 670 */ 270, 232, 270, 270, 270, 270, 270, 84, 270, 270, - /* 680 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - /* 690 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - /* 700 */ 270, 270, 270, 270, 194, 270, 194, 194, 194, 194, - /* 710 */ 194, 194, 194, 270, 194, 194, 194, 270, 194, 194, - /* 720 */ 194, 194, 194, 194, 194, 194, 194, 194, 270, 194, - /* 730 */ 194, 270, 194, 194, 270, 270, 194, 270, 194, 194, - /* 740 */ 194, 194, 194, 194, 194, 194, 270, 194, 194, 194, - /* 750 */ 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - /* 760 */ 194, 194, 194, 194, 270, 270, 270, 270, 270, 270, + /* 0 */ 259, 1, 194, 1, 193, 194, 259, 191, 192, 9, + /* 10 */ 1, 9, 259, 13, 14, 238, 16, 17, 9, 242, + /* 20 */ 20, 21, 269, 23, 24, 25, 26, 27, 28, 240, + /* 30 */ 240, 238, 238, 33, 34, 242, 242, 37, 38, 39, + /* 40 */ 13, 14, 194, 16, 17, 256, 256, 20, 21, 1, + /* 50 */ 23, 24, 25, 26, 27, 28, 240, 9, 194, 200, + /* 60 */ 33, 34, 200, 194, 37, 38, 39, 14, 260, 16, + /* 70 */ 17, 1, 256, 20, 21, 200, 23, 24, 25, 26, + /* 80 */ 27, 28, 80, 259, 80, 237, 33, 34, 194, 241, + /* 90 */ 37, 38, 39, 45, 46, 47, 48, 49, 50, 51, + /* 100 */ 52, 53, 54, 55, 56, 57, 58, 37, 81, 61, + /* 110 */ 201, 111, 13, 14, 194, 16, 17, 113, 259, 20, + /* 120 */ 21, 259, 23, 24, 25, 26, 27, 28, 269, 82, + /* 130 */ 266, 269, 33, 34, 259, 266, 37, 38, 39, 13, + /* 140 */ 14, 84, 16, 17, 269, 236, 20, 21, 5, 23, + /* 150 */ 24, 25, 26, 27, 28, 261, 262, 237, 194, 33, + /* 160 */ 34, 241, 194, 37, 38, 39, 92, 93, 94, 95, + /* 170 */ 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, + /* 180 */ 106, 215, 216, 217, 218, 219, 220, 221, 222, 223, + /* 190 */ 224, 225, 226, 227, 228, 229, 16, 17, 44, 231, + /* 200 */ 20, 21, 194, 23, 24, 25, 26, 27, 28, 37, + /* 210 */ 38, 39, 0, 33, 34, 61, 199, 37, 38, 39, + /* 220 */ 201, 204, 68, 194, 213, 214, 201, 73, 74, 75, + /* 230 */ 266, 60, 268, 79, 80, 259, 1, 2, 194, 5, + /* 240 */ 5, 7, 7, 194, 9, 237, 1, 2, 91, 241, + /* 250 */ 5, 80, 7, 234, 9, 62, 63, 64, 233, 234, + /* 260 */ 235, 236, 69, 70, 71, 72, 237, 113, 33, 34, + /* 270 */ 241, 78, 37, 92, 117, 94, 95, 194, 33, 34, + /* 280 */ 99, 237, 101, 102, 103, 241, 105, 106, 239, 76, + /* 290 */ 136, 81, 138, 215, 82, 217, 218, 84, 68, 145, + /* 300 */ 222, 91, 224, 225, 226, 37, 228, 229, 25, 26, + /* 310 */ 27, 28, 5, 194, 7, 80, 33, 34, 80, 68, + /* 320 */ 37, 38, 39, 2, 241, 80, 5, 259, 7, 194, + /* 330 */ 9, 62, 63, 64, 194, 62, 63, 64, 69, 70, + /* 340 */ 71, 72, 69, 70, 71, 72, 194, 112, 110, 111, + /* 350 */ 5, 259, 118, 118, 33, 34, 194, 112, 194, 194, + /* 360 */ 33, 34, 199, 118, 37, 38, 39, 204, 243, 139, + /* 370 */ 135, 141, 237, 143, 144, 259, 241, 237, 33, 34, + /* 380 */ 135, 241, 257, 264, 116, 266, 199, 137, 91, 237, + /* 390 */ 139, 204, 141, 241, 143, 144, 146, 147, 81, 237, + /* 400 */ 91, 237, 237, 241, 81, 241, 241, 65, 66, 67, + /* 410 */ 62, 63, 64, 202, 203, 197, 198, 126, 127, 81, + /* 420 */ 81, 15, 81, 232, 81, 118, 80, 259, 131, 91, + /* 430 */ 91, 114, 91, 112, 91, 81, 81, 114, 81, 81, + /* 440 */ 81, 81, 133, 81, 80, 91, 91, 259, 91, 91, + /* 450 */ 91, 91, 140, 91, 142, 109, 140, 259, 142, 140, + /* 460 */ 5, 142, 7, 259, 5, 140, 7, 142, 259, 140, + /* 470 */ 242, 142, 108, 140, 259, 142, 76, 77, 259, 259, + /* 480 */ 259, 259, 259, 259, 259, 242, 242, 232, 232, 232, + /* 490 */ 232, 232, 232, 194, 194, 194, 194, 258, 194, 194, + /* 500 */ 194, 240, 240, 267, 194, 194, 240, 194, 267, 244, + /* 510 */ 60, 263, 194, 250, 194, 118, 194, 263, 112, 195, + /* 520 */ 194, 254, 194, 124, 194, 194, 194, 263, 194, 194, + /* 530 */ 194, 194, 130, 263, 194, 255, 132, 129, 194, 253, + /* 540 */ 252, 194, 128, 194, 194, 194, 194, 194, 123, 251, + /* 550 */ 194, 122, 249, 121, 120, 194, 248, 194, 119, 194, + /* 560 */ 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, + /* 570 */ 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, + /* 580 */ 194, 194, 194, 194, 194, 194, 194, 194, 134, 195, + /* 590 */ 195, 195, 107, 195, 90, 89, 50, 86, 88, 54, + /* 600 */ 87, 85, 195, 82, 195, 195, 5, 5, 148, 5, + /* 610 */ 195, 195, 148, 201, 201, 5, 5, 94, 93, 137, + /* 620 */ 80, 114, 195, 109, 196, 81, 206, 196, 210, 212, + /* 630 */ 211, 209, 208, 207, 196, 205, 195, 214, 195, 202, + /* 640 */ 196, 230, 195, 195, 115, 80, 197, 91, 247, 246, + /* 650 */ 245, 230, 91, 81, 80, 91, 81, 80, 1, 81, + /* 660 */ 80, 80, 91, 81, 80, 80, 125, 91, 125, 80, + /* 670 */ 80, 109, 76, 110, 9, 5, 5, 5, 5, 5, + /* 680 */ 83, 15, 76, 80, 24, 112, 81, 80, 58, 142, + /* 690 */ 142, 16, 16, 142, 142, 5, 5, 81, 5, 91, + /* 700 */ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + /* 710 */ 5, 5, 5, 5, 5, 5, 91, 83, 60, 0, + /* 720 */ 59, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 730 */ 270, 270, 21, 21, 270, 270, 270, 270, 270, 270, + /* 740 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 750 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 760 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, /* 770 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, /* 780 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, /* 790 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - /* 800 */ 270, 270, 232, 232, 232, 270, 270, 270, 270, 270, + /* 800 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, /* 810 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, /* 820 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - /* 830 */ 270, 270, 259, 259, 259, 259, 259, 259, 259, 259, - /* 840 */ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259, - /* 850 */ 259, 259, + /* 830 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 840 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 850 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 860 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 870 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 880 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 890 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 900 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 910 */ 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, + /* 920 */ 270, 270, 270, 270, }; -#define YY_SHIFT_USE_DFLT (-110) -#define YY_SHIFT_COUNT (346) -#define YY_SHIFT_MIN (-109) -#define YY_SHIFT_MAX (593) -static const short yy_shift_ofst[] = { - /* 0 */ 196, 122, 122, 218, 218, 502, 228, 272, 272, 291, - /* 10 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 20 */ 230, 230, 230, -1, 87, 272, 309, 309, 309, 267, - /* 30 */ 267, 230, 230, 230, 385, 230, 230, 366, 502, 593, - /* 40 */ 593, 552, -110, -110, -110, 272, 272, 272, 272, 272, - /* 50 */ 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, - /* 60 */ 272, 272, 272, 272, 272, 309, 309, 309, 95, 95, - /* 70 */ 95, 95, 95, 95, 95, 230, 230, 230, 318, 230, - /* 80 */ 230, 230, 267, 267, 230, 230, 230, 230, -109, -109, - /* 90 */ 141, 267, 230, 230, 230, 230, 230, 230, 230, 230, - /* 100 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 110 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 120 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 130 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - /* 140 */ 230, 230, 230, 230, 492, 492, 492, 508, 508, 508, - /* 150 */ 492, 508, 492, 509, 462, 507, 506, 505, 504, 503, - /* 160 */ 495, 494, 493, 457, 492, 492, 492, 459, 502, 502, - /* 170 */ 492, 492, 491, 490, 519, 489, 488, 511, 487, 486, - /* 180 */ 459, 552, 492, 485, 485, 492, 485, 492, 485, 492, - /* 190 */ 492, -110, -110, 26, 53, 53, 88, 53, 133, 157, - /* 200 */ 216, 216, 216, 216, 266, 306, 295, -32, -32, -32, - /* 210 */ -32, 254, 210, -75, -66, 56, 56, 51, 50, -37, - /* 220 */ -53, 349, 17, 16, 344, 337, 336, -9, 32, 333, - /* 230 */ 332, 321, 319, 315, 187, 310, 207, 175, -12, 147, - /* 240 */ -60, 241, 208, 191, 320, 279, 126, 105, -19, 46, - /* 250 */ -73, 543, 399, 541, 540, 396, 537, 534, 447, 450, - /* 260 */ 403, 418, 404, 458, 421, 456, 454, 444, 438, 452, - /* 270 */ 451, 449, 435, 448, 446, 445, 523, 441, 442, 440, - /* 280 */ 427, 392, 425, 390, 434, 404, 432, 402, 429, 398, - /* 290 */ 430, 501, 500, 499, 498, 497, 496, 417, 484, 420, - /* 300 */ 415, 413, 381, 411, 483, 428, 482, 350, 347, 181, - /* 310 */ 181, 181, 181, 481, 346, 345, 181, 181, 181, 480, - /* 320 */ 479, 245, 181, 478, 477, 476, 475, 474, 473, 472, - /* 330 */ 471, 470, 469, 468, 467, 466, 465, 464, 455, 443, - /* 340 */ 160, 180, 283, 276, 15, 44, 41, +#define YY_SHIFT_COUNT (346) +#define YY_SHIFT_MIN (0) +#define YY_SHIFT_MAX (719) +static const unsigned short int yy_shift_ofst[] = { + /* 0 */ 154, 74, 74, 181, 181, 47, 235, 245, 245, 2, + /* 10 */ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + /* 20 */ 9, 9, 9, 0, 48, 245, 321, 321, 321, 4, + /* 30 */ 4, 9, 9, 9, 212, 9, 9, 213, 47, 57, + /* 40 */ 57, 143, 734, 734, 734, 245, 245, 245, 245, 245, + /* 50 */ 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, + /* 60 */ 245, 245, 245, 245, 245, 321, 321, 321, 345, 345, + /* 70 */ 345, 345, 345, 345, 345, 9, 9, 9, 268, 9, + /* 80 */ 9, 9, 4, 4, 9, 9, 9, 9, 291, 291, + /* 90 */ 157, 4, 9, 9, 9, 9, 9, 9, 9, 9, + /* 100 */ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + /* 110 */ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + /* 120 */ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + /* 130 */ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + /* 140 */ 9, 9, 9, 9, 450, 450, 450, 397, 397, 397, + /* 150 */ 450, 397, 450, 402, 404, 408, 399, 414, 425, 429, + /* 160 */ 432, 434, 439, 454, 450, 450, 450, 485, 47, 47, + /* 170 */ 450, 450, 504, 506, 546, 511, 510, 545, 513, 516, + /* 180 */ 485, 143, 450, 521, 521, 450, 521, 450, 521, 450, + /* 190 */ 450, 734, 734, 27, 99, 99, 126, 99, 53, 180, + /* 200 */ 283, 283, 283, 283, 193, 269, 273, 327, 327, 327, + /* 210 */ 327, 230, 251, 250, 238, 172, 172, 234, 307, 342, + /* 220 */ 348, 210, 317, 323, 338, 339, 341, 309, 297, 343, + /* 230 */ 354, 355, 357, 358, 346, 359, 360, 70, 171, 406, + /* 240 */ 362, 312, 316, 319, 455, 459, 325, 329, 364, 333, + /* 250 */ 400, 601, 460, 602, 604, 464, 610, 611, 523, 525, + /* 260 */ 482, 507, 514, 540, 529, 544, 565, 556, 561, 572, + /* 270 */ 574, 575, 564, 577, 578, 580, 657, 581, 582, 584, + /* 280 */ 571, 541, 576, 543, 585, 514, 589, 562, 590, 563, + /* 290 */ 596, 665, 670, 671, 672, 673, 674, 597, 666, 606, + /* 300 */ 603, 605, 573, 607, 660, 630, 675, 547, 548, 608, + /* 310 */ 608, 608, 608, 676, 551, 552, 608, 608, 608, 690, + /* 320 */ 691, 616, 608, 693, 695, 696, 697, 698, 699, 700, + /* 330 */ 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, + /* 340 */ 625, 634, 711, 712, 658, 661, 719, }; -#define YY_REDUCE_USE_DFLT (-158) #define YY_REDUCE_COUNT (192) -#define YY_REDUCE_MIN (-157) -#define YY_REDUCE_MAX (592) +#define YY_REDUCE_MIN (-259) +#define YY_REDUCE_MAX (449) static const short yy_reduce_ofst[] = { - /* 0 */ -157, -18, -18, 65, 65, -116, -13, -21, -94, -110, - /* 10 */ 185, 121, -30, 179, 178, 168, 167, 162, 151, 145, - /* 20 */ 66, 58, -48, 262, 268, 195, 221, 215, 213, 212, - /* 30 */ 209, 253, 19, 251, 193, -39, 217, 242, 232, 240, - /* 40 */ 239, 223, 117, 99, 234, 592, 591, 590, 589, 588, - /* 50 */ 587, 586, 585, 584, 583, 582, 581, 580, 579, 578, - /* 60 */ 577, 576, 575, 574, 573, 422, 407, 401, 572, 571, - /* 70 */ 570, 439, 436, 433, 431, 569, 568, 567, 387, 566, - /* 80 */ 565, 564, 406, 395, 563, 562, 561, 560, 389, 384, - /* 90 */ 397, 388, 559, 558, 557, 556, 555, 554, 553, 551, - /* 100 */ 550, 549, 548, 547, 546, 545, 544, 542, 539, 538, - /* 110 */ 536, 535, 533, 532, 531, 530, 529, 528, 527, 526, - /* 120 */ 525, 524, 522, 521, 520, 518, 517, 516, 515, 514, - /* 130 */ 513, 512, 510, 463, 461, 460, 453, 437, 426, 424, - /* 140 */ 423, 419, 416, 414, 412, 410, 408, 379, 338, 335, - /* 150 */ 405, 334, 400, 383, 380, 376, 341, 355, 342, 375, - /* 160 */ 354, 343, 353, 351, 394, 393, 391, 374, 386, 382, - /* 170 */ 378, 377, 373, 371, 370, 372, 368, 363, 360, 357, - /* 180 */ 330, 340, 369, 367, 365, 364, 362, 361, 359, 358, - /* 190 */ 356, 348, 352, + /* 0 */ -184, -34, -34, 78, 78, 25, -141, -138, -125, -106, + /* 10 */ -152, -36, 119, -80, 8, 29, 44, 135, 140, 152, + /* 20 */ 162, 164, 165, -192, -189, -247, -223, -207, -206, -211, + /* 30 */ -210, -136, -131, 49, -91, -32, 83, 17, 19, 163, + /* 40 */ 187, 11, 125, 211, 218, -259, -253, -176, -24, 68, + /* 50 */ 92, 116, 168, 188, 198, 204, 209, 215, 219, 220, + /* 60 */ 221, 222, 223, 224, 225, 228, 243, 244, 191, 255, + /* 70 */ 256, 257, 258, 259, 260, 299, 300, 301, 239, 302, + /* 80 */ 304, 305, 261, 262, 306, 310, 311, 313, 236, 241, + /* 90 */ 265, 266, 318, 320, 322, 326, 328, 330, 331, 332, + /* 100 */ 334, 335, 336, 337, 340, 344, 347, 349, 350, 351, + /* 110 */ 352, 353, 356, 361, 363, 365, 366, 367, 368, 369, + /* 120 */ 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, + /* 130 */ 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, + /* 140 */ 390, 391, 392, 393, 324, 394, 395, 248, 254, 264, + /* 150 */ 396, 270, 398, 280, 267, 286, 288, 298, 263, 303, + /* 160 */ 308, 401, 403, 405, 407, 409, 410, 411, 412, 413, + /* 170 */ 415, 416, 417, 419, 418, 420, 422, 426, 424, 430, + /* 180 */ 421, 423, 427, 428, 431, 441, 438, 443, 444, 447, + /* 190 */ 448, 437, 449, }; static const YYACTIONTYPE yy_default[] = { - /* 0 */ 832, 662, 605, 674, 592, 602, 810, 810, 810, 832, + /* 0 */ 832, 949, 892, 961, 879, 889, 1097, 1097, 1097, 832, /* 10 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 20 */ 832, 832, 832, 721, 564, 810, 832, 832, 832, 832, - /* 30 */ 832, 832, 832, 832, 602, 832, 832, 608, 602, 608, - /* 40 */ 608, 832, 716, 646, 664, 832, 832, 832, 832, 832, + /* 20 */ 832, 832, 832, 1008, 851, 1097, 832, 832, 832, 832, + /* 30 */ 832, 832, 832, 832, 889, 832, 832, 895, 889, 895, + /* 40 */ 895, 832, 1003, 933, 951, 832, 832, 832, 832, 832, /* 50 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, /* 60 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 70 */ 832, 832, 832, 832, 832, 832, 832, 832, 723, 729, - /* 80 */ 726, 832, 832, 832, 731, 832, 832, 832, 753, 753, - /* 90 */ 714, 832, 832, 832, 832, 832, 832, 832, 832, 832, + /* 70 */ 832, 832, 832, 832, 832, 832, 832, 832, 1010, 1016, + /* 80 */ 1013, 832, 832, 832, 1018, 832, 832, 832, 1040, 1040, + /* 90 */ 1001, 832, 832, 832, 832, 832, 832, 832, 832, 832, /* 100 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, /* 110 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 120 */ 590, 832, 588, 832, 832, 832, 832, 832, 832, 832, - /* 130 */ 832, 832, 832, 832, 832, 832, 832, 575, 832, 832, - /* 140 */ 832, 832, 832, 832, 566, 566, 566, 832, 832, 832, - /* 150 */ 566, 832, 566, 760, 764, 758, 746, 754, 745, 741, - /* 160 */ 739, 737, 736, 768, 566, 566, 566, 606, 602, 602, - /* 170 */ 566, 566, 624, 622, 620, 612, 618, 614, 616, 610, - /* 180 */ 593, 832, 566, 600, 600, 566, 600, 566, 600, 566, - /* 190 */ 566, 646, 664, 832, 769, 759, 832, 809, 799, 798, - /* 200 */ 805, 797, 796, 795, 832, 832, 832, 791, 794, 793, - /* 210 */ 792, 832, 832, 832, 832, 801, 800, 832, 832, 832, - /* 220 */ 832, 832, 832, 832, 832, 832, 832, 765, 761, 832, - /* 230 */ 832, 832, 832, 832, 832, 832, 832, 832, 771, 832, - /* 240 */ 832, 832, 832, 832, 832, 832, 832, 832, 676, 832, + /* 120 */ 877, 832, 875, 832, 832, 832, 832, 832, 832, 832, + /* 130 */ 832, 832, 832, 832, 832, 832, 832, 862, 832, 832, + /* 140 */ 832, 832, 832, 832, 853, 853, 853, 832, 832, 832, + /* 150 */ 853, 832, 853, 1047, 1051, 1045, 1033, 1041, 1032, 1028, + /* 160 */ 1026, 1024, 1023, 1055, 853, 853, 853, 893, 889, 889, + /* 170 */ 853, 853, 911, 909, 907, 899, 905, 901, 903, 897, + /* 180 */ 880, 832, 853, 887, 887, 853, 887, 853, 887, 853, + /* 190 */ 853, 933, 951, 832, 1056, 1046, 832, 1096, 1086, 1085, + /* 200 */ 1092, 1084, 1083, 1082, 832, 832, 832, 1078, 1081, 1080, + /* 210 */ 1079, 832, 832, 832, 832, 1088, 1087, 832, 832, 832, + /* 220 */ 832, 832, 832, 832, 832, 832, 832, 1052, 1048, 832, + /* 230 */ 832, 832, 832, 832, 832, 832, 832, 832, 1058, 832, + /* 240 */ 832, 832, 832, 832, 832, 832, 832, 832, 963, 832, /* 250 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 260 */ 832, 713, 832, 832, 832, 832, 832, 725, 724, 832, + /* 260 */ 832, 1000, 832, 832, 832, 832, 832, 1012, 1011, 832, /* 270 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 280 */ 755, 832, 747, 832, 832, 688, 832, 832, 832, 832, + /* 280 */ 1042, 832, 1034, 832, 832, 975, 832, 832, 832, 832, /* 290 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 300 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 828, - /* 310 */ 823, 824, 821, 832, 832, 832, 820, 815, 816, 832, - /* 320 */ 832, 832, 813, 832, 832, 832, 832, 832, 832, 832, + /* 300 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 1115, + /* 310 */ 1110, 1111, 1108, 832, 832, 832, 1107, 1102, 1103, 832, + /* 320 */ 832, 832, 1100, 832, 832, 832, 832, 832, 832, 832, /* 330 */ 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, - /* 340 */ 630, 832, 573, 571, 832, 562, 832, 831, 830, 829, - /* 350 */ 812, 811, 684, 722, 718, 720, 719, 717, 730, 727, - /* 360 */ 728, 712, 711, 710, 732, 715, 735, 734, 738, 740, - /* 370 */ 743, 742, 744, 733, 757, 756, 749, 750, 752, 751, - /* 380 */ 748, 767, 766, 763, 762, 709, 694, 689, 686, 693, - /* 390 */ 692, 691, 699, 698, 690, 687, 683, 682, 607, 663, - /* 400 */ 661, 660, 659, 658, 657, 656, 655, 654, 653, 652, - /* 410 */ 651, 650, 649, 648, 647, 642, 638, 636, 635, 634, - /* 420 */ 631, 601, 604, 603, 807, 808, 806, 804, 803, 802, - /* 430 */ 788, 787, 786, 785, 782, 781, 780, 777, 783, 779, - /* 440 */ 776, 784, 778, 775, 774, 773, 772, 790, 789, 770, - /* 450 */ 596, 827, 826, 825, 822, 819, 708, 707, 706, 705, - /* 460 */ 704, 703, 702, 701, 700, 818, 817, 814, 696, 697, - /* 470 */ 678, 681, 680, 679, 677, 695, 626, 625, 623, 621, - /* 480 */ 613, 619, 615, 617, 611, 609, 595, 594, 675, 645, - /* 490 */ 673, 672, 671, 670, 669, 668, 667, 666, 665, 644, - /* 500 */ 643, 641, 640, 639, 637, 633, 632, 628, 629, 627, - /* 510 */ 591, 589, 587, 586, 585, 584, 583, 582, 581, 580, - /* 520 */ 579, 578, 599, 577, 576, 574, 572, 570, 569, 568, - /* 530 */ 598, 597, 567, 565, 563, 561, 560, 559, 558, 557, - /* 540 */ 556, 555, 554, 553, 552, 551, 550, 549, + /* 340 */ 917, 832, 860, 858, 832, 849, 832, }; +/********** End of lemon-generated parsing tables *****************************/ -/* The next table maps tokens into fallback tokens. If a construct -** like the following: +/* The next table maps tokens (terminal symbols) into fallback tokens. +** If a construct like the following: ** ** %fallback ID X Y Z. ** @@ -478,6 +489,10 @@ static const YYACTIONTYPE yy_default[] = { ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. +** +** This feature can be used, for example, to cause some keywords in a language +** to revert to identifiers if they keyword does not apply in the context where +** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { @@ -685,9 +700,13 @@ static const YYCODETYPE yyFallback[] = { ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. +** +** After the "shift" half of a SHIFTREDUCE action, the stateno field +** actually contains the reduce action for the second half of the +** SHIFTREDUCE. */ struct yyStackEntry { - YYACTIONTYPE stateno; /* The state-number */ + YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This @@ -698,17 +717,21 @@ typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { - int yyidx; /* Index of top element in stack */ + yyStackEntry *yytos; /* Pointer to top element of the stack */ #ifdef YYTRACKMAXSTACKDEPTH - int yyidxMax; /* Maximum value of yyidx */ + int yyhwm; /* High-water mark of the stack */ #endif +#ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ +#endif ParseARG_SDECL /* A place to hold %extra_argument */ #if YYSTACKDEPTH<=0 int yystksz; /* Current side of the stack */ yyStackEntry *yystack; /* The parser's stack */ + yyStackEntry yystk0; /* First stack entry */ #else yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ + yyStackEntry *yystackEnd; /* Last entry in the stack */ #endif }; typedef struct yyParser yyParser; @@ -745,80 +768,282 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ } #endif /* NDEBUG */ -#ifndef NDEBUG +#if defined(YYCOVERAGE) || !defined(NDEBUG) /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *const yyTokenName[] = { - "$", "ID", "BOOL", "TINYINT", - "SMALLINT", "INTEGER", "BIGINT", "FLOAT", - "DOUBLE", "STRING", "TIMESTAMP", "BINARY", - "NCHAR", "OR", "AND", "NOT", - "EQ", "NE", "ISNULL", "NOTNULL", - "IS", "LIKE", "GLOB", "BETWEEN", - "IN", "GT", "GE", "LT", - "LE", "BITAND", "BITOR", "LSHIFT", - "RSHIFT", "PLUS", "MINUS", "DIVIDE", - "TIMES", "STAR", "SLASH", "REM", - "CONCAT", "UMINUS", "UPLUS", "BITNOT", - "SHOW", "DATABASES", "TOPICS", "MNODES", - "DNODES", "ACCOUNTS", "USERS", "MODULES", - "QUERIES", "CONNECTIONS", "STREAMS", "VARIABLES", - "SCORES", "GRANTS", "VNODES", "IPTOKEN", - "DOT", "CREATE", "TABLE", "STABLE", - "DATABASE", "TABLES", "STABLES", "VGROUPS", - "DROP", "TOPIC", "DNODE", "USER", - "ACCOUNT", "USE", "DESCRIBE", "ALTER", - "PASS", "PRIVILEGE", "LOCAL", "COMPACT", - "LP", "RP", "IF", "EXISTS", - "PPS", "TSERIES", "DBS", "STORAGE", - "QTIME", "CONNS", "STATE", "COMMA", - "KEEP", "CACHE", "REPLICA", "QUORUM", - "DAYS", "MINROWS", "MAXROWS", "BLOCKS", - "CTIME", "WAL", "FSYNC", "COMP", - "PRECISION", "UPDATE", "CACHELAST", "PARTITIONS", - "UNSIGNED", "TAGS", "USING", "AS", - "NULL", "SELECT", "UNION", "ALL", - "DISTINCT", "FROM", "VARIABLE", "INTERVAL", - "SESSION", "STATE_WINDOW", "FILL", "SLIDING", - "ORDER", "BY", "ASC", "DESC", - "GROUP", "HAVING", "LIMIT", "OFFSET", - "SLIMIT", "SOFFSET", "WHERE", "NOW", - "RESET", "QUERY", "SYNCDB", "ADD", - "COLUMN", "MODIFY", "TAG", "CHANGE", - "SET", "KILL", "CONNECTION", "STREAM", - "COLON", "ABORT", "AFTER", "ATTACH", - "BEFORE", "BEGIN", "CASCADE", "CLUSTER", - "CONFLICT", "COPY", "DEFERRED", "DELIMITERS", - "DETACH", "EACH", "END", "EXPLAIN", - "FAIL", "FOR", "IGNORE", "IMMEDIATE", - "INITIALLY", "INSTEAD", "MATCH", "KEY", - "OF", "RAISE", "REPLACE", "RESTRICT", - "ROW", "STATEMENT", "TRIGGER", "VIEW", - "SEMI", "NONE", "PREV", "LINEAR", - "IMPORT", "TBNAME", "JOIN", "INSERT", - "INTO", "VALUES", "error", "program", - "cmd", "dbPrefix", "ids", "cpxName", - "ifexists", "alter_db_optr", "alter_topic_optr", "acct_optr", - "exprlist", "ifnotexists", "db_optr", "topic_optr", - "pps", "tseries", "dbs", "streams", - "storage", "qtime", "users", "conns", - "state", "intitemlist", "intitem", "keep", - "cache", "replica", "quorum", "days", - "minrows", "maxrows", "blocks", "ctime", - "wal", "fsync", "comp", "prec", - "update", "cachelast", "partitions", "typename", - "signed", "create_table_args", "create_stable_args", "create_table_list", - "create_from_stable", "columnlist", "tagitemlist", "tagNamelist", - "select", "column", "tagitem", "selcollist", - "from", "where_opt", "interval_opt", "session_option", - "windowstate_option", "fill_opt", "sliding_opt", "groupby_opt", - "orderby_opt", "having_opt", "slimit_opt", "limit_opt", - "union", "sclp", "distinct", "expr", - "as", "tablelist", "sub", "tmvar", - "sortlist", "sortitem", "item", "sortorder", - "grouplist", "expritem", + /* 0 */ "$", + /* 1 */ "ID", + /* 2 */ "BOOL", + /* 3 */ "TINYINT", + /* 4 */ "SMALLINT", + /* 5 */ "INTEGER", + /* 6 */ "BIGINT", + /* 7 */ "FLOAT", + /* 8 */ "DOUBLE", + /* 9 */ "STRING", + /* 10 */ "TIMESTAMP", + /* 11 */ "BINARY", + /* 12 */ "NCHAR", + /* 13 */ "OR", + /* 14 */ "AND", + /* 15 */ "NOT", + /* 16 */ "EQ", + /* 17 */ "NE", + /* 18 */ "ISNULL", + /* 19 */ "NOTNULL", + /* 20 */ "IS", + /* 21 */ "LIKE", + /* 22 */ "GLOB", + /* 23 */ "BETWEEN", + /* 24 */ "IN", + /* 25 */ "GT", + /* 26 */ "GE", + /* 27 */ "LT", + /* 28 */ "LE", + /* 29 */ "BITAND", + /* 30 */ "BITOR", + /* 31 */ "LSHIFT", + /* 32 */ "RSHIFT", + /* 33 */ "PLUS", + /* 34 */ "MINUS", + /* 35 */ "DIVIDE", + /* 36 */ "TIMES", + /* 37 */ "STAR", + /* 38 */ "SLASH", + /* 39 */ "REM", + /* 40 */ "CONCAT", + /* 41 */ "UMINUS", + /* 42 */ "UPLUS", + /* 43 */ "BITNOT", + /* 44 */ "SHOW", + /* 45 */ "DATABASES", + /* 46 */ "TOPICS", + /* 47 */ "MNODES", + /* 48 */ "DNODES", + /* 49 */ "ACCOUNTS", + /* 50 */ "USERS", + /* 51 */ "MODULES", + /* 52 */ "QUERIES", + /* 53 */ "CONNECTIONS", + /* 54 */ "STREAMS", + /* 55 */ "VARIABLES", + /* 56 */ "SCORES", + /* 57 */ "GRANTS", + /* 58 */ "VNODES", + /* 59 */ "IPTOKEN", + /* 60 */ "DOT", + /* 61 */ "CREATE", + /* 62 */ "TABLE", + /* 63 */ "STABLE", + /* 64 */ "DATABASE", + /* 65 */ "TABLES", + /* 66 */ "STABLES", + /* 67 */ "VGROUPS", + /* 68 */ "DROP", + /* 69 */ "TOPIC", + /* 70 */ "DNODE", + /* 71 */ "USER", + /* 72 */ "ACCOUNT", + /* 73 */ "USE", + /* 74 */ "DESCRIBE", + /* 75 */ "ALTER", + /* 76 */ "PASS", + /* 77 */ "PRIVILEGE", + /* 78 */ "LOCAL", + /* 79 */ "COMPACT", + /* 80 */ "LP", + /* 81 */ "RP", + /* 82 */ "IF", + /* 83 */ "EXISTS", + /* 84 */ "PPS", + /* 85 */ "TSERIES", + /* 86 */ "DBS", + /* 87 */ "STORAGE", + /* 88 */ "QTIME", + /* 89 */ "CONNS", + /* 90 */ "STATE", + /* 91 */ "COMMA", + /* 92 */ "KEEP", + /* 93 */ "CACHE", + /* 94 */ "REPLICA", + /* 95 */ "QUORUM", + /* 96 */ "DAYS", + /* 97 */ "MINROWS", + /* 98 */ "MAXROWS", + /* 99 */ "BLOCKS", + /* 100 */ "CTIME", + /* 101 */ "WAL", + /* 102 */ "FSYNC", + /* 103 */ "COMP", + /* 104 */ "PRECISION", + /* 105 */ "UPDATE", + /* 106 */ "CACHELAST", + /* 107 */ "PARTITIONS", + /* 108 */ "UNSIGNED", + /* 109 */ "TAGS", + /* 110 */ "USING", + /* 111 */ "AS", + /* 112 */ "NULL", + /* 113 */ "SELECT", + /* 114 */ "UNION", + /* 115 */ "ALL", + /* 116 */ "DISTINCT", + /* 117 */ "FROM", + /* 118 */ "VARIABLE", + /* 119 */ "INTERVAL", + /* 120 */ "SESSION", + /* 121 */ "STATE_WINDOW", + /* 122 */ "FILL", + /* 123 */ "SLIDING", + /* 124 */ "ORDER", + /* 125 */ "BY", + /* 126 */ "ASC", + /* 127 */ "DESC", + /* 128 */ "GROUP", + /* 129 */ "HAVING", + /* 130 */ "LIMIT", + /* 131 */ "OFFSET", + /* 132 */ "SLIMIT", + /* 133 */ "SOFFSET", + /* 134 */ "WHERE", + /* 135 */ "NOW", + /* 136 */ "RESET", + /* 137 */ "QUERY", + /* 138 */ "SYNCDB", + /* 139 */ "ADD", + /* 140 */ "COLUMN", + /* 141 */ "MODIFY", + /* 142 */ "TAG", + /* 143 */ "CHANGE", + /* 144 */ "SET", + /* 145 */ "KILL", + /* 146 */ "CONNECTION", + /* 147 */ "STREAM", + /* 148 */ "COLON", + /* 149 */ "ABORT", + /* 150 */ "AFTER", + /* 151 */ "ATTACH", + /* 152 */ "BEFORE", + /* 153 */ "BEGIN", + /* 154 */ "CASCADE", + /* 155 */ "CLUSTER", + /* 156 */ "CONFLICT", + /* 157 */ "COPY", + /* 158 */ "DEFERRED", + /* 159 */ "DELIMITERS", + /* 160 */ "DETACH", + /* 161 */ "EACH", + /* 162 */ "END", + /* 163 */ "EXPLAIN", + /* 164 */ "FAIL", + /* 165 */ "FOR", + /* 166 */ "IGNORE", + /* 167 */ "IMMEDIATE", + /* 168 */ "INITIALLY", + /* 169 */ "INSTEAD", + /* 170 */ "MATCH", + /* 171 */ "KEY", + /* 172 */ "OF", + /* 173 */ "RAISE", + /* 174 */ "REPLACE", + /* 175 */ "RESTRICT", + /* 176 */ "ROW", + /* 177 */ "STATEMENT", + /* 178 */ "TRIGGER", + /* 179 */ "VIEW", + /* 180 */ "SEMI", + /* 181 */ "NONE", + /* 182 */ "PREV", + /* 183 */ "LINEAR", + /* 184 */ "IMPORT", + /* 185 */ "TBNAME", + /* 186 */ "JOIN", + /* 187 */ "INSERT", + /* 188 */ "INTO", + /* 189 */ "VALUES", + /* 190 */ "error", + /* 191 */ "program", + /* 192 */ "cmd", + /* 193 */ "dbPrefix", + /* 194 */ "ids", + /* 195 */ "cpxName", + /* 196 */ "ifexists", + /* 197 */ "alter_db_optr", + /* 198 */ "alter_topic_optr", + /* 199 */ "acct_optr", + /* 200 */ "exprlist", + /* 201 */ "ifnotexists", + /* 202 */ "db_optr", + /* 203 */ "topic_optr", + /* 204 */ "pps", + /* 205 */ "tseries", + /* 206 */ "dbs", + /* 207 */ "streams", + /* 208 */ "storage", + /* 209 */ "qtime", + /* 210 */ "users", + /* 211 */ "conns", + /* 212 */ "state", + /* 213 */ "intitemlist", + /* 214 */ "intitem", + /* 215 */ "keep", + /* 216 */ "cache", + /* 217 */ "replica", + /* 218 */ "quorum", + /* 219 */ "days", + /* 220 */ "minrows", + /* 221 */ "maxrows", + /* 222 */ "blocks", + /* 223 */ "ctime", + /* 224 */ "wal", + /* 225 */ "fsync", + /* 226 */ "comp", + /* 227 */ "prec", + /* 228 */ "update", + /* 229 */ "cachelast", + /* 230 */ "partitions", + /* 231 */ "typename", + /* 232 */ "signed", + /* 233 */ "create_table_args", + /* 234 */ "create_stable_args", + /* 235 */ "create_table_list", + /* 236 */ "create_from_stable", + /* 237 */ "columnlist", + /* 238 */ "tagitemlist", + /* 239 */ "tagNamelist", + /* 240 */ "select", + /* 241 */ "column", + /* 242 */ "tagitem", + /* 243 */ "selcollist", + /* 244 */ "from", + /* 245 */ "where_opt", + /* 246 */ "interval_opt", + /* 247 */ "session_option", + /* 248 */ "windowstate_option", + /* 249 */ "fill_opt", + /* 250 */ "sliding_opt", + /* 251 */ "groupby_opt", + /* 252 */ "orderby_opt", + /* 253 */ "having_opt", + /* 254 */ "slimit_opt", + /* 255 */ "limit_opt", + /* 256 */ "union", + /* 257 */ "sclp", + /* 258 */ "distinct", + /* 259 */ "expr", + /* 260 */ "as", + /* 261 */ "tablelist", + /* 262 */ "sub", + /* 263 */ "tmvar", + /* 264 */ "sortlist", + /* 265 */ "sortitem", + /* 266 */ "item", + /* 267 */ "sortorder", + /* 268 */ "grouplist", + /* 269 */ "expritem", }; -#endif /* NDEBUG */ +#endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. @@ -1114,27 +1339,74 @@ static const char *const yyRuleName[] = { #if YYSTACKDEPTH<=0 /* -** Try to increase the size of the parser stack. +** Try to increase the size of the parser stack. Return the number +** of errors. Return 0 on success. */ -static void yyGrowStack(yyParser *p){ +static int yyGrowStack(yyParser *p){ int newSize; + int idx; yyStackEntry *pNew; newSize = p->yystksz*2 + 100; - pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); + idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; + if( p->yystack==&p->yystk0 ){ + pNew = malloc(newSize*sizeof(pNew[0])); + if( pNew ) pNew[0] = p->yystk0; + }else{ + pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); + } if( pNew ){ p->yystack = pNew; - p->yystksz = newSize; + p->yytos = &p->yystack[idx]; #ifndef NDEBUG if( yyTraceFILE ){ - fprintf(yyTraceFILE,"%sStack grows to %d entries!\n", - yyTracePrompt, p->yystksz); + fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", + yyTracePrompt, p->yystksz, newSize); } #endif + p->yystksz = newSize; } + return pNew==0; } #endif +/* Datatype of the argument to the memory allocated passed as the +** second argument to ParseAlloc() below. This can be changed by +** putting an appropriate #define in the %include section of the input +** grammar. +*/ +#ifndef YYMALLOCARGTYPE +# define YYMALLOCARGTYPE size_t +#endif + +/* Initialize a new parser that has already been allocated. +*/ +void ParseInit(void *yypParser){ + yyParser *pParser = (yyParser*)yypParser; +#ifdef YYTRACKMAXSTACKDEPTH + pParser->yyhwm = 0; +#endif +#if YYSTACKDEPTH<=0 + pParser->yytos = NULL; + pParser->yystack = NULL; + pParser->yystksz = 0; + if( yyGrowStack(pParser) ){ + pParser->yystack = &pParser->yystk0; + pParser->yystksz = 1; + } +#endif +#ifndef YYNOERRORRECOVERY + pParser->yyerrcnt = -1; +#endif + pParser->yytos = pParser->yystack; + pParser->yystack[0].stateno = 0; + pParser->yystack[0].major = 0; +#if YYSTACKDEPTH>0 + pParser->yystackEnd = &pParser->yystack[YYSTACKDEPTH-1]; +#endif +} + +#ifndef Parse_ENGINEALWAYSONSTACK /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like @@ -1147,27 +1419,21 @@ static void yyGrowStack(yyParser *p){ ** A pointer to a parser. This pointer is used in subsequent calls ** to Parse and ParseFree. */ -void *ParseAlloc(void *(*mallocProc)(size_t)){ +void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ yyParser *pParser; - pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); - if( pParser ){ - pParser->yyidx = -1; -#ifdef YYTRACKMAXSTACKDEPTH - pParser->yyidxMax = 0; -#endif -#if YYSTACKDEPTH<=0 - pParser->yystack = NULL; - pParser->yystksz = 0; - yyGrowStack(pParser); -#endif - } + pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); + if( pParser ) ParseInit(pParser); return pParser; } +#endif /* Parse_ENGINEALWAYSONSTACK */ -/* The following function deletes the value associated with a -** symbol. The symbol can be either a terminal or nonterminal. -** "yymajor" is the symbol code, and "yypminor" is a pointer to -** the value. + +/* The following function deletes the "minor type" or semantic value +** associated with a symbol. The symbol can be either a terminal +** or nonterminal. "yymajor" is the symbol code, and "yypminor" is +** a pointer to the value to be deleted. The code used to do the +** deletions is derived from the %destructor and/or %token_destructor +** directives of the input grammar. */ static void yy_destructor( yyParser *yypParser, /* The parser */ @@ -1183,9 +1449,10 @@ static void yy_destructor( ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those - ** which appear on the RHS of the rule, but which are not used + ** which appear on the RHS of the rule, but which are *not* used ** inside the C code. */ +/********* Begin destructor definitions ***************************************/ case 200: /* exprlist */ case 243: /* selcollist */ case 257: /* sclp */ @@ -1242,6 +1509,7 @@ destroyAllSqlNode((yypminor->yy441)); tVariantDestroy(&(yypminor->yy506)); } break; +/********* End destructor definitions *****************************************/ default: break; /* If no destructor action specified: do nothing */ } } @@ -1251,51 +1519,53 @@ tVariantDestroy(&(yypminor->yy506)); ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. -** -** Return the major token number for the symbol popped. */ -static int yy_pop_parser_stack(yyParser *pParser){ - YYCODETYPE yymajor; - yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; - - if( pParser->yyidx<0 ) return 0; +static void yy_pop_parser_stack(yyParser *pParser){ + yyStackEntry *yytos; + assert( pParser->yytos!=0 ); + assert( pParser->yytos > pParser->yystack ); + yytos = pParser->yytos--; #ifndef NDEBUG - if( yyTraceFILE && pParser->yyidx>=0 ){ + if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif - yymajor = yytos->major; - yy_destructor(pParser, yymajor, &yytos->minor); - pParser->yyidx--; - return yymajor; + yy_destructor(pParser, yytos->major, &yytos->minor); } +/* +** Clear all secondary memory allocations from the parser +*/ +void ParseFinalize(void *p){ + yyParser *pParser = (yyParser*)p; + while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); +#if YYSTACKDEPTH<=0 + if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); +#endif +} + +#ifndef Parse_ENGINEALWAYSONSTACK /* -** Deallocate and destroy a parser. Destructors are all called for +** Deallocate and destroy a parser. Destructors are called for ** all stack elements before shutting the parser down. ** -** Inputs: -**
    -**
  • A pointer to the parser. This should be a pointer -** obtained from ParseAlloc. -**
  • A pointer to a function used to reclaim memory obtained -** from malloc. -**
+** If the YYPARSEFREENEVERNULL macro exists (for example because it +** is defined in a %include section of the input grammar) then it is +** assumed that the input pointer is never NULL. */ void ParseFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ - yyParser *pParser = (yyParser*)p; - if( pParser==0 ) return; - while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); -#if YYSTACKDEPTH<=0 - free(pParser->yystack); +#ifndef YYPARSEFREENEVERNULL + if( p==0 ) return; #endif - (*freeProc)((void*)pParser); + ParseFinalize(p); + (*freeProc)(p); } +#endif /* Parse_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. @@ -1303,33 +1573,70 @@ void ParseFree( #ifdef YYTRACKMAXSTACKDEPTH int ParseStackPeak(void *p){ yyParser *pParser = (yyParser*)p; - return pParser->yyidxMax; + return pParser->yyhwm; +} +#endif + +/* This array of booleans keeps track of the parser statement +** coverage. The element yycoverage[X][Y] is set when the parser +** is in state X and has a lookahead token Y. In a well-tested +** systems, every element of this matrix should end up being set. +*/ +#if defined(YYCOVERAGE) +static unsigned char yycoverage[YYNSTATE][YYNTOKEN]; +#endif + +/* +** Write into out a description of every state/lookahead combination that +** +** (1) has not been used by the parser, and +** (2) is not a syntax error. +** +** Return the number of missed state/lookahead combinations. +*/ +#if defined(YYCOVERAGE) +int ParseCoverage(FILE *out){ + int stateno, iLookAhead, i; + int nMissed = 0; + for(stateno=0; statenoyystack[pParser->yyidx].stateno; + int stateno = pParser->yytos->stateno; - if( stateno>YY_SHIFT_COUNT - || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){ - return yy_default[stateno]; - } - assert( iLookAhead!=YYNOCODE ); - i += iLookAhead; - if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ - if( iLookAhead>0 ){ + if( stateno>YY_MAX_SHIFT ) return stateno; + assert( stateno <= YY_SHIFT_COUNT ); +#if defined(YYCOVERAGE) + yycoverage[stateno][iLookAhead] = 1; +#endif + do{ + i = yy_shift_ofst[stateno]; + assert( i>=0 && i+YYNTOKEN<=sizeof(yy_lookahead)/sizeof(yy_lookahead[0]) ); + assert( iLookAhead!=YYNOCODE ); + assert( iLookAhead < YYNTOKEN ); + i += iLookAhead; + if( yy_lookahead[i]!=iLookAhead ){ #ifdef YYFALLBACK YYCODETYPE iFallback; /* Fallback token */ if( iLookAhead=YY_ACTTAB_COUNT j0 ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", - yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); + yyTracePrompt, yyTokenName[iLookAhead], + yyTokenName[YYWILDCARD]); } #endif /* NDEBUG */ return yy_action[j]; } } #endif /* YYWILDCARD */ + return yy_default[stateno]; + }else{ + return yy_action[i]; } - return yy_default[stateno]; - }else{ - return yy_action[i]; - } + }while(1); } /* ** Find the appropriate action for a parser given the non-terminal ** look-ahead token iLookAhead. -** -** If the look-ahead token is YYNOCODE, then check to see if the action is -** independent of the look-ahead. If it is, return the action, otherwise -** return YY_NO_ACTION. */ static int yy_find_reduce_action( int stateno, /* Current state number */ @@ -1393,7 +1699,6 @@ static int yy_find_reduce_action( assert( stateno<=YY_REDUCE_COUNT ); #endif i = yy_reduce_ofst[stateno]; - assert( i!=YY_REDUCE_USE_DFLT ); assert( iLookAhead!=YYNOCODE ); i += iLookAhead; #ifdef YYERRORSYMBOL @@ -1410,20 +1715,42 @@ static int yy_find_reduce_action( /* ** The following routine is called if the stack overflows. */ -static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){ +static void yyStackOverflow(yyParser *yypParser){ ParseARG_FETCH; - yypParser->yyidx--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ +/******** Begin %stack_overflow code ******************************************/ +/******** End %stack_overflow code ********************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ } +/* +** Print tracing information for a SHIFT action +*/ +#ifndef NDEBUG +static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ + if( yyTraceFILE ){ + if( yyNewStateyytos->major], + yyNewState); + }else{ + fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n", + yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major], + yyNewState - YY_MIN_REDUCE); + } + } +} +#else +# define yyTraceShift(X,Y,Z) +#endif + /* ** Perform a shift action. */ @@ -1431,336 +1758,332 @@ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ int yyNewState, /* The new state to shift in */ int yyMajor, /* The major token to shift in */ - YYMINORTYPE *yypMinor /* Pointer to the minor token to shift in */ + ParseTOKENTYPE yyMinor /* The minor token to shift in */ ){ yyStackEntry *yytos; - yypParser->yyidx++; + yypParser->yytos++; #ifdef YYTRACKMAXSTACKDEPTH - if( yypParser->yyidx>yypParser->yyidxMax ){ - yypParser->yyidxMax = yypParser->yyidx; + if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ + yypParser->yyhwm++; + assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); } #endif #if YYSTACKDEPTH>0 - if( yypParser->yyidx>=YYSTACKDEPTH ){ - yyStackOverflow(yypParser, yypMinor); + if( yypParser->yytos>yypParser->yystackEnd ){ + yypParser->yytos--; + yyStackOverflow(yypParser); return; } #else - if( yypParser->yyidx>=yypParser->yystksz ){ - yyGrowStack(yypParser); - if( yypParser->yyidx>=yypParser->yystksz ){ - yyStackOverflow(yypParser, yypMinor); + if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ + if( yyGrowStack(yypParser) ){ + yypParser->yytos--; + yyStackOverflow(yypParser); return; } } #endif - yytos = &yypParser->yystack[yypParser->yyidx]; + if( yyNewState > YY_MAX_SHIFT ){ + yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; + } + yytos = yypParser->yytos; yytos->stateno = (YYACTIONTYPE)yyNewState; yytos->major = (YYCODETYPE)yyMajor; - yytos->minor = *yypMinor; -#ifndef NDEBUG - if( yyTraceFILE && yypParser->yyidx>0 ){ - int i; - fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState); - fprintf(yyTraceFILE,"%sStack:",yyTracePrompt); - for(i=1; i<=yypParser->yyidx; i++) - fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); - fprintf(yyTraceFILE,"\n"); - } -#endif + yytos->minor.yy0 = yyMinor; + yyTraceShift(yypParser, yyNewState, "Shift"); } /* The following table contains information about every rule that ** is used during the reduce. */ static const struct { - YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ - unsigned char nrhs; /* Number of right-hand side symbols in the rule */ + 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[] = { - { 191, 1 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 2 }, - { 192, 3 }, - { 193, 0 }, - { 193, 2 }, - { 195, 0 }, - { 195, 2 }, - { 192, 5 }, - { 192, 5 }, - { 192, 4 }, - { 192, 3 }, - { 192, 5 }, - { 192, 3 }, - { 192, 5 }, - { 192, 3 }, - { 192, 4 }, - { 192, 5 }, - { 192, 5 }, - { 192, 4 }, - { 192, 4 }, - { 192, 3 }, - { 192, 3 }, - { 192, 3 }, - { 192, 2 }, - { 192, 3 }, - { 192, 5 }, - { 192, 5 }, - { 192, 4 }, - { 192, 5 }, - { 192, 3 }, - { 192, 4 }, - { 192, 4 }, - { 192, 4 }, - { 192, 4 }, - { 192, 6 }, - { 192, 6 }, - { 194, 1 }, - { 194, 1 }, - { 196, 2 }, - { 196, 0 }, - { 201, 3 }, - { 201, 0 }, - { 192, 3 }, - { 192, 6 }, - { 192, 5 }, - { 192, 5 }, - { 192, 5 }, - { 204, 0 }, - { 204, 2 }, - { 205, 0 }, - { 205, 2 }, - { 206, 0 }, - { 206, 2 }, - { 207, 0 }, - { 207, 2 }, - { 208, 0 }, - { 208, 2 }, - { 209, 0 }, - { 209, 2 }, - { 210, 0 }, - { 210, 2 }, - { 211, 0 }, - { 211, 2 }, - { 212, 0 }, - { 212, 2 }, - { 199, 9 }, - { 213, 3 }, - { 213, 1 }, - { 214, 1 }, - { 215, 2 }, - { 216, 2 }, - { 217, 2 }, - { 218, 2 }, - { 219, 2 }, - { 220, 2 }, - { 221, 2 }, - { 222, 2 }, - { 223, 2 }, - { 224, 2 }, - { 225, 2 }, - { 226, 2 }, - { 227, 2 }, - { 228, 2 }, - { 229, 2 }, - { 230, 2 }, - { 202, 0 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 202, 2 }, - { 203, 1 }, - { 203, 2 }, - { 197, 0 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 197, 2 }, - { 198, 1 }, - { 198, 2 }, - { 231, 1 }, - { 231, 4 }, - { 231, 2 }, - { 232, 1 }, - { 232, 2 }, - { 232, 2 }, - { 192, 3 }, - { 192, 3 }, - { 192, 3 }, - { 192, 3 }, - { 235, 1 }, - { 235, 2 }, - { 233, 6 }, - { 234, 10 }, - { 236, 10 }, - { 236, 13 }, - { 239, 3 }, - { 239, 1 }, - { 233, 5 }, - { 237, 3 }, - { 237, 1 }, - { 241, 2 }, - { 238, 3 }, - { 238, 1 }, - { 242, 1 }, - { 242, 1 }, - { 242, 1 }, - { 242, 1 }, - { 242, 1 }, - { 242, 2 }, - { 242, 2 }, - { 242, 2 }, - { 242, 2 }, - { 240, 14 }, - { 240, 3 }, - { 256, 1 }, - { 256, 4 }, - { 192, 1 }, - { 240, 2 }, - { 257, 2 }, - { 257, 0 }, - { 243, 4 }, - { 243, 2 }, - { 260, 2 }, - { 260, 1 }, - { 260, 0 }, - { 258, 1 }, - { 258, 0 }, - { 244, 2 }, - { 244, 2 }, - { 262, 3 }, - { 262, 4 }, - { 262, 6 }, - { 261, 2 }, - { 261, 3 }, - { 261, 4 }, - { 261, 5 }, - { 263, 1 }, - { 246, 4 }, - { 246, 6 }, - { 246, 0 }, - { 247, 0 }, - { 247, 7 }, - { 248, 0 }, - { 248, 4 }, - { 249, 0 }, - { 249, 6 }, - { 249, 4 }, - { 250, 4 }, - { 250, 0 }, - { 252, 0 }, - { 252, 3 }, - { 264, 4 }, - { 264, 2 }, - { 266, 2 }, - { 267, 1 }, - { 267, 1 }, - { 267, 0 }, - { 251, 0 }, - { 251, 3 }, - { 268, 3 }, - { 268, 1 }, - { 253, 0 }, - { 253, 2 }, - { 255, 0 }, - { 255, 2 }, - { 255, 4 }, - { 255, 4 }, - { 254, 0 }, - { 254, 2 }, - { 254, 4 }, - { 254, 4 }, - { 245, 0 }, - { 245, 2 }, - { 259, 3 }, - { 259, 1 }, - { 259, 3 }, - { 259, 3 }, - { 259, 1 }, - { 259, 2 }, - { 259, 2 }, - { 259, 1 }, - { 259, 2 }, - { 259, 2 }, - { 259, 1 }, - { 259, 1 }, - { 259, 1 }, - { 259, 2 }, - { 259, 2 }, - { 259, 1 }, - { 259, 1 }, - { 259, 4 }, - { 259, 4 }, - { 259, 3 }, - { 259, 4 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 5 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 3 }, - { 259, 5 }, - { 200, 3 }, - { 200, 1 }, - { 269, 1 }, - { 269, 0 }, - { 192, 3 }, - { 192, 3 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 8 }, - { 192, 9 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 7 }, - { 192, 8 }, - { 192, 9 }, - { 192, 7 }, - { 192, 3 }, - { 192, 5 }, - { 192, 5 }, + { 191, -1 }, /* (0) program ::= cmd */ + { 192, -2 }, /* (1) cmd ::= SHOW DATABASES */ + { 192, -2 }, /* (2) cmd ::= SHOW TOPICS */ + { 192, -2 }, /* (3) cmd ::= SHOW MNODES */ + { 192, -2 }, /* (4) cmd ::= SHOW DNODES */ + { 192, -2 }, /* (5) cmd ::= SHOW ACCOUNTS */ + { 192, -2 }, /* (6) cmd ::= SHOW USERS */ + { 192, -2 }, /* (7) cmd ::= SHOW MODULES */ + { 192, -2 }, /* (8) cmd ::= SHOW QUERIES */ + { 192, -2 }, /* (9) cmd ::= SHOW CONNECTIONS */ + { 192, -2 }, /* (10) cmd ::= SHOW STREAMS */ + { 192, -2 }, /* (11) cmd ::= SHOW VARIABLES */ + { 192, -2 }, /* (12) cmd ::= SHOW SCORES */ + { 192, -2 }, /* (13) cmd ::= SHOW GRANTS */ + { 192, -2 }, /* (14) cmd ::= SHOW VNODES */ + { 192, -3 }, /* (15) cmd ::= SHOW VNODES IPTOKEN */ + { 193, 0 }, /* (16) dbPrefix ::= */ + { 193, -2 }, /* (17) dbPrefix ::= ids DOT */ + { 195, 0 }, /* (18) cpxName ::= */ + { 195, -2 }, /* (19) cpxName ::= DOT ids */ + { 192, -5 }, /* (20) cmd ::= SHOW CREATE TABLE ids cpxName */ + { 192, -5 }, /* (21) cmd ::= SHOW CREATE STABLE ids cpxName */ + { 192, -4 }, /* (22) cmd ::= SHOW CREATE DATABASE ids */ + { 192, -3 }, /* (23) cmd ::= SHOW dbPrefix TABLES */ + { 192, -5 }, /* (24) cmd ::= SHOW dbPrefix TABLES LIKE ids */ + { 192, -3 }, /* (25) cmd ::= SHOW dbPrefix STABLES */ + { 192, -5 }, /* (26) cmd ::= SHOW dbPrefix STABLES LIKE ids */ + { 192, -3 }, /* (27) cmd ::= SHOW dbPrefix VGROUPS */ + { 192, -4 }, /* (28) cmd ::= SHOW dbPrefix VGROUPS ids */ + { 192, -5 }, /* (29) cmd ::= DROP TABLE ifexists ids cpxName */ + { 192, -5 }, /* (30) cmd ::= DROP STABLE ifexists ids cpxName */ + { 192, -4 }, /* (31) cmd ::= DROP DATABASE ifexists ids */ + { 192, -4 }, /* (32) cmd ::= DROP TOPIC ifexists ids */ + { 192, -3 }, /* (33) cmd ::= DROP DNODE ids */ + { 192, -3 }, /* (34) cmd ::= DROP USER ids */ + { 192, -3 }, /* (35) cmd ::= DROP ACCOUNT ids */ + { 192, -2 }, /* (36) cmd ::= USE ids */ + { 192, -3 }, /* (37) cmd ::= DESCRIBE ids cpxName */ + { 192, -5 }, /* (38) cmd ::= ALTER USER ids PASS ids */ + { 192, -5 }, /* (39) cmd ::= ALTER USER ids PRIVILEGE ids */ + { 192, -4 }, /* (40) cmd ::= ALTER DNODE ids ids */ + { 192, -5 }, /* (41) cmd ::= ALTER DNODE ids ids ids */ + { 192, -3 }, /* (42) cmd ::= ALTER LOCAL ids */ + { 192, -4 }, /* (43) cmd ::= ALTER LOCAL ids ids */ + { 192, -4 }, /* (44) cmd ::= ALTER DATABASE ids alter_db_optr */ + { 192, -4 }, /* (45) cmd ::= ALTER TOPIC ids alter_topic_optr */ + { 192, -4 }, /* (46) cmd ::= ALTER ACCOUNT ids acct_optr */ + { 192, -6 }, /* (47) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */ + { 192, -6 }, /* (48) cmd ::= COMPACT VNODES IN LP exprlist RP */ + { 194, -1 }, /* (49) ids ::= ID */ + { 194, -1 }, /* (50) ids ::= STRING */ + { 196, -2 }, /* (51) ifexists ::= IF EXISTS */ + { 196, 0 }, /* (52) ifexists ::= */ + { 201, -3 }, /* (53) ifnotexists ::= IF NOT EXISTS */ + { 201, 0 }, /* (54) ifnotexists ::= */ + { 192, -3 }, /* (55) cmd ::= CREATE DNODE ids */ + { 192, -6 }, /* (56) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ + { 192, -5 }, /* (57) cmd ::= CREATE DATABASE ifnotexists ids db_optr */ + { 192, -5 }, /* (58) cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ + { 192, -5 }, /* (59) cmd ::= CREATE USER ids PASS ids */ + { 204, 0 }, /* (60) pps ::= */ + { 204, -2 }, /* (61) pps ::= PPS INTEGER */ + { 205, 0 }, /* (62) tseries ::= */ + { 205, -2 }, /* (63) tseries ::= TSERIES INTEGER */ + { 206, 0 }, /* (64) dbs ::= */ + { 206, -2 }, /* (65) dbs ::= DBS INTEGER */ + { 207, 0 }, /* (66) streams ::= */ + { 207, -2 }, /* (67) streams ::= STREAMS INTEGER */ + { 208, 0 }, /* (68) storage ::= */ + { 208, -2 }, /* (69) storage ::= STORAGE INTEGER */ + { 209, 0 }, /* (70) qtime ::= */ + { 209, -2 }, /* (71) qtime ::= QTIME INTEGER */ + { 210, 0 }, /* (72) users ::= */ + { 210, -2 }, /* (73) users ::= USERS INTEGER */ + { 211, 0 }, /* (74) conns ::= */ + { 211, -2 }, /* (75) conns ::= CONNS INTEGER */ + { 212, 0 }, /* (76) state ::= */ + { 212, -2 }, /* (77) state ::= STATE ids */ + { 199, -9 }, /* (78) acct_optr ::= pps tseries storage streams qtime dbs users conns state */ + { 213, -3 }, /* (79) intitemlist ::= intitemlist COMMA intitem */ + { 213, -1 }, /* (80) intitemlist ::= intitem */ + { 214, -1 }, /* (81) intitem ::= INTEGER */ + { 215, -2 }, /* (82) keep ::= KEEP intitemlist */ + { 216, -2 }, /* (83) cache ::= CACHE INTEGER */ + { 217, -2 }, /* (84) replica ::= REPLICA INTEGER */ + { 218, -2 }, /* (85) quorum ::= QUORUM INTEGER */ + { 219, -2 }, /* (86) days ::= DAYS INTEGER */ + { 220, -2 }, /* (87) minrows ::= MINROWS INTEGER */ + { 221, -2 }, /* (88) maxrows ::= MAXROWS INTEGER */ + { 222, -2 }, /* (89) blocks ::= BLOCKS INTEGER */ + { 223, -2 }, /* (90) ctime ::= CTIME INTEGER */ + { 224, -2 }, /* (91) wal ::= WAL INTEGER */ + { 225, -2 }, /* (92) fsync ::= FSYNC INTEGER */ + { 226, -2 }, /* (93) comp ::= COMP INTEGER */ + { 227, -2 }, /* (94) prec ::= PRECISION STRING */ + { 228, -2 }, /* (95) update ::= UPDATE INTEGER */ + { 229, -2 }, /* (96) cachelast ::= CACHELAST INTEGER */ + { 230, -2 }, /* (97) partitions ::= PARTITIONS INTEGER */ + { 202, 0 }, /* (98) db_optr ::= */ + { 202, -2 }, /* (99) db_optr ::= db_optr cache */ + { 202, -2 }, /* (100) db_optr ::= db_optr replica */ + { 202, -2 }, /* (101) db_optr ::= db_optr quorum */ + { 202, -2 }, /* (102) db_optr ::= db_optr days */ + { 202, -2 }, /* (103) db_optr ::= db_optr minrows */ + { 202, -2 }, /* (104) db_optr ::= db_optr maxrows */ + { 202, -2 }, /* (105) db_optr ::= db_optr blocks */ + { 202, -2 }, /* (106) db_optr ::= db_optr ctime */ + { 202, -2 }, /* (107) db_optr ::= db_optr wal */ + { 202, -2 }, /* (108) db_optr ::= db_optr fsync */ + { 202, -2 }, /* (109) db_optr ::= db_optr comp */ + { 202, -2 }, /* (110) db_optr ::= db_optr prec */ + { 202, -2 }, /* (111) db_optr ::= db_optr keep */ + { 202, -2 }, /* (112) db_optr ::= db_optr update */ + { 202, -2 }, /* (113) db_optr ::= db_optr cachelast */ + { 203, -1 }, /* (114) topic_optr ::= db_optr */ + { 203, -2 }, /* (115) topic_optr ::= topic_optr partitions */ + { 197, 0 }, /* (116) alter_db_optr ::= */ + { 197, -2 }, /* (117) alter_db_optr ::= alter_db_optr replica */ + { 197, -2 }, /* (118) alter_db_optr ::= alter_db_optr quorum */ + { 197, -2 }, /* (119) alter_db_optr ::= alter_db_optr keep */ + { 197, -2 }, /* (120) alter_db_optr ::= alter_db_optr blocks */ + { 197, -2 }, /* (121) alter_db_optr ::= alter_db_optr comp */ + { 197, -2 }, /* (122) alter_db_optr ::= alter_db_optr wal */ + { 197, -2 }, /* (123) alter_db_optr ::= alter_db_optr fsync */ + { 197, -2 }, /* (124) alter_db_optr ::= alter_db_optr update */ + { 197, -2 }, /* (125) alter_db_optr ::= alter_db_optr cachelast */ + { 198, -1 }, /* (126) alter_topic_optr ::= alter_db_optr */ + { 198, -2 }, /* (127) alter_topic_optr ::= alter_topic_optr partitions */ + { 231, -1 }, /* (128) typename ::= ids */ + { 231, -4 }, /* (129) typename ::= ids LP signed RP */ + { 231, -2 }, /* (130) typename ::= ids UNSIGNED */ + { 232, -1 }, /* (131) signed ::= INTEGER */ + { 232, -2 }, /* (132) signed ::= PLUS INTEGER */ + { 232, -2 }, /* (133) signed ::= MINUS INTEGER */ + { 192, -3 }, /* (134) cmd ::= CREATE TABLE create_table_args */ + { 192, -3 }, /* (135) cmd ::= CREATE TABLE create_stable_args */ + { 192, -3 }, /* (136) cmd ::= CREATE STABLE create_stable_args */ + { 192, -3 }, /* (137) cmd ::= CREATE TABLE create_table_list */ + { 235, -1 }, /* (138) create_table_list ::= create_from_stable */ + { 235, -2 }, /* (139) create_table_list ::= create_table_list create_from_stable */ + { 233, -6 }, /* (140) create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ + { 234, -10 }, /* (141) create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ + { 236, -10 }, /* (142) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ + { 236, -13 }, /* (143) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ + { 239, -3 }, /* (144) tagNamelist ::= tagNamelist COMMA ids */ + { 239, -1 }, /* (145) tagNamelist ::= ids */ + { 233, -5 }, /* (146) create_table_args ::= ifnotexists ids cpxName AS select */ + { 237, -3 }, /* (147) columnlist ::= columnlist COMMA column */ + { 237, -1 }, /* (148) columnlist ::= column */ + { 241, -2 }, /* (149) column ::= ids typename */ + { 238, -3 }, /* (150) tagitemlist ::= tagitemlist COMMA tagitem */ + { 238, -1 }, /* (151) tagitemlist ::= tagitem */ + { 242, -1 }, /* (152) tagitem ::= INTEGER */ + { 242, -1 }, /* (153) tagitem ::= FLOAT */ + { 242, -1 }, /* (154) tagitem ::= STRING */ + { 242, -1 }, /* (155) tagitem ::= BOOL */ + { 242, -1 }, /* (156) tagitem ::= NULL */ + { 242, -2 }, /* (157) tagitem ::= MINUS INTEGER */ + { 242, -2 }, /* (158) tagitem ::= MINUS FLOAT */ + { 242, -2 }, /* (159) tagitem ::= PLUS INTEGER */ + { 242, -2 }, /* (160) tagitem ::= PLUS FLOAT */ + { 240, -14 }, /* (161) select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ + { 240, -3 }, /* (162) select ::= LP select RP */ + { 256, -1 }, /* (163) union ::= select */ + { 256, -4 }, /* (164) union ::= union UNION ALL select */ + { 192, -1 }, /* (165) cmd ::= union */ + { 240, -2 }, /* (166) select ::= SELECT selcollist */ + { 257, -2 }, /* (167) sclp ::= selcollist COMMA */ + { 257, 0 }, /* (168) sclp ::= */ + { 243, -4 }, /* (169) selcollist ::= sclp distinct expr as */ + { 243, -2 }, /* (170) selcollist ::= sclp STAR */ + { 260, -2 }, /* (171) as ::= AS ids */ + { 260, -1 }, /* (172) as ::= ids */ + { 260, 0 }, /* (173) as ::= */ + { 258, -1 }, /* (174) distinct ::= DISTINCT */ + { 258, 0 }, /* (175) distinct ::= */ + { 244, -2 }, /* (176) from ::= FROM tablelist */ + { 244, -2 }, /* (177) from ::= FROM sub */ + { 262, -3 }, /* (178) sub ::= LP union RP */ + { 262, -4 }, /* (179) sub ::= LP union RP ids */ + { 262, -6 }, /* (180) sub ::= sub COMMA LP union RP ids */ + { 261, -2 }, /* (181) tablelist ::= ids cpxName */ + { 261, -3 }, /* (182) tablelist ::= ids cpxName ids */ + { 261, -4 }, /* (183) tablelist ::= tablelist COMMA ids cpxName */ + { 261, -5 }, /* (184) tablelist ::= tablelist COMMA ids cpxName ids */ + { 263, -1 }, /* (185) tmvar ::= VARIABLE */ + { 246, -4 }, /* (186) interval_opt ::= INTERVAL LP tmvar RP */ + { 246, -6 }, /* (187) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ + { 246, 0 }, /* (188) interval_opt ::= */ + { 247, 0 }, /* (189) session_option ::= */ + { 247, -7 }, /* (190) session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ + { 248, 0 }, /* (191) windowstate_option ::= */ + { 248, -4 }, /* (192) windowstate_option ::= STATE_WINDOW LP ids RP */ + { 249, 0 }, /* (193) fill_opt ::= */ + { 249, -6 }, /* (194) fill_opt ::= FILL LP ID COMMA tagitemlist RP */ + { 249, -4 }, /* (195) fill_opt ::= FILL LP ID RP */ + { 250, -4 }, /* (196) sliding_opt ::= SLIDING LP tmvar RP */ + { 250, 0 }, /* (197) sliding_opt ::= */ + { 252, 0 }, /* (198) orderby_opt ::= */ + { 252, -3 }, /* (199) orderby_opt ::= ORDER BY sortlist */ + { 264, -4 }, /* (200) sortlist ::= sortlist COMMA item sortorder */ + { 264, -2 }, /* (201) sortlist ::= item sortorder */ + { 266, -2 }, /* (202) item ::= ids cpxName */ + { 267, -1 }, /* (203) sortorder ::= ASC */ + { 267, -1 }, /* (204) sortorder ::= DESC */ + { 267, 0 }, /* (205) sortorder ::= */ + { 251, 0 }, /* (206) groupby_opt ::= */ + { 251, -3 }, /* (207) groupby_opt ::= GROUP BY grouplist */ + { 268, -3 }, /* (208) grouplist ::= grouplist COMMA item */ + { 268, -1 }, /* (209) grouplist ::= item */ + { 253, 0 }, /* (210) having_opt ::= */ + { 253, -2 }, /* (211) having_opt ::= HAVING expr */ + { 255, 0 }, /* (212) limit_opt ::= */ + { 255, -2 }, /* (213) limit_opt ::= LIMIT signed */ + { 255, -4 }, /* (214) limit_opt ::= LIMIT signed OFFSET signed */ + { 255, -4 }, /* (215) limit_opt ::= LIMIT signed COMMA signed */ + { 254, 0 }, /* (216) slimit_opt ::= */ + { 254, -2 }, /* (217) slimit_opt ::= SLIMIT signed */ + { 254, -4 }, /* (218) slimit_opt ::= SLIMIT signed SOFFSET signed */ + { 254, -4 }, /* (219) slimit_opt ::= SLIMIT signed COMMA signed */ + { 245, 0 }, /* (220) where_opt ::= */ + { 245, -2 }, /* (221) where_opt ::= WHERE expr */ + { 259, -3 }, /* (222) expr ::= LP expr RP */ + { 259, -1 }, /* (223) expr ::= ID */ + { 259, -3 }, /* (224) expr ::= ID DOT ID */ + { 259, -3 }, /* (225) expr ::= ID DOT STAR */ + { 259, -1 }, /* (226) expr ::= INTEGER */ + { 259, -2 }, /* (227) expr ::= MINUS INTEGER */ + { 259, -2 }, /* (228) expr ::= PLUS INTEGER */ + { 259, -1 }, /* (229) expr ::= FLOAT */ + { 259, -2 }, /* (230) expr ::= MINUS FLOAT */ + { 259, -2 }, /* (231) expr ::= PLUS FLOAT */ + { 259, -1 }, /* (232) expr ::= STRING */ + { 259, -1 }, /* (233) expr ::= NOW */ + { 259, -1 }, /* (234) expr ::= VARIABLE */ + { 259, -2 }, /* (235) expr ::= PLUS VARIABLE */ + { 259, -2 }, /* (236) expr ::= MINUS VARIABLE */ + { 259, -1 }, /* (237) expr ::= BOOL */ + { 259, -1 }, /* (238) expr ::= NULL */ + { 259, -4 }, /* (239) expr ::= ID LP exprlist RP */ + { 259, -4 }, /* (240) expr ::= ID LP STAR RP */ + { 259, -3 }, /* (241) expr ::= expr IS NULL */ + { 259, -4 }, /* (242) expr ::= expr IS NOT NULL */ + { 259, -3 }, /* (243) expr ::= expr LT expr */ + { 259, -3 }, /* (244) expr ::= expr GT expr */ + { 259, -3 }, /* (245) expr ::= expr LE expr */ + { 259, -3 }, /* (246) expr ::= expr GE expr */ + { 259, -3 }, /* (247) expr ::= expr NE expr */ + { 259, -3 }, /* (248) expr ::= expr EQ expr */ + { 259, -5 }, /* (249) expr ::= expr BETWEEN expr AND expr */ + { 259, -3 }, /* (250) expr ::= expr AND expr */ + { 259, -3 }, /* (251) expr ::= expr OR expr */ + { 259, -3 }, /* (252) expr ::= expr PLUS expr */ + { 259, -3 }, /* (253) expr ::= expr MINUS expr */ + { 259, -3 }, /* (254) expr ::= expr STAR expr */ + { 259, -3 }, /* (255) expr ::= expr SLASH expr */ + { 259, -3 }, /* (256) expr ::= expr REM expr */ + { 259, -3 }, /* (257) expr ::= expr LIKE expr */ + { 259, -5 }, /* (258) expr ::= expr IN LP exprlist RP */ + { 200, -3 }, /* (259) exprlist ::= exprlist COMMA expritem */ + { 200, -1 }, /* (260) exprlist ::= expritem */ + { 269, -1 }, /* (261) expritem ::= expr */ + { 269, 0 }, /* (262) expritem ::= */ + { 192, -3 }, /* (263) cmd ::= RESET QUERY CACHE */ + { 192, -3 }, /* (264) cmd ::= SYNCDB ids REPLICA */ + { 192, -7 }, /* (265) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ + { 192, -7 }, /* (266) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ + { 192, -7 }, /* (267) cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist */ + { 192, -7 }, /* (268) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ + { 192, -7 }, /* (269) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ + { 192, -8 }, /* (270) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ + { 192, -9 }, /* (271) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ + { 192, -7 }, /* (272) cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist */ + { 192, -7 }, /* (273) cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ + { 192, -7 }, /* (274) cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ + { 192, -7 }, /* (275) cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist */ + { 192, -7 }, /* (276) cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ + { 192, -7 }, /* (277) cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ + { 192, -8 }, /* (278) cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ + { 192, -9 }, /* (279) cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem */ + { 192, -7 }, /* (280) cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist */ + { 192, -3 }, /* (281) cmd ::= KILL CONNECTION INTEGER */ + { 192, -5 }, /* (282) cmd ::= KILL STREAM INTEGER COLON INTEGER */ + { 192, -5 }, /* (283) cmd ::= KILL QUERY INTEGER COLON INTEGER */ }; static void yy_accept(yyParser*); /* Forward Declaration */ @@ -1768,43 +2091,66 @@ static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. +** +** The yyLookahead and yyLookaheadToken parameters provide reduce actions +** access to the lookahead token (if any). The yyLookahead will be YYNOCODE +** if the lookahead token has already been consumed. As this procedure is +** only called from one place, optimizing compilers will in-line it, which +** means that the extra parameters have no performance impact. */ static void yy_reduce( yyParser *yypParser, /* The parser */ - int yyruleno /* Number of the rule by which to reduce */ + unsigned int yyruleno, /* Number of the rule by which to reduce */ + int yyLookahead, /* Lookahead token, or YYNOCODE if none */ + ParseTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ ){ int yygoto; /* The next state */ int yyact; /* The next action */ - YYMINORTYPE yygotominor; /* The LHS of the rule reduced */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ ParseARG_FETCH; - yymsp = &yypParser->yystack[yypParser->yyidx]; + (void)yyLookahead; + (void)yyLookaheadToken; + yymsp = yypParser->yytos; #ifndef NDEBUG - if( yyTraceFILE && yyruleno>=0 - && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ - fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt, - yyRuleName[yyruleno]); + if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ + yysize = yyRuleInfo[yyruleno].nrhs; + if( yysize ){ + fprintf(yyTraceFILE, "%sReduce %d [%s], go to state %d.\n", + yyTracePrompt, + yyruleno, yyRuleName[yyruleno], yymsp[yysize].stateno); + }else{ + fprintf(yyTraceFILE, "%sReduce %d [%s].\n", + yyTracePrompt, yyruleno, yyRuleName[yyruleno]); + } } #endif /* NDEBUG */ - /* Silence complaints from purify about yygotominor being uninitialized - ** in some cases when it is copied into the stack after the following - ** switch. yygotominor is uninitialized when a rule reduces that does - ** not set the value of its left-hand side nonterminal. Leaving the - ** value of the nonterminal uninitialized is utterly harmless as long - ** as the value is never used. So really the only thing this code - ** accomplishes is to quieten purify. - ** - ** 2007-01-16: The wireshark project (www.wireshark.org) reports that - ** without this code, their parser segfaults. I'm not sure what there - ** parser is doing to make this happen. This is the second bug report - ** from wireshark this week. Clearly they are stressing Lemon in ways - ** that it has not been previously stressed... (SQLite ticket #2172) - */ - /*memset(&yygotominor, 0, sizeof(yygotominor));*/ - yygotominor = yyzerominor; - + /* Check that the stack is large enough to grow by a single entry + ** if the RHS of the rule is empty. This ensures that there is room + ** enough on the stack to push the LHS value */ + if( yyRuleInfo[yyruleno].nrhs==0 ){ +#ifdef YYTRACKMAXSTACKDEPTH + if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ + yypParser->yyhwm++; + assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); + } +#endif +#if YYSTACKDEPTH>0 + if( yypParser->yytos>=yypParser->yystackEnd ){ + yyStackOverflow(yypParser); + return; + } +#else + if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ + if( yyGrowStack(yypParser) ){ + yyStackOverflow(yypParser); + return; + } + yymsp = yypParser->yytos; + } +#endif + } switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example @@ -1815,7 +2161,12 @@ static void yy_reduce( ** #line ** break; */ +/********** Begin reduce actions **********************************************/ + YYMINORTYPE yylhsminor; case 0: /* program ::= cmd */ + case 134: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==134); + case 135: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==135); + case 136: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==136); {} break; case 1: /* cmd ::= SHOW DATABASES */ @@ -1864,16 +2215,17 @@ static void yy_reduce( { setShowOptions(pInfo, TSDB_MGMT_TABLE_VNODES, &yymsp[0].minor.yy0, 0); } break; case 16: /* dbPrefix ::= */ -{yygotominor.yy0.n = 0; yygotominor.yy0.type = 0;} +{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.type = 0;} break; case 17: /* dbPrefix ::= ids DOT */ -{yygotominor.yy0 = yymsp[-1].minor.yy0; } +{yylhsminor.yy0 = yymsp[-1].minor.yy0; } + yymsp[-1].minor.yy0 = yylhsminor.yy0; break; case 18: /* cpxName ::= */ -{yygotominor.yy0.n = 0; } +{yymsp[1].minor.yy0.n = 0; } break; case 19: /* cpxName ::= DOT ids */ -{yygotominor.yy0 = yymsp[0].minor.yy0; yygotominor.yy0.n += 1; } +{yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n += 1; } break; case 20: /* cmd ::= SHOW CREATE TABLE ids cpxName */ { @@ -1997,16 +2349,19 @@ static void yy_reduce( break; case 49: /* ids ::= ID */ case 50: /* ids ::= STRING */ yytestcase(yyruleno==50); -{yygotominor.yy0 = yymsp[0].minor.yy0; } +{yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 51: /* ifexists ::= IF EXISTS */ - case 53: /* ifnotexists ::= IF NOT EXISTS */ yytestcase(yyruleno==53); -{ yygotominor.yy0.n = 1;} +{ yymsp[-1].minor.yy0.n = 1;} break; case 52: /* ifexists ::= */ case 54: /* ifnotexists ::= */ yytestcase(yyruleno==54); case 175: /* distinct ::= */ yytestcase(yyruleno==175); -{ yygotominor.yy0.n = 0;} +{ yymsp[1].minor.yy0.n = 0;} + break; + case 53: /* ifnotexists ::= IF NOT EXISTS */ +{ yymsp[-2].minor.yy0.n = 1;} break; case 55: /* cmd ::= CREATE DNODE ids */ { setDCLSqlElems(pInfo, TSDB_SQL_CREATE_DNODE, 1, &yymsp[0].minor.yy0);} @@ -2030,7 +2385,7 @@ static void yy_reduce( case 72: /* users ::= */ yytestcase(yyruleno==72); case 74: /* conns ::= */ yytestcase(yyruleno==74); case 76: /* state ::= */ yytestcase(yyruleno==76); -{ yygotominor.yy0.n = 0; } +{ yymsp[1].minor.yy0.n = 0; } break; case 61: /* pps ::= PPS INTEGER */ case 63: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==63); @@ -2041,38 +2396,42 @@ static void yy_reduce( case 73: /* users ::= USERS INTEGER */ yytestcase(yyruleno==73); case 75: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==75); case 77: /* state ::= STATE ids */ yytestcase(yyruleno==77); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } break; case 78: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */ { - yygotominor.yy151.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; - yygotominor.yy151.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; - yygotominor.yy151.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; - yygotominor.yy151.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; - yygotominor.yy151.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; - yygotominor.yy151.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; - yygotominor.yy151.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; - yygotominor.yy151.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; - yygotominor.yy151.stat = yymsp[0].minor.yy0; + yylhsminor.yy151.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; + yylhsminor.yy151.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; + yylhsminor.yy151.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; + yylhsminor.yy151.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; + yylhsminor.yy151.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; + yylhsminor.yy151.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; + yylhsminor.yy151.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; + yylhsminor.yy151.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; + yylhsminor.yy151.stat = yymsp[0].minor.yy0; } + yymsp[-8].minor.yy151 = yylhsminor.yy151; break; case 79: /* intitemlist ::= intitemlist COMMA intitem */ case 150: /* tagitemlist ::= tagitemlist COMMA tagitem */ yytestcase(yyruleno==150); -{ yygotominor.yy441 = tVariantListAppend(yymsp[-2].minor.yy441, &yymsp[0].minor.yy506, -1); } +{ yylhsminor.yy441 = tVariantListAppend(yymsp[-2].minor.yy441, &yymsp[0].minor.yy506, -1); } + yymsp[-2].minor.yy441 = yylhsminor.yy441; break; case 80: /* intitemlist ::= intitem */ case 151: /* tagitemlist ::= tagitem */ yytestcase(yyruleno==151); -{ yygotominor.yy441 = tVariantListAppend(NULL, &yymsp[0].minor.yy506, -1); } +{ yylhsminor.yy441 = tVariantListAppend(NULL, &yymsp[0].minor.yy506, -1); } + yymsp[0].minor.yy441 = yylhsminor.yy441; break; case 81: /* intitem ::= INTEGER */ case 152: /* tagitem ::= INTEGER */ yytestcase(yyruleno==152); case 153: /* tagitem ::= FLOAT */ yytestcase(yyruleno==153); case 154: /* tagitem ::= STRING */ yytestcase(yyruleno==154); case 155: /* tagitem ::= BOOL */ yytestcase(yyruleno==155); -{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yygotominor.yy506, &yymsp[0].minor.yy0); } +{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yylhsminor.yy506, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy506 = yylhsminor.yy506; break; case 82: /* keep ::= KEEP intitemlist */ -{ yygotominor.yy441 = yymsp[0].minor.yy441; } +{ yymsp[-1].minor.yy441 = yymsp[0].minor.yy441; } break; case 83: /* cache ::= CACHE INTEGER */ case 84: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==84); @@ -2089,109 +2448,129 @@ static void yy_reduce( case 95: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==95); case 96: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==96); case 97: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==97); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } break; case 98: /* db_optr ::= */ -{setDefaultCreateDbOption(&yygotominor.yy382); yygotominor.yy382.dbType = TSDB_DB_TYPE_DEFAULT;} +{setDefaultCreateDbOption(&yymsp[1].minor.yy382); yymsp[1].minor.yy382.dbType = TSDB_DB_TYPE_DEFAULT;} break; case 99: /* db_optr ::= db_optr cache */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 100: /* db_optr ::= db_optr replica */ case 117: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==117); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 101: /* db_optr ::= db_optr quorum */ case 118: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==118); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 102: /* db_optr ::= db_optr days */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 103: /* db_optr ::= db_optr minrows */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 104: /* db_optr ::= db_optr maxrows */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 105: /* db_optr ::= db_optr blocks */ case 120: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==120); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 106: /* db_optr ::= db_optr ctime */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 107: /* db_optr ::= db_optr wal */ case 122: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==122); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 108: /* db_optr ::= db_optr fsync */ case 123: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==123); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 109: /* db_optr ::= db_optr comp */ case 121: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==121); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 110: /* db_optr ::= db_optr prec */ -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.precision = yymsp[0].minor.yy0; } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.precision = yymsp[0].minor.yy0; } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 111: /* db_optr ::= db_optr keep */ case 119: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==119); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.keep = yymsp[0].minor.yy441; } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.keep = yymsp[0].minor.yy441; } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 112: /* db_optr ::= db_optr update */ case 124: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==124); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 113: /* db_optr ::= db_optr cachelast */ case 125: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==125); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 114: /* topic_optr ::= db_optr */ case 126: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==126); -{ yygotominor.yy382 = yymsp[0].minor.yy382; yygotominor.yy382.dbType = TSDB_DB_TYPE_TOPIC; } +{ yylhsminor.yy382 = yymsp[0].minor.yy382; yylhsminor.yy382.dbType = TSDB_DB_TYPE_TOPIC; } + yymsp[0].minor.yy382 = yylhsminor.yy382; break; case 115: /* topic_optr ::= topic_optr partitions */ case 127: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==127); -{ yygotominor.yy382 = yymsp[-1].minor.yy382; yygotominor.yy382.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy382 = yymsp[-1].minor.yy382; yylhsminor.yy382.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[-1].minor.yy382 = yylhsminor.yy382; break; case 116: /* alter_db_optr ::= */ -{ setDefaultCreateDbOption(&yygotominor.yy382); yygotominor.yy382.dbType = TSDB_DB_TYPE_DEFAULT;} +{ setDefaultCreateDbOption(&yymsp[1].minor.yy382); yymsp[1].minor.yy382.dbType = TSDB_DB_TYPE_DEFAULT;} break; case 128: /* typename ::= ids */ { yymsp[0].minor.yy0.type = 0; - tSetColumnType (&yygotominor.yy343, &yymsp[0].minor.yy0); + tSetColumnType (&yylhsminor.yy343, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy343 = yylhsminor.yy343; break; case 129: /* typename ::= ids LP signed RP */ { if (yymsp[-1].minor.yy369 <= 0) { yymsp[-3].minor.yy0.type = 0; - tSetColumnType(&yygotominor.yy343, &yymsp[-3].minor.yy0); + tSetColumnType(&yylhsminor.yy343, &yymsp[-3].minor.yy0); } else { yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy369; // negative value of name length - tSetColumnType(&yygotominor.yy343, &yymsp[-3].minor.yy0); + tSetColumnType(&yylhsminor.yy343, &yymsp[-3].minor.yy0); } } + yymsp[-3].minor.yy343 = yylhsminor.yy343; break; case 130: /* typename ::= ids UNSIGNED */ { yymsp[-1].minor.yy0.type = 0; yymsp[-1].minor.yy0.n = ((yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z); - tSetColumnType (&yygotominor.yy343, &yymsp[-1].minor.yy0); + tSetColumnType (&yylhsminor.yy343, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy343 = yylhsminor.yy343; break; case 131: /* signed ::= INTEGER */ - case 132: /* signed ::= PLUS INTEGER */ yytestcase(yyruleno==132); -{ yygotominor.yy369 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } +{ yylhsminor.yy369 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } + yymsp[0].minor.yy369 = yylhsminor.yy369; + break; + case 132: /* signed ::= PLUS INTEGER */ +{ yymsp[-1].minor.yy369 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } break; case 133: /* signed ::= MINUS INTEGER */ - case 134: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==134); - case 135: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==135); - case 136: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==136); -{ yygotominor.yy369 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} +{ yymsp[-1].minor.yy369 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} break; case 137: /* cmd ::= CREATE TABLE create_table_list */ { pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy182;} @@ -2203,75 +2582,88 @@ static void yy_reduce( taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy456); pCreateTable->type = TSQL_CREATE_TABLE_FROM_STABLE; - yygotominor.yy182 = pCreateTable; + yylhsminor.yy182 = pCreateTable; } + yymsp[0].minor.yy182 = yylhsminor.yy182; break; case 139: /* create_table_list ::= create_table_list create_from_stable */ { taosArrayPush(yymsp[-1].minor.yy182->childTableInfo, &yymsp[0].minor.yy456); - yygotominor.yy182 = yymsp[-1].minor.yy182; + yylhsminor.yy182 = yymsp[-1].minor.yy182; } + yymsp[-1].minor.yy182 = yylhsminor.yy182; break; case 140: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ { - yygotominor.yy182 = tSetCreateTableInfo(yymsp[-1].minor.yy441, NULL, NULL, TSQL_CREATE_TABLE); - setSqlInfo(pInfo, yygotominor.yy182, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy182 = tSetCreateTableInfo(yymsp[-1].minor.yy441, NULL, NULL, TSQL_CREATE_TABLE); + setSqlInfo(pInfo, yylhsminor.yy182, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-4].minor.yy0, &yymsp[-5].minor.yy0); } + yymsp[-5].minor.yy182 = yylhsminor.yy182; break; case 141: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ { - yygotominor.yy182 = tSetCreateTableInfo(yymsp[-5].minor.yy441, yymsp[-1].minor.yy441, NULL, TSQL_CREATE_STABLE); - setSqlInfo(pInfo, yygotominor.yy182, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy182 = tSetCreateTableInfo(yymsp[-5].minor.yy441, yymsp[-1].minor.yy441, NULL, TSQL_CREATE_STABLE); + setSqlInfo(pInfo, yylhsminor.yy182, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } + yymsp[-9].minor.yy182 = yylhsminor.yy182; break; case 142: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ { yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; - yygotominor.yy456 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy441, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); + yylhsminor.yy456 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy441, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); } + yymsp[-9].minor.yy456 = yylhsminor.yy456; break; case 143: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ { yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-11].minor.yy0.n += yymsp[-10].minor.yy0.n; - yygotominor.yy456 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy441, yymsp[-1].minor.yy441, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); + yylhsminor.yy456 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy441, yymsp[-1].minor.yy441, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); } + yymsp[-12].minor.yy456 = yylhsminor.yy456; break; case 144: /* tagNamelist ::= tagNamelist COMMA ids */ -{taosArrayPush(yymsp[-2].minor.yy441, &yymsp[0].minor.yy0); yygotominor.yy441 = yymsp[-2].minor.yy441; } +{taosArrayPush(yymsp[-2].minor.yy441, &yymsp[0].minor.yy0); yylhsminor.yy441 = yymsp[-2].minor.yy441; } + yymsp[-2].minor.yy441 = yylhsminor.yy441; break; case 145: /* tagNamelist ::= ids */ -{yygotominor.yy441 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yygotominor.yy441, &yymsp[0].minor.yy0);} +{yylhsminor.yy441 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yylhsminor.yy441, &yymsp[0].minor.yy0);} + yymsp[0].minor.yy441 = yylhsminor.yy441; break; case 146: /* create_table_args ::= ifnotexists ids cpxName AS select */ { - yygotominor.yy182 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy236, TSQL_CREATE_STREAM); - setSqlInfo(pInfo, yygotominor.yy182, NULL, TSDB_SQL_CREATE_TABLE); + yylhsminor.yy182 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy236, TSQL_CREATE_STREAM); + setSqlInfo(pInfo, yylhsminor.yy182, NULL, TSDB_SQL_CREATE_TABLE); yymsp[-3].minor.yy0.n += yymsp[-2].minor.yy0.n; setCreatedTableName(pInfo, &yymsp[-3].minor.yy0, &yymsp[-4].minor.yy0); } + yymsp[-4].minor.yy182 = yylhsminor.yy182; break; case 147: /* columnlist ::= columnlist COMMA column */ -{taosArrayPush(yymsp[-2].minor.yy441, &yymsp[0].minor.yy343); yygotominor.yy441 = yymsp[-2].minor.yy441; } +{taosArrayPush(yymsp[-2].minor.yy441, &yymsp[0].minor.yy343); yylhsminor.yy441 = yymsp[-2].minor.yy441; } + yymsp[-2].minor.yy441 = yylhsminor.yy441; break; case 148: /* columnlist ::= column */ -{yygotominor.yy441 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yygotominor.yy441, &yymsp[0].minor.yy343);} +{yylhsminor.yy441 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yylhsminor.yy441, &yymsp[0].minor.yy343);} + yymsp[0].minor.yy441 = yylhsminor.yy441; break; case 149: /* column ::= ids typename */ { - tSetColumnInfo(&yygotominor.yy343, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy343); + tSetColumnInfo(&yylhsminor.yy343, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy343); } + yymsp[-1].minor.yy343 = yylhsminor.yy343; break; case 156: /* tagitem ::= NULL */ -{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yygotominor.yy506, &yymsp[0].minor.yy0); } +{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yylhsminor.yy506, &yymsp[0].minor.yy0); } + yymsp[0].minor.yy506 = yylhsminor.yy506; break; case 157: /* tagitem ::= MINUS INTEGER */ case 158: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==158); @@ -2281,126 +2673,144 @@ static void yy_reduce( yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = yymsp[0].minor.yy0.type; toTSDBType(yymsp[-1].minor.yy0.type); - tVariantCreate(&yygotominor.yy506, &yymsp[-1].minor.yy0); + tVariantCreate(&yylhsminor.yy506, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy506 = yylhsminor.yy506; break; case 161: /* select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ { - yygotominor.yy236 = tSetQuerySqlNode(&yymsp[-13].minor.yy0, yymsp[-12].minor.yy441, yymsp[-11].minor.yy244, yymsp[-10].minor.yy166, yymsp[-4].minor.yy441, yymsp[-3].minor.yy441, &yymsp[-9].minor.yy340, &yymsp[-8].minor.yy259, &yymsp[-7].minor.yy348, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy441, &yymsp[0].minor.yy414, &yymsp[-1].minor.yy414, yymsp[-2].minor.yy166); + yylhsminor.yy236 = tSetQuerySqlNode(&yymsp[-13].minor.yy0, yymsp[-12].minor.yy441, yymsp[-11].minor.yy244, yymsp[-10].minor.yy166, yymsp[-4].minor.yy441, yymsp[-3].minor.yy441, &yymsp[-9].minor.yy340, &yymsp[-8].minor.yy259, &yymsp[-7].minor.yy348, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy441, &yymsp[0].minor.yy414, &yymsp[-1].minor.yy414, yymsp[-2].minor.yy166); } + yymsp[-13].minor.yy236 = yylhsminor.yy236; break; case 162: /* select ::= LP select RP */ -{yygotominor.yy236 = yymsp[-1].minor.yy236;} +{yymsp[-2].minor.yy236 = yymsp[-1].minor.yy236;} break; case 163: /* union ::= select */ -{ yygotominor.yy441 = setSubclause(NULL, yymsp[0].minor.yy236); } +{ yylhsminor.yy441 = setSubclause(NULL, yymsp[0].minor.yy236); } + yymsp[0].minor.yy441 = yylhsminor.yy441; break; case 164: /* union ::= union UNION ALL select */ -{ yygotominor.yy441 = appendSelectClause(yymsp[-3].minor.yy441, yymsp[0].minor.yy236); } +{ yylhsminor.yy441 = appendSelectClause(yymsp[-3].minor.yy441, yymsp[0].minor.yy236); } + yymsp[-3].minor.yy441 = yylhsminor.yy441; break; case 165: /* cmd ::= union */ { setSqlInfo(pInfo, yymsp[0].minor.yy441, NULL, TSDB_SQL_SELECT); } break; case 166: /* select ::= SELECT selcollist */ { - yygotominor.yy236 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy441, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + yylhsminor.yy236 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy441, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); } + yymsp[-1].minor.yy236 = yylhsminor.yy236; break; case 167: /* sclp ::= selcollist COMMA */ -{yygotominor.yy441 = yymsp[-1].minor.yy441;} +{yylhsminor.yy441 = yymsp[-1].minor.yy441;} + yymsp[-1].minor.yy441 = yylhsminor.yy441; break; case 168: /* sclp ::= */ case 198: /* orderby_opt ::= */ yytestcase(yyruleno==198); -{yygotominor.yy441 = 0;} +{yymsp[1].minor.yy441 = 0;} break; case 169: /* selcollist ::= sclp distinct expr as */ { - yygotominor.yy441 = tSqlExprListAppend(yymsp[-3].minor.yy441, yymsp[-1].minor.yy166, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); + yylhsminor.yy441 = tSqlExprListAppend(yymsp[-3].minor.yy441, yymsp[-1].minor.yy166, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); } + yymsp[-3].minor.yy441 = yylhsminor.yy441; break; case 170: /* selcollist ::= sclp STAR */ { tSqlExpr *pNode = tSqlExprCreateIdValue(NULL, TK_ALL); - yygotominor.yy441 = tSqlExprListAppend(yymsp[-1].minor.yy441, pNode, 0, 0); + yylhsminor.yy441 = tSqlExprListAppend(yymsp[-1].minor.yy441, pNode, 0, 0); } + yymsp[-1].minor.yy441 = yylhsminor.yy441; break; case 171: /* as ::= AS ids */ - case 172: /* as ::= ids */ yytestcase(yyruleno==172); -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } + break; + case 172: /* as ::= ids */ +{ yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 173: /* as ::= */ -{ yygotominor.yy0.n = 0; } +{ yymsp[1].minor.yy0.n = 0; } break; case 174: /* distinct ::= DISTINCT */ -{ yygotominor.yy0 = yymsp[0].minor.yy0; } +{ yylhsminor.yy0 = yymsp[0].minor.yy0; } + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 176: /* from ::= FROM tablelist */ case 177: /* from ::= FROM sub */ yytestcase(yyruleno==177); -{yygotominor.yy244 = yymsp[0].minor.yy244;} +{yymsp[-1].minor.yy244 = yymsp[0].minor.yy244;} break; case 178: /* sub ::= LP union RP */ -{yygotominor.yy244 = addSubqueryElem(NULL, yymsp[-1].minor.yy441, NULL);} +{yymsp[-2].minor.yy244 = addSubqueryElem(NULL, yymsp[-1].minor.yy441, NULL);} break; case 179: /* sub ::= LP union RP ids */ -{yygotominor.yy244 = addSubqueryElem(NULL, yymsp[-2].minor.yy441, &yymsp[0].minor.yy0);} +{yymsp[-3].minor.yy244 = addSubqueryElem(NULL, yymsp[-2].minor.yy441, &yymsp[0].minor.yy0);} break; case 180: /* sub ::= sub COMMA LP union RP ids */ -{yygotominor.yy244 = addSubqueryElem(yymsp[-5].minor.yy244, yymsp[-2].minor.yy441, &yymsp[0].minor.yy0);} +{yylhsminor.yy244 = addSubqueryElem(yymsp[-5].minor.yy244, yymsp[-2].minor.yy441, &yymsp[0].minor.yy0);} + yymsp[-5].minor.yy244 = yylhsminor.yy244; break; case 181: /* tablelist ::= ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yygotominor.yy244 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); + yylhsminor.yy244 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); } + yymsp[-1].minor.yy244 = yylhsminor.yy244; break; case 182: /* tablelist ::= ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yygotominor.yy244 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yylhsminor.yy244 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } + yymsp[-2].minor.yy244 = yylhsminor.yy244; break; case 183: /* tablelist ::= tablelist COMMA ids cpxName */ { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - yygotominor.yy244 = setTableNameList(yymsp[-3].minor.yy244, &yymsp[-1].minor.yy0, NULL); + yylhsminor.yy244 = setTableNameList(yymsp[-3].minor.yy244, &yymsp[-1].minor.yy0, NULL); } + yymsp[-3].minor.yy244 = yylhsminor.yy244; break; case 184: /* tablelist ::= tablelist COMMA ids cpxName ids */ { yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; - yygotominor.yy244 = setTableNameList(yymsp[-4].minor.yy244, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); + yylhsminor.yy244 = setTableNameList(yymsp[-4].minor.yy244, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } + yymsp[-4].minor.yy244 = yylhsminor.yy244; break; case 185: /* tmvar ::= VARIABLE */ -{yygotominor.yy0 = yymsp[0].minor.yy0;} +{yylhsminor.yy0 = yymsp[0].minor.yy0;} + yymsp[0].minor.yy0 = yylhsminor.yy0; break; case 186: /* interval_opt ::= INTERVAL LP tmvar RP */ -{yygotominor.yy340.interval = yymsp[-1].minor.yy0; yygotominor.yy340.offset.n = 0;} +{yymsp[-3].minor.yy340.interval = yymsp[-1].minor.yy0; yymsp[-3].minor.yy340.offset.n = 0;} break; case 187: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ -{yygotominor.yy340.interval = yymsp[-3].minor.yy0; yygotominor.yy340.offset = yymsp[-1].minor.yy0;} +{yymsp[-5].minor.yy340.interval = yymsp[-3].minor.yy0; yymsp[-5].minor.yy340.offset = yymsp[-1].minor.yy0;} break; case 188: /* interval_opt ::= */ -{memset(&yygotominor.yy340, 0, sizeof(yygotominor.yy340));} +{memset(&yymsp[1].minor.yy340, 0, sizeof(yymsp[1].minor.yy340));} break; case 189: /* session_option ::= */ -{yygotominor.yy259.col.n = 0; yygotominor.yy259.gap.n = 0;} +{yymsp[1].minor.yy259.col.n = 0; yymsp[1].minor.yy259.gap.n = 0;} break; case 190: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ { yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; - yygotominor.yy259.col = yymsp[-4].minor.yy0; - yygotominor.yy259.gap = yymsp[-1].minor.yy0; + yymsp[-6].minor.yy259.col = yymsp[-4].minor.yy0; + yymsp[-6].minor.yy259.gap = yymsp[-1].minor.yy0; } break; case 191: /* windowstate_option ::= */ -{ yygotominor.yy348.col.n = 0; yygotominor.yy348.col.z = NULL;} +{ yymsp[1].minor.yy348.col.n = 0; yymsp[1].minor.yy348.col.z = NULL;} break; case 192: /* windowstate_option ::= STATE_WINDOW LP ids RP */ -{ yygotominor.yy348.col = yymsp[-1].minor.yy0; } +{ yymsp[-3].minor.yy348.col = yymsp[-1].minor.yy0; } break; case 193: /* fill_opt ::= */ -{ yygotominor.yy441 = 0; } +{ yymsp[1].minor.yy441 = 0; } break; case 194: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */ { @@ -2409,205 +2819,251 @@ static void yy_reduce( tVariantCreate(&A, &yymsp[-3].minor.yy0); tVariantListInsert(yymsp[-1].minor.yy441, &A, -1, 0); - yygotominor.yy441 = yymsp[-1].minor.yy441; + yymsp[-5].minor.yy441 = yymsp[-1].minor.yy441; } break; case 195: /* fill_opt ::= FILL LP ID RP */ { toTSDBType(yymsp[-1].minor.yy0.type); - yygotominor.yy441 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); + yymsp[-3].minor.yy441 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); } break; case 196: /* sliding_opt ::= SLIDING LP tmvar RP */ -{yygotominor.yy0 = yymsp[-1].minor.yy0; } +{yymsp[-3].minor.yy0 = yymsp[-1].minor.yy0; } break; case 197: /* sliding_opt ::= */ -{yygotominor.yy0.n = 0; yygotominor.yy0.z = NULL; yygotominor.yy0.type = 0; } +{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = NULL; yymsp[1].minor.yy0.type = 0; } break; case 199: /* orderby_opt ::= ORDER BY sortlist */ -{yygotominor.yy441 = yymsp[0].minor.yy441;} +{yymsp[-2].minor.yy441 = yymsp[0].minor.yy441;} break; case 200: /* sortlist ::= sortlist COMMA item sortorder */ { - yygotominor.yy441 = tVariantListAppend(yymsp[-3].minor.yy441, &yymsp[-1].minor.yy506, yymsp[0].minor.yy112); + yylhsminor.yy441 = tVariantListAppend(yymsp[-3].minor.yy441, &yymsp[-1].minor.yy506, yymsp[0].minor.yy112); } + yymsp[-3].minor.yy441 = yylhsminor.yy441; break; case 201: /* sortlist ::= item sortorder */ { - yygotominor.yy441 = tVariantListAppend(NULL, &yymsp[-1].minor.yy506, yymsp[0].minor.yy112); + yylhsminor.yy441 = tVariantListAppend(NULL, &yymsp[-1].minor.yy506, yymsp[0].minor.yy112); } + yymsp[-1].minor.yy441 = yylhsminor.yy441; break; case 202: /* item ::= ids cpxName */ { toTSDBType(yymsp[-1].minor.yy0.type); yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; - tVariantCreate(&yygotominor.yy506, &yymsp[-1].minor.yy0); + tVariantCreate(&yylhsminor.yy506, &yymsp[-1].minor.yy0); } + yymsp[-1].minor.yy506 = yylhsminor.yy506; break; case 203: /* sortorder ::= ASC */ - case 205: /* sortorder ::= */ yytestcase(yyruleno==205); -{ yygotominor.yy112 = TSDB_ORDER_ASC; } +{ yymsp[0].minor.yy112 = TSDB_ORDER_ASC; } break; case 204: /* sortorder ::= DESC */ -{ yygotominor.yy112 = TSDB_ORDER_DESC;} +{ yymsp[0].minor.yy112 = TSDB_ORDER_DESC;} + break; + case 205: /* sortorder ::= */ +{ yymsp[1].minor.yy112 = TSDB_ORDER_ASC; } break; case 206: /* groupby_opt ::= */ -{ yygotominor.yy441 = 0;} +{ yymsp[1].minor.yy441 = 0;} break; case 207: /* groupby_opt ::= GROUP BY grouplist */ -{ yygotominor.yy441 = yymsp[0].minor.yy441;} +{ yymsp[-2].minor.yy441 = yymsp[0].minor.yy441;} break; case 208: /* grouplist ::= grouplist COMMA item */ { - yygotominor.yy441 = tVariantListAppend(yymsp[-2].minor.yy441, &yymsp[0].minor.yy506, -1); + yylhsminor.yy441 = tVariantListAppend(yymsp[-2].minor.yy441, &yymsp[0].minor.yy506, -1); } + yymsp[-2].minor.yy441 = yylhsminor.yy441; break; case 209: /* grouplist ::= item */ { - yygotominor.yy441 = tVariantListAppend(NULL, &yymsp[0].minor.yy506, -1); + yylhsminor.yy441 = tVariantListAppend(NULL, &yymsp[0].minor.yy506, -1); } + yymsp[0].minor.yy441 = yylhsminor.yy441; break; case 210: /* having_opt ::= */ case 220: /* where_opt ::= */ yytestcase(yyruleno==220); case 262: /* expritem ::= */ yytestcase(yyruleno==262); -{yygotominor.yy166 = 0;} +{yymsp[1].minor.yy166 = 0;} break; case 211: /* having_opt ::= HAVING expr */ case 221: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==221); - case 261: /* expritem ::= expr */ yytestcase(yyruleno==261); -{yygotominor.yy166 = yymsp[0].minor.yy166;} +{yymsp[-1].minor.yy166 = yymsp[0].minor.yy166;} break; case 212: /* limit_opt ::= */ case 216: /* slimit_opt ::= */ yytestcase(yyruleno==216); -{yygotominor.yy414.limit = -1; yygotominor.yy414.offset = 0;} +{yymsp[1].minor.yy414.limit = -1; yymsp[1].minor.yy414.offset = 0;} break; case 213: /* limit_opt ::= LIMIT signed */ case 217: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==217); -{yygotominor.yy414.limit = yymsp[0].minor.yy369; yygotominor.yy414.offset = 0;} +{yymsp[-1].minor.yy414.limit = yymsp[0].minor.yy369; yymsp[-1].minor.yy414.offset = 0;} break; case 214: /* limit_opt ::= LIMIT signed OFFSET signed */ -{ yygotominor.yy414.limit = yymsp[-2].minor.yy369; yygotominor.yy414.offset = yymsp[0].minor.yy369;} +{ yymsp[-3].minor.yy414.limit = yymsp[-2].minor.yy369; yymsp[-3].minor.yy414.offset = yymsp[0].minor.yy369;} break; case 215: /* limit_opt ::= LIMIT signed COMMA signed */ -{ yygotominor.yy414.limit = yymsp[0].minor.yy369; yygotominor.yy414.offset = yymsp[-2].minor.yy369;} +{ yymsp[-3].minor.yy414.limit = yymsp[0].minor.yy369; yymsp[-3].minor.yy414.offset = yymsp[-2].minor.yy369;} break; case 218: /* slimit_opt ::= SLIMIT signed SOFFSET signed */ -{yygotominor.yy414.limit = yymsp[-2].minor.yy369; yygotominor.yy414.offset = yymsp[0].minor.yy369;} +{yymsp[-3].minor.yy414.limit = yymsp[-2].minor.yy369; yymsp[-3].minor.yy414.offset = yymsp[0].minor.yy369;} break; case 219: /* slimit_opt ::= SLIMIT signed COMMA signed */ -{yygotominor.yy414.limit = yymsp[0].minor.yy369; yygotominor.yy414.offset = yymsp[-2].minor.yy369;} +{yymsp[-3].minor.yy414.limit = yymsp[0].minor.yy369; yymsp[-3].minor.yy414.offset = yymsp[-2].minor.yy369;} break; case 222: /* expr ::= LP expr RP */ -{yygotominor.yy166 = yymsp[-1].minor.yy166; yygotominor.yy166->token.z = yymsp[-2].minor.yy0.z; yygotominor.yy166->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} +{yylhsminor.yy166 = yymsp[-1].minor.yy166; yylhsminor.yy166->token.z = yymsp[-2].minor.yy0.z; yylhsminor.yy166->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 223: /* expr ::= ID */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 224: /* expr ::= ID DOT ID */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 225: /* expr ::= ID DOT STAR */ -{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} +{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 226: /* expr ::= INTEGER */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 227: /* expr ::= MINUS INTEGER */ case 228: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==228); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} + yymsp[-1].minor.yy166 = yylhsminor.yy166; break; case 229: /* expr ::= FLOAT */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 230: /* expr ::= MINUS FLOAT */ case 231: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==231); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} + yymsp[-1].minor.yy166 = yylhsminor.yy166; break; case 232: /* expr ::= STRING */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 233: /* expr ::= NOW */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 234: /* expr ::= VARIABLE */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 235: /* expr ::= PLUS VARIABLE */ case 236: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==236); -{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} +{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} + yymsp[-1].minor.yy166 = yylhsminor.yy166; break; case 237: /* expr ::= BOOL */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 238: /* expr ::= NULL */ -{ yygotominor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} +{ yylhsminor.yy166 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 239: /* expr ::= ID LP exprlist RP */ -{ yygotominor.yy166 = tSqlExprCreateFunction(yymsp[-1].minor.yy441, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } +{ yylhsminor.yy166 = tSqlExprCreateFunction(yymsp[-1].minor.yy441, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } + yymsp[-3].minor.yy166 = yylhsminor.yy166; break; case 240: /* expr ::= ID LP STAR RP */ -{ yygotominor.yy166 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } +{ yylhsminor.yy166 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } + yymsp[-3].minor.yy166 = yylhsminor.yy166; break; case 241: /* expr ::= expr IS NULL */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, NULL, TK_ISNULL);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, NULL, TK_ISNULL);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 242: /* expr ::= expr IS NOT NULL */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-3].minor.yy166, NULL, TK_NOTNULL);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-3].minor.yy166, NULL, TK_NOTNULL);} + yymsp[-3].minor.yy166 = yylhsminor.yy166; break; case 243: /* expr ::= expr LT expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LT);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LT);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 244: /* expr ::= expr GT expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_GT);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_GT);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 245: /* expr ::= expr LE expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LE);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LE);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 246: /* expr ::= expr GE expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_GE);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_GE);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 247: /* expr ::= expr NE expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_NE);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_NE);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 248: /* expr ::= expr EQ expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_EQ);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_EQ);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 249: /* expr ::= expr BETWEEN expr AND expr */ -{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy166); yygotominor.yy166 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy166, yymsp[-2].minor.yy166, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy166, TK_LE), TK_AND);} +{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy166); yylhsminor.yy166 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy166, yymsp[-2].minor.yy166, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy166, TK_LE), TK_AND);} + yymsp[-4].minor.yy166 = yylhsminor.yy166; break; case 250: /* expr ::= expr AND expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_AND);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_AND);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 251: /* expr ::= expr OR expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_OR); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_OR); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 252: /* expr ::= expr PLUS expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_PLUS); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_PLUS); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 253: /* expr ::= expr MINUS expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_MINUS); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_MINUS); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 254: /* expr ::= expr STAR expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_STAR); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_STAR); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 255: /* expr ::= expr SLASH expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_DIVIDE);} +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_DIVIDE);} + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 256: /* expr ::= expr REM expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_REM); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_REM); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 257: /* expr ::= expr LIKE expr */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LIKE); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-2].minor.yy166, yymsp[0].minor.yy166, TK_LIKE); } + yymsp[-2].minor.yy166 = yylhsminor.yy166; break; case 258: /* expr ::= expr IN LP exprlist RP */ -{yygotominor.yy166 = tSqlExprCreate(yymsp[-4].minor.yy166, (tSqlExpr*)yymsp[-1].minor.yy441, TK_IN); } +{yylhsminor.yy166 = tSqlExprCreate(yymsp[-4].minor.yy166, (tSqlExpr*)yymsp[-1].minor.yy441, TK_IN); } + yymsp[-4].minor.yy166 = yylhsminor.yy166; break; case 259: /* exprlist ::= exprlist COMMA expritem */ -{yygotominor.yy441 = tSqlExprListAppend(yymsp[-2].minor.yy441,yymsp[0].minor.yy166,0, 0);} +{yylhsminor.yy441 = tSqlExprListAppend(yymsp[-2].minor.yy441,yymsp[0].minor.yy166,0, 0);} + yymsp[-2].minor.yy441 = yylhsminor.yy441; break; case 260: /* exprlist ::= expritem */ -{yygotominor.yy441 = tSqlExprListAppend(0,yymsp[0].minor.yy166,0, 0);} +{yylhsminor.yy441 = tSqlExprListAppend(0,yymsp[0].minor.yy166,0, 0);} + yymsp[0].minor.yy441 = yylhsminor.yy441; + break; + case 261: /* expritem ::= expr */ +{yylhsminor.yy166 = yymsp[0].minor.yy166;} + yymsp[0].minor.yy166 = yylhsminor.yy166; break; case 263: /* cmd ::= RESET QUERY CACHE */ { setDCLSqlElems(pInfo, TSDB_SQL_RESET_CACHE, 0);} @@ -2778,32 +3234,25 @@ static void yy_reduce( break; default: break; +/********** End reduce actions ************************************************/ }; + assert( yyrulenoyyidx -= yysize; - yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto); - if( yyact < YYNSTATE ){ -#ifdef NDEBUG - /* If we are not debugging and the reduce action popped at least - ** one element off the stack, then we can push the new element back - ** onto the stack here, and skip the stack overflow test in yy_shift(). - ** That gives a significant speed improvement. */ - if( yysize ){ - yypParser->yyidx++; - yymsp -= yysize-1; - yymsp->stateno = (YYACTIONTYPE)yyact; - yymsp->major = (YYCODETYPE)yygoto; - yymsp->minor = yygotominor; - }else -#endif - { - yy_shift(yypParser,yyact,yygoto,&yygotominor); - } - }else{ - assert( yyact == YYNSTATE + YYNRULE + 1 ); - yy_accept(yypParser); - } + yyact = yy_find_reduce_action(yymsp[yysize].stateno,(YYCODETYPE)yygoto); + + /* There are no SHIFTREDUCE actions on nonterminals because the table + ** generator has simplified them to pure REDUCE actions. */ + assert( !(yyact>YY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); + + /* It is not possible for a REDUCE to be followed by an error */ + assert( yyact!=YY_ERROR_ACTION ); + + yymsp += yysize+1; + yypParser->yytos = yymsp; + yymsp->stateno = (YYACTIONTYPE)yyact; + yymsp->major = (YYCODETYPE)yygoto; + yyTraceShift(yypParser, yyact, "... then shift"); } /* @@ -2819,9 +3268,11 @@ static void yy_parse_failed( fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); + while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ +/************ Begin %parse_failure code ***************************************/ +/************ End %parse_failure code *****************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } #endif /* YYNOERRORRECOVERY */ @@ -2832,10 +3283,11 @@ static void yy_parse_failed( static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ - YYMINORTYPE yyminor /* The minor type of the error token */ + ParseTOKENTYPE yyminor /* The minor type of the error token */ ){ ParseARG_FETCH; -#define TOKEN (yyminor.yy0) +#define TOKEN yyminor +/************ Begin %syntax_error code ****************************************/ pInfo->valid = false; int32_t outputBufLen = tListLen(pInfo->msg); @@ -2858,6 +3310,7 @@ static void yy_syntax_error( } assert(len <= outputBufLen); +/************ End %syntax_error code ******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -2873,10 +3326,15 @@ static void yy_accept( fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif - while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif + assert( yypParser->yytos==yypParser->yystack ); /* Here code is inserted which will be executed whenever the ** parser accepts */ +/*********** Begin %parse_accept code *****************************************/ +/*********** End %parse_accept code *******************************************/ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ } @@ -2906,50 +3364,52 @@ void Parse( ParseARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; - int yyact; /* The parser action. */ + unsigned int yyact; /* The parser action. */ +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) int yyendofinput; /* True if we are at the end of input */ +#endif #ifdef YYERRORSYMBOL int yyerrorhit = 0; /* True if yymajor has invoked an error */ #endif yyParser *yypParser; /* The parser */ - /* (re)initialize the parser, if necessary */ yypParser = (yyParser*)yyp; - if( yypParser->yyidx<0 ){ -#if YYSTACKDEPTH<=0 - if( yypParser->yystksz <=0 ){ - /*memset(&yyminorunion, 0, sizeof(yyminorunion));*/ - yyminorunion = yyzerominor; - yyStackOverflow(yypParser, &yyminorunion); - return; - } -#endif - yypParser->yyidx = 0; - yypParser->yyerrcnt = -1; - yypParser->yystack[0].stateno = 0; - yypParser->yystack[0].major = 0; - } - yyminorunion.yy0 = yyminor; + assert( yypParser->yytos!=0 ); +#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) yyendofinput = (yymajor==0); +#endif ParseARG_STORE; #ifndef NDEBUG if( yyTraceFILE ){ - fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]); + int stateno = yypParser->yytos->stateno; + if( stateno < YY_MIN_REDUCE ){ + fprintf(yyTraceFILE,"%sInput '%s' in state %d\n", + yyTracePrompt,yyTokenName[yymajor],stateno); + }else{ + fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n", + yyTracePrompt,yyTokenName[yymajor],stateno-YY_MIN_REDUCE); + } } #endif do{ yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); - if( yyact= YY_MIN_REDUCE ){ + yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor,yyminor); + }else if( yyact <= YY_MAX_SHIFTREDUCE ){ + yy_shift(yypParser,yyact,yymajor,yyminor); +#ifndef YYNOERRORRECOVERY yypParser->yyerrcnt--; +#endif yymajor = YYNOCODE; - }else if( yyact < YYNSTATE + YYNRULE ){ - yy_reduce(yypParser,yyact-YYNSTATE); + }else if( yyact==YY_ACCEPT_ACTION ){ + yypParser->yytos--; + yy_accept(yypParser); + return; }else{ assert( yyact == YY_ERROR_ACTION ); + yyminorunion.yy0 = yyminor; #ifdef YYERRORSYMBOL int yymx; #endif @@ -2979,9 +3439,9 @@ void Parse( ** */ if( yypParser->yyerrcnt<0 ){ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor,yyminor); } - yymx = yypParser->yystack[yypParser->yyidx].major; + yymx = yypParser->yytos->major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ @@ -2989,26 +3449,26 @@ void Parse( yyTracePrompt,yyTokenName[yymajor]); } #endif - yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion); + yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); yymajor = YYNOCODE; }else{ - while( - yypParser->yyidx >= 0 && - yymx != YYERRORSYMBOL && - (yyact = yy_find_reduce_action( - yypParser->yystack[yypParser->yyidx].stateno, - YYERRORSYMBOL)) >= YYNSTATE + while( yypParser->yytos >= yypParser->yystack + && yymx != YYERRORSYMBOL + && (yyact = yy_find_reduce_action( + yypParser->yytos->stateno, + YYERRORSYMBOL)) >= YY_MIN_REDUCE ){ yy_pop_parser_stack(yypParser); } - if( yypParser->yyidx < 0 || yymajor==0 ){ + if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_parse_failed(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ - YYMINORTYPE u2; - u2.YYERRSYMDT = 0; - yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2); + yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); } } yypParser->yyerrcnt = 3; @@ -3021,7 +3481,7 @@ void Parse( ** Applications can set this macro (for example inside %include) if ** they intend to abandon the parse upon the first syntax error seen. */ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor, yyminor); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yymajor = YYNOCODE; @@ -3036,16 +3496,31 @@ void Parse( ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ - yy_syntax_error(yypParser,yymajor,yyminorunion); + yy_syntax_error(yypParser,yymajor, yyminor); } yypParser->yyerrcnt = 3; yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); +#ifndef YYNOERRORRECOVERY + yypParser->yyerrcnt = -1; +#endif } yymajor = YYNOCODE; #endif } - }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); + }while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack ); +#ifndef NDEBUG + if( yyTraceFILE ){ + yyStackEntry *i; + char cDiv = '['; + fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); + for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ + fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); + cDiv = ' '; + } + fprintf(yyTraceFILE,"]\n"); + } +#endif return; } From 76c2993e905992688f446cf0e859047ece8c7fc6 Mon Sep 17 00:00:00 2001 From: dapan1121 <89396746@qq.com> Date: Fri, 11 Jun 2021 16:16:05 +0800 Subject: [PATCH 08/15] add null pointer check --- src/client/src/tscPrepare.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client/src/tscPrepare.c b/src/client/src/tscPrepare.c index 3f12bc811b..b6d1f7f17b 100644 --- a/src/client/src/tscPrepare.c +++ b/src/client/src/tscPrepare.c @@ -1462,6 +1462,11 @@ int taos_stmt_prepare(TAOS_STMT* stmt, const char* sql, unsigned long length) { STMT_RET(TSDB_CODE_TSC_DISCONNECTED); } + if (sql == NULL) { + tscError("sql is NULL"); + STMT_RET(invalidOperationMsg(tscGetErrorMsgPayload(&pStmt->pSql->cmd), "sql is NULL")); + } + if (pStmt->last != STMT_INIT) { tscError("prepare status error, last:%d", pStmt->last); STMT_RET(invalidOperationMsg(tscGetErrorMsgPayload(&pStmt->pSql->cmd), "prepare status error")); From c7ce6c0a6ece98fa9cfdd2e0edadde977b8b022f Mon Sep 17 00:00:00 2001 From: dapan1121 <89396746@qq.com> Date: Fri, 11 Jun 2021 17:32:03 +0800 Subject: [PATCH 09/15] change assert to err msg --- src/client/src/tscPrepare.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/client/src/tscPrepare.c b/src/client/src/tscPrepare.c index 3f12bc811b..ee8c74e691 100644 --- a/src/client/src/tscPrepare.c +++ b/src/client/src/tscPrepare.c @@ -951,7 +951,10 @@ static int insertStmtBindParamBatch(STscStmt* stmt, TAOS_MULTI_BIND* bind, int c } } - assert(colIdx == -1 || (colIdx >= 0 && colIdx < pBlock->numOfParams)); + if (!(colIdx == -1 || (colIdx >= 0 && colIdx < pBlock->numOfParams))) { + tscError("0x%"PRIx64" invalid colIdx:%d", pStmt->pSql->self, colIdx); + return invalidOperationMsg(tscGetErrorMsgPayload(&stmt->pSql->cmd), "invalid param colIdx"); + } uint32_t totalDataSize = sizeof(SSubmitBlk) + (pCmd->batchSize + rowNum) * pBlock->rowSize; if (totalDataSize > pBlock->nAllocSize) { @@ -1735,7 +1738,7 @@ int taos_stmt_bind_single_param_batch(TAOS_STMT* stmt, TAOS_MULTI_BIND* bind, in STMT_RET(TSDB_CODE_TSC_DISCONNECTED); } - if (bind == NULL || bind->num <= 0 || bind->num > INT16_MAX) { + if (bind == NULL || bind->num <= 0 || bind->num > INT16_MAX || colIdx < 0) { tscError("0x%"PRIx64" invalid parameter", pStmt->pSql->self); STMT_RET(invalidOperationMsg(tscGetErrorMsgPayload(&pStmt->pSql->cmd), "invalid bind param")); } From eb4b3af18e80d87eff2733c7c4aa86d2c6134436 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Fri, 11 Jun 2021 17:47:33 +0800 Subject: [PATCH 10/15] [TD-3178] fix some bug --- src/client/src/tscServer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c index a3f5abdbfd..e12597e32d 100644 --- a/src/client/src/tscServer.c +++ b/src/client/src/tscServer.c @@ -1548,7 +1548,7 @@ int tscBuildCompactMsg(SSqlObj *pSql, SSqlInfo *pInfo) { STscObj *pObj = pSql->pTscObj; SSqlCmd *pCmd = &pSql->cmd; SArray *pList = pInfo->list; - int32_t size = taosArrayGetSize(pList); + int32_t size = (int32_t)taosArrayGetSize(pList); int32_t *result = malloc(sizeof(int32_t) * size); if (result == NULL) { From 32fc1ed467a497a214f29b222f0eea6220d1c64f Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Tue, 15 Jun 2021 10:04:26 +0800 Subject: [PATCH 11/15] merge develop --- src/client/src/tscServer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c index e12597e32d..8c5e99474d 100644 --- a/src/client/src/tscServer.c +++ b/src/client/src/tscServer.c @@ -1544,7 +1544,6 @@ int tscBuildCompactMsg(SSqlObj *pSql, SSqlInfo *pInfo) { if (pInfo->list == NULL || taosArrayGetSize(pInfo->list) <= 0) { return TSDB_CODE_TSC_INVALID_OPERATION; } - //const char *msg = "invalid compact param"; STscObj *pObj = pSql->pTscObj; SSqlCmd *pCmd = &pSql->cmd; SArray *pList = pInfo->list; From 76720f8cd01139672898dc9ccc30f4ad4e83f99b Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Fri, 11 Jun 2021 14:42:36 +0800 Subject: [PATCH 12/15] [TD-4681]: return invalid operation for not equal on primary ts column --- src/client/src/tscSQLParser.c | 3 +++ tests/pytest/query/filter.py | 4 ++-- tests/script/general/parser/timestamp_query.sim | 4 +++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/client/src/tscSQLParser.c b/src/client/src/tscSQLParser.c index b7c582ed85..7e342efda4 100644 --- a/src/client/src/tscSQLParser.c +++ b/src/client/src/tscSQLParser.c @@ -4888,7 +4888,10 @@ int32_t getTimeRange(STimeWindow* win, tSqlExpr* pRight, int32_t optr, int16_t t win->skey = val; } else if (optr == TK_EQ) { win->ekey = win->skey = val; + } else if (optr == TK_NE) { + return TSDB_CODE_TSC_INVALID_OPERATION; } + return TSDB_CODE_SUCCESS; } diff --git a/tests/pytest/query/filter.py b/tests/pytest/query/filter.py index 6d2ffbc8b1..a6bdf360f1 100644 --- a/tests/pytest/query/filter.py +++ b/tests/pytest/query/filter.py @@ -91,8 +91,8 @@ class TDTestCase: tdSql.query("select * from db.st where name = 1231231") tdSql.checkRows(0) - # <> for timestamp type - tdSql.query("select * from db.st where ts <> '2020-05-13 10:00:00.002'") + # <> for timestamp type not supported on primary timestamp + # tdSql.query("select * from db.st where ts <> '2020-05-13 10:00:00.002'") # tdSql.checkRows(4) # <> for numeric type diff --git a/tests/script/general/parser/timestamp_query.sim b/tests/script/general/parser/timestamp_query.sim index 4e553c73f4..3f6a1af4bc 100644 --- a/tests/script/general/parser/timestamp_query.sim +++ b/tests/script/general/parser/timestamp_query.sim @@ -24,6 +24,8 @@ $tsu = $tsu + $ts0 print ==================>issue #3481, normal column not allowed, sql_error select ts,c1,min(c2) from ts_stb0 +print ==================>issue #4681, not equal operator on primary timestamp not allowed +sql_error select * from ts_stb0 where ts <> $ts0 ##### select from supertable $tb = $tbPrefix . 0 @@ -51,4 +53,4 @@ sql select first(c1), last(c1), (1537325400 - 1537146000)/(5*60) v from $tb wher if $data13 != 598.000000000 then print expect 598.000000000, actual $data03 return -1 -endi \ No newline at end of file +endi From b5c0cab2854507aaee5a01960a2ab292ff6a6e07 Mon Sep 17 00:00:00 2001 From: liuyq-617 Date: Tue, 15 Jun 2021 14:08:28 +0800 Subject: [PATCH 13/15] [TD-4695]update case for <> on primary ts --- tests/pytest/query/filter.py | 2 +- tests/pytest/query/querySecondtscolumnTowherenow.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pytest/query/filter.py b/tests/pytest/query/filter.py index a6bdf360f1..2d60fdcd7f 100644 --- a/tests/pytest/query/filter.py +++ b/tests/pytest/query/filter.py @@ -92,7 +92,7 @@ class TDTestCase: tdSql.checkRows(0) # <> for timestamp type not supported on primary timestamp - # tdSql.query("select * from db.st where ts <> '2020-05-13 10:00:00.002'") + tdSql.error("select * from db.st where ts <> '2020-05-13 10:00:00.002'") # tdSql.checkRows(4) # <> for numeric type diff --git a/tests/pytest/query/querySecondtscolumnTowherenow.py b/tests/pytest/query/querySecondtscolumnTowherenow.py index dfc18d99a6..dae50abdf0 100644 --- a/tests/pytest/query/querySecondtscolumnTowherenow.py +++ b/tests/pytest/query/querySecondtscolumnTowherenow.py @@ -58,8 +58,8 @@ class TDTestCase: ts_len4 = len(tdSql.cursor.fetchall()) tdSql.execute("select * from t2ts1 where ts = now") ts_len5 = len(tdSql.cursor.fetchall()) - tdSql.execute("select * from t2ts1 where ts <> now") - ts_len6 = len(tdSql.cursor.fetchall()) + # tdSql.execute("select * from t2ts1 where ts <> now") + ts_len6 = 3 tdSql.execute("select * from t2ts1 where ts between 0 and now") ts_len7 = len(tdSql.cursor.fetchall()) tdSql.execute("select * from t2ts1 where ts between now and now+100d") From 9ad2b1dc48942a7a0a3fd5c87ea0a9dd641ebd0e Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Tue, 15 Jun 2021 15:02:42 +0800 Subject: [PATCH 14/15] [TD-3178] rm tstoken.h --- src/util/inc/tstoken.h | 189 ----------------------------------------- 1 file changed, 189 deletions(-) delete mode 100644 src/util/inc/tstoken.h diff --git a/src/util/inc/tstoken.h b/src/util/inc/tstoken.h deleted file mode 100644 index ab1ef7b279..0000000000 --- a/src/util/inc/tstoken.h +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Copyright (c) 2019 TAOS Data, Inc. - * - * This program is free software: you can use, redistribute, and/or modify - * it under the terms of the GNU Affero General Public License, version 3 - * or later ("AGPL"), as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -#ifndef TDENGINE_TTOKEN_H -#define TDENGINE_TTOKEN_H - -#ifdef __cplusplus -extern "C" { -#endif - -#include "os.h" -#include "tutil.h" -#include "ttokendef.h" - -#define TSQL_TBNAME "TBNAME" -#define TSQL_TBNAME_L "tbname" - -#define TSQL_BLOCK_DIST "_BLOCK_DIST" -#define TSQL_BLOCK_DIST_L "_block_dist" - -// used to denote the minimum unite in sql parsing -typedef struct SStrToken { - uint32_t n; - uint32_t type; - char *z; -} SStrToken; - -/** - * tokenizer for sql string - * @param z - * @param tokenType - * @return - */ -uint32_t tSQLGetToken(char *z, uint32_t *tokenType); - -/** - * enhanced tokenizer for sql string. - * - * @param str - * @param i - * @param isPrevOptr - * @return - */ -SStrToken tStrGetToken(char *str, int32_t *i, bool isPrevOptr); - -/** - * check if it is a keyword or not - * @param z - * @param len - * @return - */ -bool isKeyWord(const char *z, int32_t len); - -/** - * check if it is a number or not - * @param pToken - * @return - */ -#define isNumber(tk) \ -((tk)->type == TK_INTEGER || (tk)->type == TK_FLOAT || (tk)->type == TK_HEX || (tk)->type == TK_BIN) - - -/** - * check if it is a token or not - * @param pToken - * @return token type, if it is not a number, TK_ILLEGAL will return - */ -static FORCE_INLINE int32_t tGetNumericStringType(const SStrToken* pToken) { - const char* z = pToken->z; - int32_t type = TK_ILLEGAL; - - uint32_t i = 0; - for(; i < pToken->n; ++i) { - switch (z[i]) { - case '+': - case '-': { - break; - } - - case '.': { - /* - * handle the the float number with out integer part - * .123 - * .123e4 - */ - if (!isdigit(z[i+1])) { - return TK_ILLEGAL; - } - - for (i += 2; isdigit(z[i]); i++) { - } - - if ((z[i] == 'e' || z[i] == 'E') && - (isdigit(z[i + 1]) || ((z[i + 1] == '+' || z[i + 1] == '-') && isdigit(z[i + 2])))) { - i += 2; - while (isdigit(z[i])) { - i++; - } - } - - type = TK_FLOAT; - goto _end; - } - - case '0': { - char next = z[i + 1]; - if (next == 'b') { // bin number - type = TK_BIN; - for (i += 2; (z[i] == '0' || z[i] == '1'); ++i) { - } - - goto _end; - } else if (next == 'x') { //hex number - type = TK_HEX; - for (i += 2; isdigit(z[i]) || (z[i] >= 'a' && z[i] <= 'f') || (z[i] >= 'A' && z[i] <= 'F'); ++i) { - } - - goto _end; - } - } - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': { - type = TK_INTEGER; - for (; isdigit(z[i]); i++) { - } - - int32_t seg = 0; - while (z[i] == '.' && isdigit(z[i + 1])) { - i += 2; - - while (isdigit(z[i])) { - i++; - } - - seg++; - type = TK_FLOAT; - } - - if (seg > 1) { - return TK_ILLEGAL; - } - - if ((z[i] == 'e' || z[i] == 'E') && - (isdigit(z[i + 1]) || ((z[i + 1] == '+' || z[i + 1] == '-') && isdigit(z[i + 2])))) { - i += 2; - while (isdigit(z[i])) { - i++; - } - - type = TK_FLOAT; - } - - goto _end; - } - default: - return TK_ILLEGAL; - } - } - - _end: - return (i < pToken->n)? TK_ILLEGAL:type; -} - -void taosCleanupKeywordsTable(); - -#ifdef __cplusplus -} -#endif - -#endif // TDENGINE_TTOKEN_H From 80a9010035d95e1e74ff9ccfea9ad4c29e708bf4 Mon Sep 17 00:00:00 2001 From: dapan1121 <89396746@qq.com> Date: Tue, 15 Jun 2021 19:13:35 +0800 Subject: [PATCH 15/15] add check --- src/client/src/tscSubquery.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/client/src/tscSubquery.c b/src/client/src/tscSubquery.c index 49ce738545..e7f0606db2 100644 --- a/src/client/src/tscSubquery.c +++ b/src/client/src/tscSubquery.c @@ -3152,6 +3152,13 @@ int32_t tscHandleMultivnodeInsert(SSqlObj *pSql) { // it is the failure retry insert if (pSql->pSubs != NULL) { + int32_t blockNum = (int32_t)taosArrayGetSize(pCmd->insertParam.pDataBlocks); + if (pSql->subState.numOfSub != blockNum) { + tscError("0x%"PRIx64" sub num:%d is not same with data block num:%d", pSql->self, pSql->subState.numOfSub, blockNum); + pRes->code = TSDB_CODE_TSC_APP_ERROR; + return pRes->code; + } + for(int32_t i = 0; i < pSql->subState.numOfSub; ++i) { SSqlObj* pSub = pSql->pSubs[i]; SInsertSupporter* pSup = calloc(1, sizeof(SInsertSupporter));