Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
cf9ba60e
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cf9ba60e
编写于
9月 21, 2020
作者:
Y
yihaoDeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support option to db
上级
4209f666
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
1629 addition
and
2279 deletion
+1629
-2279
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+1
-0
src/inc/ttokendef.h
src/inc/ttokendef.h
+206
-205
src/query/inc/qSqlparser.h
src/query/inc/qSqlparser.h
+1
-0
src/query/inc/sql.y
src/query/inc/sql.y
+3
-0
src/query/src/qTokenizer.c
src/query/src/qTokenizer.c
+2
-1
src/query/src/sql.c
src/query/src/sql.c
+1345
-2073
tests/pytest/alter/db_update_options.py
tests/pytest/alter/db_update_options.py
+71
-0
未找到文件。
src/client/src/tscSQLParser.c
浏览文件 @
cf9ba60e
...
...
@@ -5183,6 +5183,7 @@ static void setCreateDBOption(SCMCreateDbMsg* pMsg, SCreateDBInfo* pCreateDb) {
pMsg
->
replications
=
pCreateDb
->
replica
;
pMsg
->
quorum
=
pCreateDb
->
quorum
;
pMsg
->
ignoreExist
=
pCreateDb
->
ignoreExists
;
pMsg
->
update
=
pCreateDb
->
update
;
}
int32_t
parseCreateDBOptions
(
SSqlCmd
*
pCmd
,
SCreateDBInfo
*
pCreateDbSql
)
{
...
...
src/inc/ttokendef.h
浏览文件 @
cf9ba60e
...
...
@@ -16,212 +16,213 @@
#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_MNODES 46
#define TK_DNODES 47
#define TK_ACCOUNTS 48
#define TK_USERS 49
#define TK_MODULES 50
#define TK_QUERIES 51
#define TK_CONNECTIONS 52
#define TK_STREAMS 53
#define TK_VARIABLES 54
#define TK_SCORES 55
#define TK_GRANTS 56
#define TK_VNODES 57
#define TK_IPTOKEN 58
#define TK_DOT 59
#define TK_TABLES 60
#define TK_STABLES 61
#define TK_VGROUPS 62
#define TK_DROP 63
#define TK_TABLE 64
#define TK_DATABASE 65
#define TK_DNODE 66
#define TK_USER 67
#define TK_ACCOUNT 68
#define TK_USE 69
#define TK_DESCRIBE 70
#define TK_ALTER 71
#define TK_PASS 72
#define TK_PRIVILEGE 73
#define TK_LOCAL 74
#define TK_IF 75
#define TK_EXISTS 76
#define TK_CREATE 77
#define TK_PPS 78
#define TK_TSERIES 79
#define TK_DBS 80
#define TK_STORAGE 81
#define TK_QTIME 82
#define TK_CONNS 83
#define TK_STATE 84
#define TK_KEEP 85
#define TK_CACHE 86
#define TK_REPLICA 87
#define TK_QUORUM 88
#define TK_DAYS 89
#define TK_MINROWS 90
#define TK_MAXROWS 91
#define TK_BLOCKS 92
#define TK_CTIME 93
#define TK_WAL 94
#define TK_FSYNC 95
#define TK_COMP 96
#define TK_PRECISION 97
#define TK_LP 98
#define TK_RP 99
#define TK_TAGS 100
#define TK_USING 101
#define TK_AS 102
#define TK_COMMA 103
#define TK_NULL 104
#define TK_SELECT 105
#define TK_UNION 106
#define TK_ALL 107
#define TK_FROM 108
#define TK_VARIABLE 109
#define TK_INTERVAL 110
#define TK_FILL 111
#define TK_SLIDING 112
#define TK_ORDER 113
#define TK_BY 114
#define TK_ASC 115
#define TK_DESC 116
#define TK_GROUP 117
#define TK_HAVING 118
#define TK_LIMIT 119
#define TK_OFFSET 120
#define TK_SLIMIT 121
#define TK_SOFFSET 122
#define TK_WHERE 123
#define TK_NOW 124
#define TK_RESET 125
#define TK_QUERY 126
#define TK_ADD 127
#define TK_COLUMN 128
#define TK_TAG 129
#define TK_CHANGE 130
#define TK_SET 131
#define TK_KILL 132
#define TK_CONNECTION 133
#define TK_STREAM 134
#define TK_COLON 135
#define TK_ABORT 136
#define TK_AFTER 137
#define TK_ATTACH 138
#define TK_BEFORE 139
#define TK_BEGIN 140
#define TK_CASCADE 141
#define TK_CLUSTER 142
#define TK_CONFLICT 143
#define TK_COPY 144
#define TK_DEFERRED 145
#define TK_DELIMITERS 146
#define TK_DETACH 147
#define TK_EACH 148
#define TK_END 149
#define TK_EXPLAIN 150
#define TK_FAIL 151
#define TK_FOR 152
#define TK_IGNORE 153
#define TK_IMMEDIATE 154
#define TK_INITIALLY 155
#define TK_INSTEAD 156
#define TK_MATCH 157
#define TK_KEY 158
#define TK_OF 159
#define TK_RAISE 160
#define TK_REPLACE 161
#define TK_RESTRICT 162
#define TK_ROW 163
#define TK_STATEMENT 164
#define TK_TRIGGER 165
#define TK_VIEW 166
#define TK_COUNT 167
#define TK_SUM 168
#define TK_AVG 169
#define TK_MIN 170
#define TK_MAX 171
#define TK_FIRST 172
#define TK_LAST 173
#define TK_TOP 174
#define TK_BOTTOM 175
#define TK_STDDEV 176
#define TK_PERCENTILE 177
#define TK_APERCENTILE 178
#define TK_LEASTSQUARES 179
#define TK_HISTOGRAM 180
#define TK_DIFF 181
#define TK_SPREAD 182
#define TK_TWA 183
#define TK_INTERP 184
#define TK_LAST_ROW 185
#define TK_RATE 186
#define TK_IRATE 187
#define TK_SUM_RATE 188
#define TK_SUM_IRATE 189
#define TK_AVG_RATE 190
#define TK_AVG_IRATE 191
#define TK_TBID 192
#define TK_SEMI 193
#define TK_NONE 194
#define TK_PREV 195
#define TK_LINEAR 196
#define TK_IMPORT 197
#define TK_METRIC 198
#define TK_TBNAME 199
#define TK_JOIN 200
#define TK_METRICS 201
#define TK_STABLE 202
#define TK_INSERT 203
#define TK_INTO 204
#define TK_VALUES 205
#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_MNODES 46
#define TK_DNODES 47
#define TK_ACCOUNTS 48
#define TK_USERS 49
#define TK_MODULES 50
#define TK_QUERIES 51
#define TK_CONNECTIONS 52
#define TK_STREAMS 53
#define TK_VARIABLES 54
#define TK_SCORES 55
#define TK_GRANTS 56
#define TK_VNODES 57
#define TK_IPTOKEN 58
#define TK_DOT 59
#define TK_TABLES 60
#define TK_STABLES 61
#define TK_VGROUPS 62
#define TK_DROP 63
#define TK_TABLE 64
#define TK_DATABASE 65
#define TK_DNODE 66
#define TK_USER 67
#define TK_ACCOUNT 68
#define TK_USE 69
#define TK_DESCRIBE 70
#define TK_ALTER 71
#define TK_PASS 72
#define TK_PRIVILEGE 73
#define TK_LOCAL 74
#define TK_IF 75
#define TK_EXISTS 76
#define TK_CREATE 77
#define TK_PPS 78
#define TK_TSERIES 79
#define TK_DBS 80
#define TK_STORAGE 81
#define TK_QTIME 82
#define TK_CONNS 83
#define TK_STATE 84
#define TK_KEEP 85
#define TK_CACHE 86
#define TK_REPLICA 87
#define TK_QUORUM 88
#define TK_DAYS 89
#define TK_MINROWS 90
#define TK_MAXROWS 91
#define TK_BLOCKS 92
#define TK_CTIME 93
#define TK_WAL 94
#define TK_FSYNC 95
#define TK_COMP 96
#define TK_PRECISION 97
#define TK_UPDATE 98
#define TK_LP 99
#define TK_RP 100
#define TK_TAGS 101
#define TK_USING 102
#define TK_AS 103
#define TK_COMMA 104
#define TK_NULL 105
#define TK_SELECT 106
#define TK_UNION 107
#define TK_ALL 108
#define TK_FROM 109
#define TK_VARIABLE 110
#define TK_INTERVAL 111
#define TK_FILL 112
#define TK_SLIDING 113
#define TK_ORDER 114
#define TK_BY 115
#define TK_ASC 116
#define TK_DESC 117
#define TK_GROUP 118
#define TK_HAVING 119
#define TK_LIMIT 120
#define TK_OFFSET 121
#define TK_SLIMIT 122
#define TK_SOFFSET 123
#define TK_WHERE 124
#define TK_NOW 125
#define TK_RESET 126
#define TK_QUERY 127
#define TK_ADD 128
#define TK_COLUMN 129
#define TK_TAG 130
#define TK_CHANGE 131
#define TK_SET 132
#define TK_KILL 133
#define TK_CONNECTION 134
#define TK_STREAM 135
#define TK_COLON 136
#define TK_ABORT 137
#define TK_AFTER 138
#define TK_ATTACH 139
#define TK_BEFORE 140
#define TK_BEGIN 141
#define TK_CASCADE 142
#define TK_CLUSTER 143
#define TK_CONFLICT 144
#define TK_COPY 145
#define TK_DEFERRED 146
#define TK_DELIMITERS 147
#define TK_DETACH 148
#define TK_EACH 149
#define TK_END 150
#define TK_EXPLAIN 151
#define TK_FAIL 152
#define TK_FOR 153
#define TK_IGNORE 154
#define TK_IMMEDIATE 155
#define TK_INITIALLY 156
#define TK_INSTEAD 157
#define TK_MATCH 158
#define TK_KEY 159
#define TK_OF 160
#define TK_RAISE 161
#define TK_REPLACE 162
#define TK_RESTRICT 163
#define TK_ROW 164
#define TK_STATEMENT 165
#define TK_TRIGGER 166
#define TK_VIEW 167
#define TK_COUNT 168
#define TK_SUM 169
#define TK_AVG 170
#define TK_MIN 171
#define TK_MAX 172
#define TK_FIRST 173
#define TK_LAST 174
#define TK_TOP 175
#define TK_BOTTOM 176
#define TK_STDDEV 177
#define TK_PERCENTILE 178
#define TK_APERCENTILE 179
#define TK_LEASTSQUARES 180
#define TK_HISTOGRAM 181
#define TK_DIFF 182
#define TK_SPREAD 183
#define TK_TWA 184
#define TK_INTERP 185
#define TK_LAST_ROW 186
#define TK_RATE 187
#define TK_IRATE 188
#define TK_SUM_RATE 189
#define TK_SUM_IRATE 190
#define TK_AVG_RATE 191
#define TK_AVG_IRATE 192
#define TK_TBID 193
#define TK_SEMI 194
#define TK_NONE 195
#define TK_PREV 196
#define TK_LINEAR 197
#define TK_IMPORT 198
#define TK_METRIC 199
#define TK_TBNAME 200
#define TK_JOIN 201
#define TK_METRICS 202
#define TK_STABLE 203
#define TK_INSERT 204
#define TK_INTO 205
#define TK_VALUES 206
#define TK_SPACE 300
#define TK_COMMENT 301
...
...
src/query/inc/qSqlparser.h
浏览文件 @
cf9ba60e
...
...
@@ -129,6 +129,7 @@ typedef struct SCreateDBInfo {
int32_t
compressionLevel
;
SStrToken
precision
;
bool
ignoreExists
;
int8_t
update
;
tVariantList
*
keep
;
}
SCreateDBInfo
;
...
...
src/query/inc/sql.y
浏览文件 @
cf9ba60e
...
...
@@ -229,6 +229,7 @@ wal(Y) ::= WAL INTEGER(X). { Y = X; }
fsync(Y) ::= FSYNC INTEGER(X). { Y = X; }
comp(Y) ::= COMP INTEGER(X). { Y = X; }
prec(Y) ::= PRECISION STRING(X). { Y = X; }
update(Y) ::= UPDATE INTEGER(X). { Y = X; }
%type db_optr {SCreateDBInfo}
db_optr(Y) ::= . {setDefaultCreateDbOption(&Y);}
...
...
@@ -246,6 +247,7 @@ db_optr(Y) ::= db_optr(Z) fsync(X). { Y = Z; Y.fsyncPeriod = strtol(X.z
db_optr(Y) ::= db_optr(Z) comp(X). { Y = Z; Y.compressionLevel = strtol(X.z, NULL, 10); }
db_optr(Y) ::= db_optr(Z) prec(X). { Y = Z; Y.precision = X; }
db_optr(Y) ::= db_optr(Z) keep(X). { Y = Z; Y.keep = X; }
db_optr(Y) ::= db_optr(Z) update(X). { Y = Z; Y.update = strtol(X.z, NULL, 10); }
%type alter_db_optr {SCreateDBInfo}
alter_db_optr(Y) ::= . { setDefaultCreateDbOption(&Y);}
...
...
@@ -257,6 +259,7 @@ alter_db_optr(Y) ::= alter_db_optr(Z) blocks(X). { Y = Z; Y.numOfBlocks = s
alter_db_optr(Y) ::= alter_db_optr(Z) comp(X). { Y = Z; Y.compressionLevel = strtol(X.z, NULL, 10); }
alter_db_optr(Y) ::= alter_db_optr(Z) wal(X). { Y = Z; Y.walLevel = strtol(X.z, NULL, 10); }
alter_db_optr(Y) ::= alter_db_optr(Z) fsync(X). { Y = Z; Y.fsyncPeriod = strtol(X.z, NULL, 10); }
alter_db_optr(Y) ::= alter_db_optr(Z) update(X). { Y = Z; Y.update = strtol(X.z, NULL, 10); }
%type typename {TAOS_FIELD}
typename(A) ::= ids(X). {
...
...
src/query/src/qTokenizer.c
浏览文件 @
cf9ba60e
...
...
@@ -155,6 +155,7 @@ static SKeyword keywordTable[] = {
{
"INSERT"
,
TK_INSERT
},
{
"INTO"
,
TK_INTO
},
{
"VALUES"
,
TK_VALUES
},
{
"UPDATE"
,
TK_UPDATE
},
{
"RESET"
,
TK_RESET
},
{
"QUERY"
,
TK_QUERY
},
{
"ADD"
,
TK_ADD
},
...
...
@@ -661,4 +662,4 @@ bool isKeyWord(const char* z, int32_t len) { return (tSQLKeywordCode((char*)z, l
void
taosCleanupKeywordsTable
()
{
taosHashCleanup
(
KeywordHashTable
);
}
\ No newline at end of file
}
src/query/src/sql.c
浏览文件 @
cf9ba60e
/*
** 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 <stdio.h>
#include <assert.h>
/************ Begin %include sections from the grammar ************************/
#include <stdio.h>
#include <stdlib.h>
...
...
@@ -37,119 +16,95 @@
#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 symbol
s is called "yy0".
** for
base token
s is called "yy0".
** YYSTACKDEPTH is the maximum depth of the parser's stack. If
** zero the stack is dynamically sized using realloc()
** ParseARG_SDECL A static variable declaration for the %extra_argument
** ParseARG_PDECL A parameter declaration for the %extra_argument
** ParseARG_PARAM Code to pass %extra_argument as a subroutine parameter
** ParseARG_STORE Code to store %extra_argument into yypParser
** ParseARG_FETCH Code to extract %extra_argument from yypParser
** ParseCTX_* As ParseARG_ except for %extra_context
** YYERRORSYMBOL is the code number of the error symbol. If not
** defined, then do no error processing.
** YYNSTATE the combined number of states.
** YYNRULE the number of rules in the grammar
** YYNTOKEN Number of terminal symbols
** YY_MAX_SHIFT Maximum value for shift actions
** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions
** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions
** YY_ERROR_ACTION The yy_action[] code for syntax error
** YY_ACCEPT_ACTION The yy_action[] code for accept
** YY_NO_ACTION The yy_action[] code for no-op
** YY_MIN_REDUCE Minimum value for reduce actions
** YY_MAX_REDUCE Maximum value for reduce actions
** 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 27
0
#define YYNOCODE 27
4
#define YYACTIONTYPE unsigned short int
#define ParseTOKENTYPE SStrToken
typedef
union
{
int
yyinit
;
ParseTOKENTYPE
yy0
;
int
yy
112
;
SCreateDBInfo
yy118
;
tVariant
List
*
yy156
;
tSQLExprList
*
yy158
;
tSQLExpr
*
yy190
;
S
SubclauseInfo
*
yy333
;
SIntervalVal
yy340
;
TAOS_FIELD
yy343
;
int64_t
yy369
;
SCreateTableSQL
*
yy398
;
S
LimitVal
yy414
;
S
QuerySQL
*
yy444
;
SCreateAcctSQL
yy479
;
t
Variant
yy506
;
tFieldList
*
yy511
;
int
yy
46
;
tSQLExpr
*
yy64
;
tVariant
yy134
;
SCreateAcctSQL
yy149
;
int64_t
yy207
;
S
LimitVal
yy216
;
TAOS_FIELD
yy223
;
SSubclauseInfo
*
yy231
;
SCreateDBInfo
yy268
;
tSQLExprList
*
yy290
;
S
QuerySQL
*
yy414
;
S
CreateTableSQL
*
yy470
;
tVariantList
*
yy498
;
t
FieldList
*
yy523
;
SIntervalVal
yy532
;
}
YYMINORTYPE
;
#ifndef YYSTACKDEPTH
#define YYSTACKDEPTH 100
#endif
#define ParseARG_SDECL SSqlInfo* pInfo;
#define ParseARG_PDECL ,SSqlInfo* pInfo
#define ParseARG_PARAM ,pInfo
#define ParseARG_FETCH SSqlInfo* pInfo=yypParser->pInfo;
#define ParseARG_STORE yypParser->pInfo=pInfo;
#define ParseCTX_SDECL
#define ParseCTX_PDECL
#define ParseCTX_PARAM
#define ParseCTX_FETCH
#define ParseCTX_STORE
#define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo
#define ParseARG_STORE yypParser->pInfo = pInfo
#define YYNSTATE 414
#define YYNRULE 231
#define YYFALLBACK 1
#define YYNSTATE 248
#define YYNRULE 228
#define YYNRULE_WITH_ACTION 228
#define YYNTOKEN 206
#define YY_MAX_SHIFT 247
#define YY_MIN_SHIFTREDUCE 410
#define YY_MAX_SHIFTREDUCE 637
#define YY_ERROR_ACTION 638
#define YY_ACCEPT_ACTION 639
#define YY_NO_ACTION 640
#define YY_MIN_REDUCE 641
#define YY_MAX_REDUCE 868
/************* End control #defines *******************************************/
#define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0])))
#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.
...
...
@@ -172,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 == YY
NSTATE+YYNRULE
A syntax error has occurred.
**
** N == YY
_ACCEPT_ACTION
The parser accepts its input.
** N == YY
NSTATE+YYNRULE+1
The parser accepts its input.
**
** N == YY
_NO_ACTION
No such action. Denotes unused
** N == YY
NSTATE+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 formula
s 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:
**
...
...
@@ -212,226 +165,244 @@ 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 (560)
*/
#define YY_ACTTAB_COUNT (665)
static
const
YYACTIONTYPE
yy_action
[]
=
{
/* 0 */
741
,
451
,
11
,
739
,
740
,
639
,
247
,
451
,
742
,
452
,
/* 10 */
744
,
745
,
743
,
35
,
36
,
452
,
37
,
38
,
156
,
245
,
/* 20 */
167
,
29
,
138
,
137
,
202
,
41
,
39
,
43
,
40
,
106
,
/* 30 */
517
,
162
,
856
,
34
,
33
,
782
,
138
,
32
,
31
,
30
,
/* 40 */
35
,
36
,
771
,
37
,
38
,
161
,
856
,
167
,
29
,
771
,
/* 50 */
106
,
202
,
41
,
39
,
43
,
40
,
187
,
159
,
223
,
222
,
/* 60 */
34
,
33
,
138
,
157
,
32
,
31
,
30
,
35
,
36
,
451
,
/* 70 */
37
,
38
,
855
,
142
,
167
,
29
,
760
,
452
,
202
,
41
,
/* 80 */
39
,
43
,
40
,
199
,
78
,
60
,
779
,
34
,
33
,
234
,
/* 90 */
234
,
32
,
31
,
30
,
21
,
41
,
39
,
43
,
40
,
32
,
/* 100 */
31
,
30
,
56
,
34
,
33
,
852
,
808
,
32
,
31
,
30
,
/* 110 */
21
,
21
,
106
,
411
,
412
,
413
,
414
,
415
,
416
,
417
,
/* 120 */
418
,
419
,
420
,
421
,
422
,
246
,
591
,
171
,
36
,
757
,
/* 130 */
37
,
38
,
225
,
50
,
167
,
29
,
21
,
62
,
202
,
41
,
/* 140 */
39
,
43
,
40
,
172
,
221
,
757
,
757
,
34
,
33
,
27
,
/* 150 */
51
,
32
,
31
,
30
,
8
,
37
,
38
,
63
,
116
,
167
,
/* 160 */
29
,
101
,
758
,
202
,
41
,
39
,
43
,
40
,
809
,
226
,
/* 170 */
197
,
757
,
34
,
33
,
170
,
851
,
32
,
31
,
30
,
16
,
/* 180 */
214
,
240
,
239
,
213
,
212
,
211
,
238
,
210
,
237
,
236
,
/* 190 */
235
,
209
,
737
,
760
,
725
,
726
,
727
,
728
,
729
,
730
,
/* 200 */
731
,
732
,
733
,
734
,
735
,
736
,
166
,
604
,
12
,
241
,
/* 210 */
595
,
17
,
598
,
190
,
601
,
559
,
166
,
604
,
26
,
103
,
/* 220 */
595
,
597
,
598
,
600
,
601
,
34
,
33
,
151
,
760
,
32
,
/* 230 */
31
,
30
,
21
,
90
,
89
,
145
,
572
,
573
,
163
,
164
,
/* 240 */
173
,
150
,
201
,
76
,
80
,
85
,
88
,
79
,
163
,
164
,
/* 250 */
166
,
604
,
549
,
82
,
595
,
106
,
598
,
100
,
601
,
244
,
/* 260 */
243
,
97
,
17
,
16
,
26
,
240
,
239
,
756
,
680
,
26
,
/* 270 */
238
,
129
,
237
,
236
,
235
,
119
,
120
,
70
,
66
,
69
,
/* 280 */
203
,
165
,
163
,
164
,
689
,
533
,
180
,
129
,
530
,
186
,
/* 290 */
531
,
850
,
532
,
184
,
183
,
596
,
153
,
599
,
133
,
131
,
/* 300 */
93
,
92
,
91
,
42
,
174
,
546
,
681
,
220
,
219
,
129
,
/* 310 */
18
,
61
,
541
,
42
,
603
,
593
,
175
,
176
,
563
,
189
,
/* 320 */
3
,
47
,
46
,
537
,
603
,
538
,
564
,
623
,
605
,
602
,
/* 330 */
14
,
13
,
13
,
154
,
523
,
75
,
74
,
522
,
46
,
602
,
/* 340 */
48
,
22
,
207
,
535
,
155
,
536
,
22
,
42
,
10
,
9
,
/* 350 */
140
,
594
,
87
,
86
,
141
,
143
,
144
,
148
,
603
,
149
,
/* 360 */
147
,
136
,
146
,
139
,
865
,
759
,
819
,
818
,
168
,
607
,
/* 370 */
815
,
814
,
169
,
602
,
751
,
224
,
781
,
773
,
786
,
788
,
/* 380 */
102
,
801
,
117
,
800
,
115
,
118
,
26
,
534
,
188
,
691
,
/* 390 */
208
,
134
,
24
,
217
,
688
,
218
,
864
,
72
,
863
,
861
,
/* 400 */
121
,
95
,
709
,
25
,
23
,
135
,
678
,
81
,
558
,
676
,
/* 410 */
83
,
191
,
84
,
674
,
158
,
673
,
195
,
177
,
130
,
671
,
/* 420 */
52
,
670
,
770
,
669
,
49
,
44
,
668
,
107
,
108
,
200
,
/* 430 */
667
,
194
,
659
,
132
,
665
,
663
,
198
,
196
,
192
,
661
,
/* 440 */
28
,
57
,
58
,
802
,
216
,
77
,
227
,
228
,
229
,
230
,
/* 450 */
231
,
232
,
205
,
233
,
242
,
53
,
637
,
178
,
179
,
636
,
/* 460 */
152
,
64
,
67
,
182
,
181
,
672
,
635
,
628
,
94
,
96
,
/* 470 */
185
,
666
,
124
,
55
,
123
,
710
,
122
,
125
,
126
,
128
,
/* 480 */
127
,
1
,
2
,
189
,
755
,
543
,
59
,
560
,
111
,
109
,
/* 490 */
112
,
110
,
104
,
113
,
114
,
160
,
19
,
193
,
5
,
565
,
/* 500 */
105
,
6
,
606
,
4
,
20
,
15
,
204
,
7
,
608
,
65
,
/* 510 */
206
,
492
,
488
,
486
,
485
,
484
,
481
,
455
,
215
,
68
,
/* 520 */
45
,
71
,
22
,
519
,
73
,
518
,
516
,
54
,
476
,
474
,
/* 530 */
466
,
472
,
468
,
470
,
464
,
462
,
491
,
490
,
489
,
487
,
/* 540 */
483
,
482
,
46
,
453
,
426
,
424
,
641
,
640
,
640
,
640
,
/* 550 */
640
,
640
,
640
,
640
,
640
,
640
,
640
,
640
,
98
,
99
,
/* 0 */
398
,
76
,
80
,
85
,
88
,
79
,
341
,
173
,
397
,
263
,
/* 10 */
180
,
82
,
35
,
36
,
18
,
37
,
38
,
184
,
183
,
167
,
/* 20 */
29
,
87
,
86
,
202
,
41
,
39
,
43
,
40
,
10
,
9
,
/* 30 */
646
,
248
,
34
,
33
,
223
,
222
,
32
,
31
,
30
,
35
,
/* 40 */
36
,
8
,
37
,
38
,
63
,
116
,
167
,
29
,
101
,
21
,
/* 50 */
202
,
41
,
39
,
43
,
40
,
245
,
244
,
97
,
414
,
34
,
/* 60 */
33
,
75
,
74
,
32
,
31
,
30
,
35
,
36
,
256
,
37
,
/* 70 */
38
,
401
,
174
,
167
,
29
,
220
,
219
,
202
,
41
,
39
,
/* 80 */
43
,
40
,
187
,
226
,
207
,
337
,
34
,
33
,
22
,
398
,
/* 90 */
32
,
31
,
30
,
36
,
307
,
37
,
38
,
397
,
22
,
167
,
/* 100 */
29
,
190
,
56
,
202
,
41
,
39
,
43
,
40
,
32
,
31
,
/* 110 */
30
,
361
,
34
,
33
,
363
,
362
,
32
,
31
,
30
,
360
,
/* 120 */
306
,
358
,
357
,
359
,
46
,
356
,
297
,
400
,
133
,
131
,
/* 130 */
93
,
92
,
91
,
413
,
412
,
411
,
410
,
409
,
408
,
407
,
/* 140 */
406
,
405
,
404
,
403
,
402
,
247
,
375
,
138
,
374
,
106
,
/* 150 */
37
,
38
,
50
,
99
,
167
,
29
,
161
,
279
,
202
,
41
,
/* 160 */
39
,
43
,
40
,
106
,
373
,
165
,
372
,
34
,
33
,
51
,
/* 170 */
203
,
32
,
31
,
30
,
311
,
98
,
323
,
322
,
321
,
320
,
/* 180 */
319
,
318
,
317
,
316
,
315
,
314
,
313
,
312
,
310
,
16
,
/* 190 */
214
,
241
,
240
,
213
,
212
,
211
,
239
,
210
,
238
,
237
,
/* 200 */
236
,
209
,
235
,
166
,
285
,
3
,
270
,
294
,
197
,
289
,
/* 210 */
293
,
288
,
292
,
166
,
285
,
47
,
78
,
294
,
199
,
289
,
/* 220 */
60
,
288
,
234
,
166
,
285
,
12
,
291
,
294
,
290
,
289
,
/* 230 */
46
,
288
,
21
,
255
,
48
,
163
,
164
,
34
,
33
,
257
,
/* 240 */
189
,
32
,
31
,
30
,
151
,
163
,
164
,
296
,
370
,
201
,
/* 250 */
90
,
89
,
145
,
284
,
392
,
163
,
164
,
13
,
150
,
369
,
/* 260 */
299
,
41
,
39
,
43
,
40
,
368
,
221
,
138
,
337
,
34
,
/* 270 */
33
,
100
,
21
,
32
,
31
,
30
,
162
,
279
,
26
,
16
,
/* 280 */
17
,
241
,
240
,
295
,
275
,
274
,
239
,
26
,
238
,
237
,
/* 290 */
236
,
280
,
235
,
377
,
21
,
13
,
380
,
398
,
379
,
266
,
/* 300 */
378
,
42
,
106
,
14
,
21
,
397
,
172
,
186
,
337
,
267
,
/* 310 */
106
,
42
,
286
,
46
,
153
,
119
,
120
,
70
,
66
,
69
,
/* 320 */
225
,
42
,
286
,
62
,
175
,
176
,
242
,
287
,
171
,
265
,
/* 330 */
337
,
354
,
286
,
103
,
129
,
27
,
331
,
287
,
355
,
129
,
/* 340 */
343
,
129
,
256
,
17
,
138
,
170
,
371
,
287
,
159
,
258
,
/* 350 */
26
,
338
,
156
,
246
,
278
,
367
,
157
,
366
,
365
,
61
,
/* 360 */
364
,
353
,
352
,
351
,
350
,
371
,
349
,
271
,
371
,
348
,
/* 370 */
347
,
346
,
22
,
54
,
340
,
342
,
339
,
73
,
71
,
45
,
/* 380 */
68
,
330
,
215
,
329
,
328
,
327
,
326
,
325
,
65
,
206
,
/* 390 */
204
,
7
,
324
,
15
,
4
,
298
,
376
,
277
,
6
,
5
,
/* 400 */
105
,
260
,
20
,
19
,
268
,
193
,
160
,
264
,
104
,
185
,
/* 410 */
55
,
253
,
252
,
251
,
59
,
182
,
181
,
250
,
179
,
189
,
/* 420 */
249
,
178
,
2
,
1
,
96
,
393
,
243
,
95
,
94
,
386
,
/* 430 */
232
,
123
,
127
,
128
,
305
,
228
,
230
,
126
,
231
,
233
,
/* 440 */
124
,
125
,
229
,
152
,
122
,
53
,
67
,
205
,
216
,
344
,
/* 450 */
64
,
26
,
114
,
227
,
28
,
113
,
77
,
192
,
198
,
194
,
/* 460 */
44
,
196
,
273
,
52
,
49
,
195
,
276
,
58
,
57
,
399
,
/* 470 */
396
,
647
,
395
,
132
,
394
,
391
,
390
,
112
,
389
,
111
,
/* 480 */
388
,
110
,
387
,
109
,
130
,
108
,
269
,
188
,
200
,
177
,
/* 490 */
107
,
647
,
385
,
308
,
234
,
115
,
304
,
384
,
84
,
254
,
/* 500 */
224
,
647
,
647
,
158
,
191
,
647
,
647
,
647
,
647
,
272
,
/* 510 */
647
,
83
,
647
,
169
,
383
,
303
,
647
,
647
,
647
,
302
,
/* 520 */
168
,
647
,
301
,
647
,
81
,
382
,
135
,
647
,
23
,
25
,
/* 530 */
345
,
121
,
336
,
335
,
72
,
334
,
218
,
647
,
332
,
217
,
/* 540 */
24
,
381
,
134
,
208
,
309
,
118
,
117
,
102
,
262
,
261
,
/* 550 */
259
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 560 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 570 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 580 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
300
,
647
,
647
,
/* 590 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 600 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 610 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 620 */
647
,
647
,
647
,
333
,
647
,
647
,
647
,
647
,
647
,
647
,
/* 630 */
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
647
,
139
,
/* 640 */
647
,
647
,
647
,
647
,
647
,
647
,
146
,
647
,
647
,
136
,
/* 650 */
147
,
149
,
148
,
144
,
143
,
141
,
140
,
155
,
154
,
283
,
/* 660 */
282
,
281
,
142
,
137
,
11
,
};
static
const
YYCODETYPE
yy_lookahead
[]
=
{
/* 0 */
225
,
1
,
259
,
228
,
229
,
206
,
207
,
1
,
233
,
9
,
/* 10 */
235
,
236
,
237
,
13
,
14
,
9
,
16
,
17
,
208
,
209
,
/* 20 */
20
,
21
,
259
,
259
,
24
,
25
,
26
,
27
,
28
,
209
,
/* 30 */
5
,
268
,
269
,
33
,
34
,
209
,
259
,
37
,
38
,
39
,
/* 40 */
13
,
14
,
243
,
16
,
17
,
268
,
269
,
20
,
21
,
243
,
/* 50 */
209
,
24
,
25
,
26
,
27
,
28
,
257
,
226
,
33
,
34
,
/* 60 */
33
,
34
,
259
,
257
,
37
,
38
,
39
,
13
,
14
,
1
,
/* 70 */
16
,
17
,
269
,
259
,
20
,
21
,
245
,
9
,
24
,
25
,
/* 80 */
26
,
27
,
28
,
263
,
72
,
265
,
260
,
33
,
34
,
78
,
/* 90 */
78
,
37
,
38
,
39
,
209
,
25
,
26
,
27
,
28
,
37
,
/* 100 */
38
,
39
,
102
,
33
,
34
,
259
,
265
,
37
,
38
,
39
,
/* 110 */
209
,
209
,
209
,
45
,
46
,
47
,
48
,
49
,
50
,
51
,
/* 120 */
52
,
53
,
54
,
55
,
56
,
57
,
99
,
242
,
14
,
244
,
/* 130 */
16
,
17
,
209
,
103
,
20
,
21
,
209
,
246
,
24
,
25
,
/* 140 */
26
,
27
,
28
,
242
,
242
,
244
,
244
,
33
,
34
,
258
,
/* 150 */
120
,
37
,
38
,
39
,
98
,
16
,
17
,
101
,
102
,
20
,
/* 160 */
21
,
209
,
239
,
24
,
25
,
26
,
27
,
28
,
265
,
242
,
/* 170 */
267
,
244
,
33
,
34
,
226
,
259
,
37
,
38
,
39
,
85
,
/* 180 */
86
,
87
,
88
,
89
,
90
,
91
,
92
,
93
,
94
,
95
,
/* 190 */
96
,
97
,
225
,
245
,
227
,
228
,
229
,
230
,
231
,
232
,
/* 200 */
233
,
234
,
235
,
236
,
237
,
238
,
1
,
2
,
44
,
226
,
/* 210 */
5
,
98
,
7
,
261
,
9
,
99
,
1
,
2
,
105
,
103
,
/* 220 */
5
,
5
,
7
,
7
,
9
,
33
,
34
,
63
,
245
,
37
,
/* 230 */
38
,
39
,
209
,
69
,
70
,
71
,
115
,
116
,
33
,
34
,
/* 240 */
63
,
77
,
37
,
64
,
65
,
66
,
67
,
68
,
33
,
34
,
/* 250 */
1
,
2
,
37
,
74
,
5
,
209
,
7
,
98
,
9
,
60
,
/* 260 */
61
,
62
,
98
,
85
,
105
,
87
,
88
,
244
,
213
,
105
,
/* 270 */
92
,
216
,
94
,
95
,
96
,
64
,
65
,
66
,
67
,
68
,
/* 280 */
15
,
59
,
33
,
34
,
213
,
2
,
126
,
216
,
5
,
125
,
/* 290 */
7
,
259
,
9
,
133
,
134
,
5
,
132
,
7
,
64
,
65
,
/* 300 */
66
,
67
,
68
,
98
,
127
,
103
,
213
,
130
,
131
,
216
,
/* 310 */
108
,
265
,
99
,
98
,
109
,
1
,
33
,
34
,
99
,
106
,
/* 320 */
98
,
103
,
103
,
5
,
109
,
7
,
99
,
99
,
99
,
124
,
/* 330 */
103
,
103
,
103
,
259
,
99
,
128
,
129
,
99
,
103
,
124
,
/* 340 */
122
,
103
,
99
,
5
,
259
,
7
,
103
,
98
,
128
,
129
,
/* 350 */
259
,
37
,
72
,
73
,
259
,
259
,
259
,
259
,
109
,
259
,
/* 360 */
259
,
259
,
259
,
259
,
245
,
245
,
240
,
240
,
240
,
104
,
/* 370 */
240
,
240
,
240
,
124
,
241
,
240
,
209
,
243
,
209
,
209
,
/* 380 */
209
,
266
,
209
,
266
,
247
,
209
,
105
,
104
,
243
,
209
,
/* 390 */
209
,
209
,
209
,
209
,
209
,
209
,
209
,
209
,
209
,
209
,
/* 400 */
209
,
59
,
209
,
209
,
209
,
209
,
209
,
209
,
109
,
209
,
/* 410 */
209
,
262
,
209
,
209
,
262
,
209
,
262
,
209
,
209
,
209
,
/* 420 */
119
,
209
,
256
,
209
,
121
,
118
,
209
,
255
,
254
,
113
,
/* 430 */
209
,
111
,
209
,
209
,
209
,
209
,
117
,
112
,
110
,
209
,
/* 440 */
123
,
210
,
210
,
210
,
75
,
84
,
83
,
49
,
80
,
82
,
/* 450 */
53
,
81
,
210
,
79
,
75
,
210
,
5
,
135
,
5
,
5
,
/* 460 */
210
,
214
,
214
,
5
,
135
,
210
,
5
,
86
,
211
,
211
,
/* 470 */
126
,
210
,
218
,
107
,
222
,
224
,
223
,
221
,
219
,
217
,
/* 480 */
220
,
215
,
212
,
106
,
243
,
99
,
103
,
99
,
251
,
253
,
/* 490 */
250
,
252
,
98
,
249
,
248
,
1
,
103
,
98
,
114
,
99
,
/* 500 */
98
,
114
,
99
,
98
,
103
,
98
,
100
,
98
,
104
,
72
,
/* 510 */
100
,
9
,
5
,
5
,
5
,
5
,
5
,
76
,
15
,
72
,
/* 520 */
16
,
129
,
103
,
5
,
129
,
5
,
99
,
98
,
5
,
5
,
/* 530 */
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
5
,
/* 540 */
5
,
5
,
103
,
76
,
59
,
58
,
0
,
270
,
270
,
270
,
/* 550 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
21
,
21
,
/* 560 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 570 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 580 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 590 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 600 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 610 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 620 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 630 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 640 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 650 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 660 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 670 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
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
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 710 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 720 */
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
270
,
/* 730 */
270
,
270
,
270
,
270
,
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
,
/* 0 */
1
,
64
,
65
,
66
,
67
,
68
,
5
,
63
,
9
,
104
,
/* 10 */
127
,
74
,
13
,
14
,
109
,
16
,
17
,
134
,
135
,
20
,
/* 20 */
21
,
72
,
73
,
24
,
25
,
26
,
27
,
28
,
129
,
130
,
/* 30 */
208
,
209
,
33
,
34
,
33
,
34
,
37
,
38
,
39
,
13
,
/* 40 */
14
,
99
,
16
,
17
,
102
,
103
,
20
,
21
,
211
,
211
,
/* 50 */
24
,
25
,
26
,
27
,
28
,
60
,
61
,
62
,
0
,
33
,
/* 60 */
34
,
129
,
130
,
37
,
38
,
39
,
13
,
14
,
246
,
16
,
/* 70 */
17
,
58
,
128
,
20
,
21
,
131
,
132
,
24
,
25
,
26
,
/* 80 */
27
,
28
,
260
,
245
,
100
,
247
,
33
,
34
,
104
,
1
,
/* 90 */
37
,
38
,
39
,
14
,
100
,
16
,
17
,
9
,
104
,
20
,
/* 100 */
21
,
264
,
103
,
24
,
25
,
26
,
27
,
28
,
37
,
38
,
/* 110 */
39
,
227
,
33
,
34
,
230
,
231
,
37
,
38
,
39
,
235
,
/* 120 */
100
,
237
,
238
,
239
,
104
,
241
,
100
,
59
,
64
,
65
,
/* 130 */
66
,
67
,
68
,
45
,
46
,
47
,
48
,
49
,
50
,
51
,
/* 140 */
52
,
53
,
54
,
55
,
56
,
57
,
5
,
262
,
7
,
211
,
/* 150 */
16
,
17
,
104
,
21
,
20
,
21
,
271
,
272
,
24
,
25
,
/* 160 */
26
,
27
,
28
,
211
,
5
,
59
,
7
,
33
,
34
,
121
,
/* 170 */
15
,
37
,
38
,
39
,
227
,
21
,
229
,
230
,
231
,
232
,
/* 180 */
233
,
234
,
235
,
236
,
237
,
238
,
239
,
240
,
241
,
85
,
/* 190 */
86
,
87
,
88
,
89
,
90
,
91
,
92
,
93
,
94
,
95
,
/* 200 */
96
,
97
,
98
,
1
,
2
,
99
,
268
,
5
,
270
,
7
,
/* 210 */
5
,
9
,
7
,
1
,
2
,
104
,
72
,
5
,
266
,
7
,
/* 220 */
268
,
9
,
78
,
1
,
2
,
44
,
5
,
5
,
7
,
7
,
/* 230 */
104
,
9
,
211
,
100
,
123
,
33
,
34
,
33
,
34
,
37
,
/* 240 */
107
,
37
,
38
,
39
,
63
,
33
,
34
,
1
,
5
,
37
,
/* 250 */
69
,
70
,
71
,
100
,
76
,
33
,
34
,
104
,
77
,
5
,
/* 260 */
105
,
25
,
26
,
27
,
28
,
5
,
245
,
262
,
247
,
33
,
/* 270 */
34
,
99
,
211
,
37
,
38
,
39
,
271
,
272
,
106
,
85
,
/* 280 */
99
,
87
,
88
,
37
,
116
,
117
,
92
,
106
,
94
,
95
,
/* 290 */
96
,
100
,
98
,
2
,
211
,
104
,
5
,
1
,
7
,
100
,
/* 300 */
9
,
99
,
211
,
104
,
211
,
9
,
245
,
126
,
247
,
100
,
/* 310 */
211
,
99
,
110
,
104
,
133
,
64
,
65
,
66
,
67
,
68
,
/* 320 */
211
,
99
,
110
,
249
,
33
,
34
,
228
,
125
,
245
,
100
,
/* 330 */
247
,
215
,
110
,
104
,
218
,
261
,
215
,
125
,
215
,
218
,
/* 340 */
247
,
218
,
246
,
99
,
262
,
228
,
248
,
125
,
228
,
211
,
/* 350 */
106
,
242
,
210
,
211
,
272
,
5
,
260
,
5
,
5
,
268
,
/* 360 */
5
,
5
,
5
,
5
,
5
,
248
,
5
,
268
,
248
,
5
,
/* 370 */
5
,
5
,
104
,
99
,
5
,
100
,
5
,
130
,
130
,
16
,
/* 380 */
72
,
76
,
15
,
5
,
5
,
5
,
5
,
5
,
72
,
101
,
/* 390 */
101
,
99
,
9
,
99
,
99
,
105
,
105
,
100
,
115
,
115
,
/* 400 */
99
,
263
,
104
,
104
,
100
,
99
,
1
,
100
,
99
,
127
,
/* 410 */
108
,
100
,
86
,
5
,
104
,
5
,
136
,
5
,
5
,
107
,
/* 420 */
5
,
136
,
214
,
217
,
213
,
212
,
75
,
59
,
213
,
212
,
/* 430 */
81
,
224
,
222
,
219
,
246
,
49
,
82
,
221
,
53
,
79
,
/* 440 */
220
,
223
,
80
,
212
,
225
,
212
,
216
,
212
,
75
,
226
,
/* 450 */
216
,
106
,
251
,
83
,
124
,
252
,
84
,
111
,
118
,
112
,
/* 460 */
119
,
113
,
212
,
120
,
122
,
265
,
269
,
212
,
212
,
211
,
/* 470 */
211
,
273
,
211
,
211
,
211
,
211
,
211
,
253
,
211
,
254
,
/* 480 */
211
,
255
,
211
,
256
,
211
,
257
,
110
,
246
,
114
,
211
,
/* 490 */
258
,
273
,
211
,
244
,
78
,
250
,
259
,
211
,
211
,
246
,
/* 500 */
243
,
273
,
273
,
265
,
265
,
273
,
273
,
273
,
273
,
269
,
/* 510 */
273
,
211
,
273
,
243
,
211
,
243
,
273
,
273
,
273
,
243
,
/* 520 */
243
,
273
,
243
,
273
,
211
,
211
,
211
,
273
,
211
,
211
,
/* 530 */
211
,
211
,
211
,
211
,
211
,
211
,
211
,
273
,
211
,
211
,
/* 540 */
211
,
248
,
211
,
211
,
211
,
211
,
211
,
211
,
211
,
211
,
/* 550 */
211
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 560 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 570 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 580 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
243
,
273
,
273
,
/* 590 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 600 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 610 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 620 */
273
,
273
,
273
,
248
,
273
,
273
,
273
,
273
,
273
,
273
,
/* 630 */
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
273
,
262
,
/* 640 */
273
,
273
,
273
,
273
,
273
,
273
,
262
,
273
,
273
,
262
,
/* 650 */
262
,
262
,
262
,
262
,
262
,
262
,
262
,
262
,
262
,
262
,
/* 660 */
262
,
262
,
262
,
262
,
262
,
};
#define YY_SHIFT_COUNT (247)
#define YY_SHIFT_MIN (0)
#define YY_SHIFT_MAX (546)
static
const
unsigned
short
int
yy_shift_ofst
[]
=
{
/* 0 */
164
,
94
,
178
,
205
,
249
,
6
,
6
,
6
,
6
,
6
,
/* 10 */
6
,
0
,
68
,
249
,
283
,
283
,
283
,
113
,
6
,
6
,
/* 20 */
6
,
6
,
6
,
12
,
11
,
11
,
560
,
215
,
249
,
249
,
/* 30 */
249
,
249
,
249
,
249
,
249
,
249
,
249
,
249
,
249
,
249
,
/* 40 */
249
,
249
,
249
,
249
,
249
,
283
,
283
,
25
,
25
,
25
,
/* 50 */
25
,
25
,
25
,
56
,
25
,
159
,
6
,
6
,
6
,
6
,
/* 60 */
121
,
121
,
202
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
/* 70 */
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
/* 80 */
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
/* 90 */
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
6
,
/* 100 */
281
,
342
,
342
,
299
,
299
,
299
,
342
,
301
,
303
,
307
,
/* 110 */
316
,
319
,
325
,
320
,
328
,
317
,
281
,
342
,
342
,
369
,
/* 120 */
369
,
342
,
361
,
363
,
398
,
368
,
367
,
397
,
370
,
374
,
/* 130 */
342
,
379
,
342
,
379
,
560
,
560
,
27
,
54
,
54
,
54
,
/* 140 */
114
,
139
,
70
,
70
,
70
,
179
,
192
,
192
,
192
,
192
,
/* 150 */
211
,
234
,
177
,
160
,
62
,
62
,
199
,
213
,
116
,
219
,
/* 160 */
227
,
228
,
229
,
216
,
290
,
314
,
222
,
265
,
218
,
30
,
/* 170 */
235
,
238
,
243
,
207
,
220
,
318
,
338
,
280
,
451
,
322
,
/* 180 */
453
,
454
,
329
,
458
,
461
,
381
,
344
,
377
,
386
,
366
,
/* 190 */
383
,
388
,
394
,
494
,
399
,
400
,
402
,
393
,
384
,
401
,
/* 200 */
387
,
403
,
405
,
404
,
407
,
406
,
409
,
410
,
437
,
502
,
/* 210 */
507
,
508
,
509
,
510
,
511
,
441
,
503
,
447
,
504
,
392
,
/* 220 */
395
,
419
,
518
,
520
,
427
,
429
,
419
,
523
,
524
,
525
,
/* 230 */
526
,
527
,
528
,
529
,
530
,
531
,
532
,
533
,
534
,
535
,
/* 240 */
536
,
439
,
467
,
537
,
538
,
485
,
487
,
546
,
#define YY_SHIFT_USE_DFLT (-118)
#define YY_SHIFT_COUNT (248)
#define YY_SHIFT_MIN (-117)
#define YY_SHIFT_MAX (416)
static
const
short
yy_shift_ofst
[]
=
{
/* 0 */
181
,
104
,
194
,
212
,
222
,
296
,
296
,
296
,
296
,
296
,
/* 10 */
296
,
-
1
,
88
,
222
,
291
,
291
,
291
,
244
,
296
,
296
,
/* 20 */
296
,
296
,
296
,
144
,
416
,
416
,
-
118
,
202
,
222
,
222
,
/* 30 */
222
,
222
,
222
,
222
,
222
,
222
,
222
,
222
,
222
,
222
,
/* 40 */
222
,
222
,
222
,
222
,
222
,
291
,
291
,
1
,
1
,
1
,
/* 50 */
1
,
1
,
1
,
-
58
,
1
,
172
,
296
,
296
,
296
,
296
,
/* 60 */
168
,
168
,
-
95
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
/* 70 */
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
/* 80 */
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
/* 90 */
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
296
,
/* 100 */
345
,
368
,
368
,
376
,
376
,
376
,
368
,
343
,
342
,
341
,
/* 110 */
374
,
340
,
348
,
347
,
346
,
330
,
345
,
368
,
368
,
373
,
/* 120 */
373
,
368
,
372
,
370
,
386
,
362
,
354
,
385
,
349
,
360
,
/* 130 */
368
,
351
,
368
,
351
,
-
118
,
-
118
,
26
,
53
,
53
,
53
,
/* 140 */
79
,
134
,
236
,
236
,
236
,
-
63
,
204
,
204
,
204
,
204
,
/* 150 */
251
,
64
,
-
56
,
-
117
,
71
,
71
,
-
5
,
133
,
229
,
209
,
/* 160 */
199
,
191
,
153
,
221
,
205
,
246
,
106
,
155
,
111
,
48
,
/* 170 */
20
,
-
6
,
-
16
,
-
68
,
-
101
,
159
,
141
,
-
51
,
415
,
285
,
/* 180 */
413
,
412
,
280
,
410
,
408
,
326
,
282
,
312
,
311
,
302
,
/* 190 */
310
,
307
,
309
,
405
,
306
,
304
,
301
,
299
,
284
,
298
,
/* 200 */
283
,
297
,
295
,
290
,
294
,
289
,
292
,
288
,
316
,
383
,
/* 210 */
382
,
381
,
380
,
379
,
378
,
305
,
367
,
308
,
363
,
248
,
/* 220 */
247
,
268
,
371
,
369
,
275
,
274
,
268
,
366
,
365
,
364
,
/* 230 */
361
,
359
,
358
,
357
,
356
,
355
,
353
,
352
,
350
,
260
,
/* 240 */
254
,
243
,
126
,
178
,
154
,
132
,
68
,
13
,
58
,
};
#define YY_REDUCE_USE_DFLT (-179)
#define YY_REDUCE_COUNT (135)
#define YY_REDUCE_MIN (-
257
)
#define YY_REDUCE_MAX (
270
)
#define YY_REDUCE_MIN (-
178
)
#define YY_REDUCE_MAX (
402
)
static
const
short
yy_reduce_ofst
[]
=
{
/* 0 */
-
201
,
-
33
,
-
225
,
-
237
,
-
223
,
-
97
,
-
180
,
-
115
,
-
99
,
-
98
,
/* 10 */
-
73
,
-
174
,
-
190
,
-
197
,
-
169
,
-
52
,
-
17
,
-
194
,
-
48
,
-
15
9
,
/* 20 */
46
,
-
77
,
23
,
55
,
71
,
93
,
-
109
,
-
257
,
-
236
,
-
186
,
/* 30 */
-
154
,
-
84
,
32
,
74
,
85
,
91
,
95
,
96
,
97
,
98
,
/* 40 */
100
,
101
,
102
,
103
,
104
,
119
,
120
,
126
,
127
,
128
,
/* 50 */
130
,
131
,
132
,
133
,
135
,
134
,
167
,
169
,
170
,
171
,
/* 60 */
115
,
117
,
137
,
173
,
176
,
180
,
181
,
182
,
183
,
184
,
/* 70 */
185
,
186
,
187
,
188
,
189
,
190
,
191
,
193
,
194
,
195
,
/* 80 */
196
,
197
,
198
,
200
,
201
,
203
,
204
,
206
,
208
,
209
,
/* 90 */
2
10
,
212
,
214
,
217
,
221
,
223
,
224
,
225
,
226
,
230
,
/* 100 */
145
,
231
,
232
,
149
,
152
,
154
,
233
,
166
,
172
,
174
,
/* 110 */
2
36
,
239
,
237
,
240
,
244
,
246
,
241
,
242
,
245
,
247
,
/* 120 */
2
48
,
250
,
251
,
253
,
252
,
254
,
256
,
259
,
260
,
262
,
/* 130 */
2
55
,
257
,
261
,
258
,
266
,
270
,
/* 0 */
-
178
,
-
53
,
-
116
,
5
,
-
115
,
-
62
,
-
48
,
83
,
61
,
21
,
/* 10 */
-
162
,
138
,
142
,
82
,
120
,
117
,
98
,
96
,
-
163
,
9
9
,
/* 20 */
91
,
109
,
93
,
123
,
121
,
116
,
74
,
402
,
401
,
400
,
/* 30 */
399
,
398
,
397
,
396
,
395
,
394
,
393
,
392
,
391
,
390
,
/* 40 */
389
,
388
,
387
,
384
,
377
,
375
,
293
,
344
,
279
,
277
,
/* 50 */
276
,
272
,
270
,
249
,
257
,
253
,
339
,
338
,
337
,
336
,
/* 60 */
240
,
197
,
245
,
335
,
334
,
333
,
332
,
331
,
329
,
328
,
/* 70 */
327
,
325
,
324
,
323
,
322
,
321
,
320
,
319
,
318
,
317
,
/* 80 */
315
,
314
,
313
,
303
,
300
,
287
,
286
,
281
,
278
,
273
,
/* 90 */
2
71
,
269
,
267
,
265
,
264
,
263
,
262
,
261
,
259
,
258
,
/* 100 */
241
,
256
,
255
,
239
,
238
,
200
,
250
,
237
,
232
,
228
,
/* 110 */
2
27
,
226
,
225
,
224
,
203
,
201
,
188
,
235
,
233
,
234
,
/* 120 */
2
30
,
231
,
223
,
219
,
207
,
220
,
218
,
216
,
210
,
214
,
/* 130 */
2
17
,
215
,
213
,
211
,
206
,
208
,
};
static
const
YYACTIONTYPE
yy_default
[]
=
{
/* 0 */
638
,
690
,
679
,
858
,
858
,
638
,
638
,
638
,
638
,
638
,
/* 10 */
638
,
783
,
656
,
858
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 20 */
638
,
638
,
638
,
692
,
692
,
692
,
778
,
638
,
638
,
638
,
/* 30 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 40 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 50 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
785
,
787
,
638
,
/* 60 */
805
,
805
,
776
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 70 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 80 */
638
,
677
,
638
,
675
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 90 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
664
,
638
,
638
,
/* 100 */
638
,
658
,
658
,
638
,
638
,
638
,
658
,
812
,
816
,
810
,
/* 110 */
798
,
806
,
797
,
793
,
792
,
820
,
638
,
658
,
658
,
687
,
/* 120 */
687
,
658
,
708
,
706
,
704
,
696
,
702
,
698
,
700
,
694
,
/* 130 */
658
,
685
,
658
,
685
,
724
,
738
,
638
,
821
,
857
,
811
,
/* 140 */
847
,
846
,
853
,
845
,
844
,
638
,
840
,
841
,
843
,
842
,
/* 150 */
638
,
638
,
638
,
638
,
849
,
848
,
638
,
638
,
638
,
638
,
/* 160 */
638
,
638
,
638
,
638
,
638
,
638
,
823
,
638
,
817
,
813
,
/* 170 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 180 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
775
,
638
,
638
,
/* 190 */
784
,
638
,
638
,
638
,
638
,
638
,
638
,
807
,
638
,
799
,
/* 200 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
752
,
638
,
638
,
/* 210 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 220 */
638
,
862
,
638
,
638
,
638
,
746
,
860
,
638
,
638
,
638
,
/* 230 */
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
638
,
/* 240 */
638
,
711
,
638
,
662
,
660
,
638
,
654
,
638
,
/* 0 */
645
,
463
,
452
,
634
,
634
,
645
,
645
,
645
,
645
,
645
,
/* 10 */
645
,
559
,
429
,
634
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 20 */
645
,
645
,
645
,
465
,
465
,
465
,
554
,
645
,
645
,
645
,
/* 30 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 40 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 50 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
561
,
563
,
645
,
/* 60 */
581
,
581
,
552
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 70 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 80 */
645
,
450
,
645
,
448
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 90 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
437
,
645
,
645
,
/* 100 */
645
,
431
,
431
,
645
,
645
,
645
,
431
,
588
,
592
,
586
,
/* 110 */
574
,
582
,
573
,
569
,
568
,
596
,
645
,
431
,
431
,
460
,
/* 120 */
460
,
431
,
481
,
479
,
477
,
469
,
475
,
471
,
473
,
467
,
/* 130 */
431
,
458
,
431
,
458
,
498
,
513
,
645
,
597
,
633
,
587
,
/* 140 */
623
,
622
,
629
,
621
,
620
,
645
,
616
,
617
,
619
,
618
,
/* 150 */
645
,
645
,
645
,
645
,
625
,
624
,
645
,
645
,
645
,
645
,
/* 160 */
645
,
645
,
645
,
645
,
645
,
645
,
599
,
645
,
593
,
589
,
/* 170 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 180 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
551
,
645
,
645
,
/* 190 */
560
,
645
,
645
,
645
,
645
,
645
,
645
,
583
,
645
,
575
,
/* 200 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
528
,
645
,
645
,
/* 210 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 220 */
645
,
638
,
645
,
645
,
645
,
522
,
636
,
645
,
645
,
645
,
/* 230 */
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
645
,
/* 240 */
645
,
645
,
484
,
645
,
435
,
433
,
645
,
427
,
645
,
644
,
/* 250 */
643
,
642
,
635
,
550
,
549
,
548
,
547
,
556
,
558
,
557
,
/* 260 */
555
,
562
,
564
,
553
,
567
,
566
,
571
,
570
,
572
,
565
,
/* 270 */
585
,
584
,
577
,
578
,
580
,
579
,
576
,
613
,
631
,
632
,
/* 280 */
630
,
628
,
627
,
626
,
612
,
611
,
610
,
609
,
608
,
605
,
/* 290 */
607
,
604
,
606
,
603
,
602
,
601
,
600
,
598
,
615
,
614
,
/* 300 */
595
,
594
,
591
,
590
,
546
,
531
,
530
,
529
,
527
,
464
,
/* 310 */
512
,
511
,
510
,
509
,
508
,
507
,
506
,
505
,
504
,
503
,
/* 320 */
502
,
501
,
500
,
499
,
496
,
492
,
490
,
489
,
488
,
485
,
/* 330 */
459
,
462
,
461
,
641
,
640
,
639
,
637
,
533
,
534
,
526
,
/* 340 */
525
,
524
,
523
,
532
,
483
,
482
,
480
,
478
,
470
,
476
,
/* 350 */
472
,
474
,
468
,
466
,
454
,
453
,
521
,
520
,
519
,
518
,
/* 360 */
517
,
516
,
515
,
514
,
497
,
495
,
494
,
493
,
491
,
487
,
/* 370 */
486
,
536
,
545
,
544
,
543
,
542
,
541
,
540
,
539
,
538
,
/* 380 */
537
,
535
,
451
,
449
,
447
,
446
,
445
,
444
,
443
,
442
,
/* 390 */
441
,
440
,
457
,
439
,
432
,
438
,
436
,
456
,
455
,
434
,
/* 400 */
430
,
428
,
426
,
425
,
424
,
423
,
422
,
421
,
420
,
419
,
/* 410 */
418
,
417
,
416
,
415
,
};
/********** 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.
**
...
...
@@ -439,10 +410,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
[]
=
{
...
...
@@ -544,6 +511,7 @@ static const YYCODETYPE yyFallback[] = {
0
,
/* FSYNC => nothing */
0
,
/* COMP => nothing */
0
,
/* PRECISION => nothing */
0
,
/* UPDATE => nothing */
0
,
/* LP => nothing */
0
,
/* RP => nothing */
0
,
/* TAGS => nothing */
...
...
@@ -666,13 +634,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
...
...
@@ -683,22 +647,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
yy
hwm
;
/* High-water mark of the stack
*/
int
yy
idxMax
;
/* 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 */
ParseCTX_SDECL
/* A place to hold %extra_context */
#if YYSTACKDEPTH<=0
int
yystksz
;
/* Current side of the stack */
yyStackEntry
*
yystack
;
/* The parser's stack */
yyStackEntry
yystk0
;
/* First stack entry */
#else
yyStackEntry
yystack
[
YYSTACKDEPTH
];
/* The parser's stack */
yyStackEntry
*
yystackEnd
;
/* Last entry in the stack */
#endif
};
typedef
struct
yyParser
yyParser
;
...
...
@@ -735,282 +694,81 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){
}
#endif
/* NDEBUG */
#if
defined(YYCOVERAGE) || !defined(NDEBUG)
#if
ndef 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 */
"MNODES"
,
/* 47 */
"DNODES"
,
/* 48 */
"ACCOUNTS"
,
/* 49 */
"USERS"
,
/* 50 */
"MODULES"
,
/* 51 */
"QUERIES"
,
/* 52 */
"CONNECTIONS"
,
/* 53 */
"STREAMS"
,
/* 54 */
"VARIABLES"
,
/* 55 */
"SCORES"
,
/* 56 */
"GRANTS"
,
/* 57 */
"VNODES"
,
/* 58 */
"IPTOKEN"
,
/* 59 */
"DOT"
,
/* 60 */
"TABLES"
,
/* 61 */
"STABLES"
,
/* 62 */
"VGROUPS"
,
/* 63 */
"DROP"
,
/* 64 */
"TABLE"
,
/* 65 */
"DATABASE"
,
/* 66 */
"DNODE"
,
/* 67 */
"USER"
,
/* 68 */
"ACCOUNT"
,
/* 69 */
"USE"
,
/* 70 */
"DESCRIBE"
,
/* 71 */
"ALTER"
,
/* 72 */
"PASS"
,
/* 73 */
"PRIVILEGE"
,
/* 74 */
"LOCAL"
,
/* 75 */
"IF"
,
/* 76 */
"EXISTS"
,
/* 77 */
"CREATE"
,
/* 78 */
"PPS"
,
/* 79 */
"TSERIES"
,
/* 80 */
"DBS"
,
/* 81 */
"STORAGE"
,
/* 82 */
"QTIME"
,
/* 83 */
"CONNS"
,
/* 84 */
"STATE"
,
/* 85 */
"KEEP"
,
/* 86 */
"CACHE"
,
/* 87 */
"REPLICA"
,
/* 88 */
"QUORUM"
,
/* 89 */
"DAYS"
,
/* 90 */
"MINROWS"
,
/* 91 */
"MAXROWS"
,
/* 92 */
"BLOCKS"
,
/* 93 */
"CTIME"
,
/* 94 */
"WAL"
,
/* 95 */
"FSYNC"
,
/* 96 */
"COMP"
,
/* 97 */
"PRECISION"
,
/* 98 */
"LP"
,
/* 99 */
"RP"
,
/* 100 */
"TAGS"
,
/* 101 */
"USING"
,
/* 102 */
"AS"
,
/* 103 */
"COMMA"
,
/* 104 */
"NULL"
,
/* 105 */
"SELECT"
,
/* 106 */
"UNION"
,
/* 107 */
"ALL"
,
/* 108 */
"FROM"
,
/* 109 */
"VARIABLE"
,
/* 110 */
"INTERVAL"
,
/* 111 */
"FILL"
,
/* 112 */
"SLIDING"
,
/* 113 */
"ORDER"
,
/* 114 */
"BY"
,
/* 115 */
"ASC"
,
/* 116 */
"DESC"
,
/* 117 */
"GROUP"
,
/* 118 */
"HAVING"
,
/* 119 */
"LIMIT"
,
/* 120 */
"OFFSET"
,
/* 121 */
"SLIMIT"
,
/* 122 */
"SOFFSET"
,
/* 123 */
"WHERE"
,
/* 124 */
"NOW"
,
/* 125 */
"RESET"
,
/* 126 */
"QUERY"
,
/* 127 */
"ADD"
,
/* 128 */
"COLUMN"
,
/* 129 */
"TAG"
,
/* 130 */
"CHANGE"
,
/* 131 */
"SET"
,
/* 132 */
"KILL"
,
/* 133 */
"CONNECTION"
,
/* 134 */
"STREAM"
,
/* 135 */
"COLON"
,
/* 136 */
"ABORT"
,
/* 137 */
"AFTER"
,
/* 138 */
"ATTACH"
,
/* 139 */
"BEFORE"
,
/* 140 */
"BEGIN"
,
/* 141 */
"CASCADE"
,
/* 142 */
"CLUSTER"
,
/* 143 */
"CONFLICT"
,
/* 144 */
"COPY"
,
/* 145 */
"DEFERRED"
,
/* 146 */
"DELIMITERS"
,
/* 147 */
"DETACH"
,
/* 148 */
"EACH"
,
/* 149 */
"END"
,
/* 150 */
"EXPLAIN"
,
/* 151 */
"FAIL"
,
/* 152 */
"FOR"
,
/* 153 */
"IGNORE"
,
/* 154 */
"IMMEDIATE"
,
/* 155 */
"INITIALLY"
,
/* 156 */
"INSTEAD"
,
/* 157 */
"MATCH"
,
/* 158 */
"KEY"
,
/* 159 */
"OF"
,
/* 160 */
"RAISE"
,
/* 161 */
"REPLACE"
,
/* 162 */
"RESTRICT"
,
/* 163 */
"ROW"
,
/* 164 */
"STATEMENT"
,
/* 165 */
"TRIGGER"
,
/* 166 */
"VIEW"
,
/* 167 */
"COUNT"
,
/* 168 */
"SUM"
,
/* 169 */
"AVG"
,
/* 170 */
"MIN"
,
/* 171 */
"MAX"
,
/* 172 */
"FIRST"
,
/* 173 */
"LAST"
,
/* 174 */
"TOP"
,
/* 175 */
"BOTTOM"
,
/* 176 */
"STDDEV"
,
/* 177 */
"PERCENTILE"
,
/* 178 */
"APERCENTILE"
,
/* 179 */
"LEASTSQUARES"
,
/* 180 */
"HISTOGRAM"
,
/* 181 */
"DIFF"
,
/* 182 */
"SPREAD"
,
/* 183 */
"TWA"
,
/* 184 */
"INTERP"
,
/* 185 */
"LAST_ROW"
,
/* 186 */
"RATE"
,
/* 187 */
"IRATE"
,
/* 188 */
"SUM_RATE"
,
/* 189 */
"SUM_IRATE"
,
/* 190 */
"AVG_RATE"
,
/* 191 */
"AVG_IRATE"
,
/* 192 */
"TBID"
,
/* 193 */
"SEMI"
,
/* 194 */
"NONE"
,
/* 195 */
"PREV"
,
/* 196 */
"LINEAR"
,
/* 197 */
"IMPORT"
,
/* 198 */
"METRIC"
,
/* 199 */
"TBNAME"
,
/* 200 */
"JOIN"
,
/* 201 */
"METRICS"
,
/* 202 */
"STABLE"
,
/* 203 */
"INSERT"
,
/* 204 */
"INTO"
,
/* 205 */
"VALUES"
,
/* 206 */
"program"
,
/* 207 */
"cmd"
,
/* 208 */
"dbPrefix"
,
/* 209 */
"ids"
,
/* 210 */
"cpxName"
,
/* 211 */
"ifexists"
,
/* 212 */
"alter_db_optr"
,
/* 213 */
"acct_optr"
,
/* 214 */
"ifnotexists"
,
/* 215 */
"db_optr"
,
/* 216 */
"pps"
,
/* 217 */
"tseries"
,
/* 218 */
"dbs"
,
/* 219 */
"streams"
,
/* 220 */
"storage"
,
/* 221 */
"qtime"
,
/* 222 */
"users"
,
/* 223 */
"conns"
,
/* 224 */
"state"
,
/* 225 */
"keep"
,
/* 226 */
"tagitemlist"
,
/* 227 */
"cache"
,
/* 228 */
"replica"
,
/* 229 */
"quorum"
,
/* 230 */
"days"
,
/* 231 */
"minrows"
,
/* 232 */
"maxrows"
,
/* 233 */
"blocks"
,
/* 234 */
"ctime"
,
/* 235 */
"wal"
,
/* 236 */
"fsync"
,
/* 237 */
"comp"
,
/* 238 */
"prec"
,
/* 239 */
"typename"
,
/* 240 */
"signed"
,
/* 241 */
"create_table_args"
,
/* 242 */
"columnlist"
,
/* 243 */
"select"
,
/* 244 */
"column"
,
/* 245 */
"tagitem"
,
/* 246 */
"selcollist"
,
/* 247 */
"from"
,
/* 248 */
"where_opt"
,
/* 249 */
"interval_opt"
,
/* 250 */
"fill_opt"
,
/* 251 */
"sliding_opt"
,
/* 252 */
"groupby_opt"
,
/* 253 */
"orderby_opt"
,
/* 254 */
"having_opt"
,
/* 255 */
"slimit_opt"
,
/* 256 */
"limit_opt"
,
/* 257 */
"union"
,
/* 258 */
"sclp"
,
/* 259 */
"expr"
,
/* 260 */
"as"
,
/* 261 */
"tablelist"
,
/* 262 */
"tmvar"
,
/* 263 */
"sortlist"
,
/* 264 */
"sortitem"
,
/* 265 */
"item"
,
/* 266 */
"sortorder"
,
/* 267 */
"grouplist"
,
/* 268 */
"exprlist"
,
/* 269 */
"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"
,
"MNODES"
,
"DNODES"
,
"ACCOUNTS"
,
"USERS"
,
"MODULES"
,
"QUERIES"
,
"CONNECTIONS"
,
"STREAMS"
,
"VARIABLES"
,
"SCORES"
,
"GRANTS"
,
"VNODES"
,
"IPTOKEN"
,
"DOT"
,
"TABLES"
,
"STABLES"
,
"VGROUPS"
,
"DROP"
,
"TABLE"
,
"DATABASE"
,
"DNODE"
,
"USER"
,
"ACCOUNT"
,
"USE"
,
"DESCRIBE"
,
"ALTER"
,
"PASS"
,
"PRIVILEGE"
,
"LOCAL"
,
"IF"
,
"EXISTS"
,
"CREATE"
,
"PPS"
,
"TSERIES"
,
"DBS"
,
"STORAGE"
,
"QTIME"
,
"CONNS"
,
"STATE"
,
"KEEP"
,
"CACHE"
,
"REPLICA"
,
"QUORUM"
,
"DAYS"
,
"MINROWS"
,
"MAXROWS"
,
"BLOCKS"
,
"CTIME"
,
"WAL"
,
"FSYNC"
,
"COMP"
,
"PRECISION"
,
"UPDATE"
,
"LP"
,
"RP"
,
"TAGS"
,
"USING"
,
"AS"
,
"COMMA"
,
"NULL"
,
"SELECT"
,
"UNION"
,
"ALL"
,
"FROM"
,
"VARIABLE"
,
"INTERVAL"
,
"FILL"
,
"SLIDING"
,
"ORDER"
,
"BY"
,
"ASC"
,
"DESC"
,
"GROUP"
,
"HAVING"
,
"LIMIT"
,
"OFFSET"
,
"SLIMIT"
,
"SOFFSET"
,
"WHERE"
,
"NOW"
,
"RESET"
,
"QUERY"
,
"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"
,
"COUNT"
,
"SUM"
,
"AVG"
,
"MIN"
,
"MAX"
,
"FIRST"
,
"LAST"
,
"TOP"
,
"BOTTOM"
,
"STDDEV"
,
"PERCENTILE"
,
"APERCENTILE"
,
"LEASTSQUARES"
,
"HISTOGRAM"
,
"DIFF"
,
"SPREAD"
,
"TWA"
,
"INTERP"
,
"LAST_ROW"
,
"RATE"
,
"IRATE"
,
"SUM_RATE"
,
"SUM_IRATE"
,
"AVG_RATE"
,
"AVG_IRATE"
,
"TBID"
,
"SEMI"
,
"NONE"
,
"PREV"
,
"LINEAR"
,
"IMPORT"
,
"METRIC"
,
"TBNAME"
,
"JOIN"
,
"METRICS"
,
"STABLE"
,
"INSERT"
,
"INTO"
,
"VALUES"
,
"error"
,
"program"
,
"cmd"
,
"dbPrefix"
,
"ids"
,
"cpxName"
,
"ifexists"
,
"alter_db_optr"
,
"acct_optr"
,
"ifnotexists"
,
"db_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"
,
"typename"
,
"signed"
,
"create_table_args"
,
"columnlist"
,
"select"
,
"column"
,
"tagitem"
,
"selcollist"
,
"from"
,
"where_opt"
,
"interval_opt"
,
"fill_opt"
,
"sliding_opt"
,
"groupby_opt"
,
"orderby_opt"
,
"having_opt"
,
"slimit_opt"
,
"limit_opt"
,
"union"
,
"sclp"
,
"expr"
,
"as"
,
"tablelist"
,
"tmvar"
,
"sortlist"
,
"sortitem"
,
"item"
,
"sortorder"
,
"grouplist"
,
"exprlist"
,
"expritem"
,
};
#endif
/*
defined(YYCOVERAGE) || !defined(NDEBUG)
*/
#endif
/*
NDEBUG
*/
#ifndef NDEBUG
/* For tracing reduce actions, the names of all rules are required.
...
...
@@ -1099,226 +857,181 @@ static const char *const yyRuleName[] = {
/* 80 */
"fsync ::= FSYNC INTEGER"
,
/* 81 */
"comp ::= COMP INTEGER"
,
/* 82 */
"prec ::= PRECISION STRING"
,
/* 83 */
"db_optr ::="
,
/* 84 */
"db_optr ::= db_optr cache"
,
/* 85 */
"db_optr ::= db_optr replica"
,
/* 86 */
"db_optr ::= db_optr quorum"
,
/* 87 */
"db_optr ::= db_optr days"
,
/* 88 */
"db_optr ::= db_optr minrows"
,
/* 89 */
"db_optr ::= db_optr maxrows"
,
/* 90 */
"db_optr ::= db_optr blocks"
,
/* 91 */
"db_optr ::= db_optr ctime"
,
/* 92 */
"db_optr ::= db_optr wal"
,
/* 93 */
"db_optr ::= db_optr fsync"
,
/* 94 */
"db_optr ::= db_optr comp"
,
/* 95 */
"db_optr ::= db_optr prec"
,
/* 96 */
"db_optr ::= db_optr keep"
,
/* 97 */
"alter_db_optr ::="
,
/* 98 */
"alter_db_optr ::= alter_db_optr replica"
,
/* 99 */
"alter_db_optr ::= alter_db_optr quorum"
,
/* 100 */
"alter_db_optr ::= alter_db_optr keep"
,
/* 101 */
"alter_db_optr ::= alter_db_optr blocks"
,
/* 102 */
"alter_db_optr ::= alter_db_optr comp"
,
/* 103 */
"alter_db_optr ::= alter_db_optr wal"
,
/* 104 */
"alter_db_optr ::= alter_db_optr fsync"
,
/* 105 */
"typename ::= ids"
,
/* 106 */
"typename ::= ids LP signed RP"
,
/* 107 */
"signed ::= INTEGER"
,
/* 108 */
"signed ::= PLUS INTEGER"
,
/* 109 */
"signed ::= MINUS INTEGER"
,
/* 110 */
"cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args"
,
/* 111 */
"create_table_args ::= LP columnlist RP"
,
/* 112 */
"create_table_args ::= LP columnlist RP TAGS LP columnlist RP"
,
/* 113 */
"create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP"
,
/* 114 */
"create_table_args ::= AS select"
,
/* 115 */
"columnlist ::= columnlist COMMA column"
,
/* 116 */
"columnlist ::= column"
,
/* 117 */
"column ::= ids typename"
,
/* 118 */
"tagitemlist ::= tagitemlist COMMA tagitem"
,
/* 119 */
"tagitemlist ::= tagitem"
,
/* 120 */
"tagitem ::= INTEGER"
,
/* 121 */
"tagitem ::= FLOAT"
,
/* 122 */
"tagitem ::= STRING"
,
/* 123 */
"tagitem ::= BOOL"
,
/* 124 */
"tagitem ::= NULL"
,
/* 125 */
"tagitem ::= MINUS INTEGER"
,
/* 126 */
"tagitem ::= MINUS FLOAT"
,
/* 127 */
"tagitem ::= PLUS INTEGER"
,
/* 128 */
"tagitem ::= PLUS FLOAT"
,
/* 129 */
"select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt"
,
/* 130 */
"union ::= select"
,
/* 131 */
"union ::= LP union RP"
,
/* 132 */
"union ::= union UNION ALL select"
,
/* 133 */
"union ::= union UNION ALL LP select RP"
,
/* 134 */
"cmd ::= union"
,
/* 135 */
"select ::= SELECT selcollist"
,
/* 136 */
"sclp ::= selcollist COMMA"
,
/* 137 */
"sclp ::="
,
/* 138 */
"selcollist ::= sclp expr as"
,
/* 139 */
"selcollist ::= sclp STAR"
,
/* 140 */
"as ::= AS ids"
,
/* 141 */
"as ::= ids"
,
/* 142 */
"as ::="
,
/* 143 */
"from ::= FROM tablelist"
,
/* 144 */
"tablelist ::= ids cpxName"
,
/* 145 */
"tablelist ::= ids cpxName ids"
,
/* 146 */
"tablelist ::= tablelist COMMA ids cpxName"
,
/* 147 */
"tablelist ::= tablelist COMMA ids cpxName ids"
,
/* 148 */
"tmvar ::= VARIABLE"
,
/* 149 */
"interval_opt ::= INTERVAL LP tmvar RP"
,
/* 150 */
"interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP"
,
/* 151 */
"interval_opt ::="
,
/* 152 */
"fill_opt ::="
,
/* 153 */
"fill_opt ::= FILL LP ID COMMA tagitemlist RP"
,
/* 154 */
"fill_opt ::= FILL LP ID RP"
,
/* 155 */
"sliding_opt ::= SLIDING LP tmvar RP"
,
/* 156 */
"sliding_opt ::="
,
/* 157 */
"orderby_opt ::="
,
/* 158 */
"orderby_opt ::= ORDER BY sortlist"
,
/* 159 */
"sortlist ::= sortlist COMMA item sortorder"
,
/* 160 */
"sortlist ::= item sortorder"
,
/* 161 */
"item ::= ids cpxName"
,
/* 162 */
"sortorder ::= ASC"
,
/* 163 */
"sortorder ::= DESC"
,
/* 164 */
"sortorder ::="
,
/* 165 */
"groupby_opt ::="
,
/* 166 */
"groupby_opt ::= GROUP BY grouplist"
,
/* 167 */
"grouplist ::= grouplist COMMA item"
,
/* 168 */
"grouplist ::= item"
,
/* 169 */
"having_opt ::="
,
/* 170 */
"having_opt ::= HAVING expr"
,
/* 171 */
"limit_opt ::="
,
/* 172 */
"limit_opt ::= LIMIT signed"
,
/* 173 */
"limit_opt ::= LIMIT signed OFFSET signed"
,
/* 174 */
"limit_opt ::= LIMIT signed COMMA signed"
,
/* 175 */
"slimit_opt ::="
,
/* 176 */
"slimit_opt ::= SLIMIT signed"
,
/* 177 */
"slimit_opt ::= SLIMIT signed SOFFSET signed"
,
/* 178 */
"slimit_opt ::= SLIMIT signed COMMA signed"
,
/* 179 */
"where_opt ::="
,
/* 180 */
"where_opt ::= WHERE expr"
,
/* 181 */
"expr ::= LP expr RP"
,
/* 182 */
"expr ::= ID"
,
/* 183 */
"expr ::= ID DOT ID"
,
/* 184 */
"expr ::= ID DOT STAR"
,
/* 185 */
"expr ::= INTEGER"
,
/* 186 */
"expr ::= MINUS INTEGER"
,
/* 187 */
"expr ::= PLUS INTEGER"
,
/* 188 */
"expr ::= FLOAT"
,
/* 189 */
"expr ::= MINUS FLOAT"
,
/* 190 */
"expr ::= PLUS FLOAT"
,
/* 191 */
"expr ::= STRING"
,
/* 192 */
"expr ::= NOW"
,
/* 193 */
"expr ::= VARIABLE"
,
/* 194 */
"expr ::= BOOL"
,
/* 195 */
"expr ::= ID LP exprlist RP"
,
/* 196 */
"expr ::= ID LP STAR RP"
,
/* 197 */
"expr ::= expr IS NULL"
,
/* 198 */
"expr ::= expr IS NOT NULL"
,
/* 199 */
"expr ::= expr LT expr"
,
/* 200 */
"expr ::= expr GT expr"
,
/* 201 */
"expr ::= expr LE expr"
,
/* 202 */
"expr ::= expr GE expr"
,
/* 203 */
"expr ::= expr NE expr"
,
/* 204 */
"expr ::= expr EQ expr"
,
/* 205 */
"expr ::= expr AND expr"
,
/* 206 */
"expr ::= expr OR expr"
,
/* 207 */
"expr ::= expr PLUS expr"
,
/* 208 */
"expr ::= expr MINUS expr"
,
/* 209 */
"expr ::= expr STAR expr"
,
/* 210 */
"expr ::= expr SLASH expr"
,
/* 211 */
"expr ::= expr REM expr"
,
/* 212 */
"expr ::= expr LIKE expr"
,
/* 213 */
"expr ::= expr IN LP exprlist RP"
,
/* 214 */
"exprlist ::= exprlist COMMA expritem"
,
/* 215 */
"exprlist ::= expritem"
,
/* 216 */
"expritem ::= expr"
,
/* 217 */
"expritem ::="
,
/* 218 */
"cmd ::= RESET QUERY CACHE"
,
/* 219 */
"cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist"
,
/* 220 */
"cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids"
,
/* 221 */
"cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist"
,
/* 222 */
"cmd ::= ALTER TABLE ids cpxName DROP TAG ids"
,
/* 223 */
"cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids"
,
/* 224 */
"cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem"
,
/* 225 */
"cmd ::= KILL CONNECTION INTEGER"
,
/* 226 */
"cmd ::= KILL STREAM INTEGER COLON INTEGER"
,
/* 227 */
"cmd ::= KILL QUERY INTEGER COLON INTEGER"
,
/* 83 */
"update ::= UPDATE INTEGER"
,
/* 84 */
"db_optr ::="
,
/* 85 */
"db_optr ::= db_optr cache"
,
/* 86 */
"db_optr ::= db_optr replica"
,
/* 87 */
"db_optr ::= db_optr quorum"
,
/* 88 */
"db_optr ::= db_optr days"
,
/* 89 */
"db_optr ::= db_optr minrows"
,
/* 90 */
"db_optr ::= db_optr maxrows"
,
/* 91 */
"db_optr ::= db_optr blocks"
,
/* 92 */
"db_optr ::= db_optr ctime"
,
/* 93 */
"db_optr ::= db_optr wal"
,
/* 94 */
"db_optr ::= db_optr fsync"
,
/* 95 */
"db_optr ::= db_optr comp"
,
/* 96 */
"db_optr ::= db_optr prec"
,
/* 97 */
"db_optr ::= db_optr keep"
,
/* 98 */
"db_optr ::= db_optr update"
,
/* 99 */
"alter_db_optr ::="
,
/* 100 */
"alter_db_optr ::= alter_db_optr replica"
,
/* 101 */
"alter_db_optr ::= alter_db_optr quorum"
,
/* 102 */
"alter_db_optr ::= alter_db_optr keep"
,
/* 103 */
"alter_db_optr ::= alter_db_optr blocks"
,
/* 104 */
"alter_db_optr ::= alter_db_optr comp"
,
/* 105 */
"alter_db_optr ::= alter_db_optr wal"
,
/* 106 */
"alter_db_optr ::= alter_db_optr fsync"
,
/* 107 */
"alter_db_optr ::= alter_db_optr update"
,
/* 108 */
"typename ::= ids"
,
/* 109 */
"typename ::= ids LP signed RP"
,
/* 110 */
"signed ::= INTEGER"
,
/* 111 */
"signed ::= PLUS INTEGER"
,
/* 112 */
"signed ::= MINUS INTEGER"
,
/* 113 */
"cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args"
,
/* 114 */
"create_table_args ::= LP columnlist RP"
,
/* 115 */
"create_table_args ::= LP columnlist RP TAGS LP columnlist RP"
,
/* 116 */
"create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP"
,
/* 117 */
"create_table_args ::= AS select"
,
/* 118 */
"columnlist ::= columnlist COMMA column"
,
/* 119 */
"columnlist ::= column"
,
/* 120 */
"column ::= ids typename"
,
/* 121 */
"tagitemlist ::= tagitemlist COMMA tagitem"
,
/* 122 */
"tagitemlist ::= tagitem"
,
/* 123 */
"tagitem ::= INTEGER"
,
/* 124 */
"tagitem ::= FLOAT"
,
/* 125 */
"tagitem ::= STRING"
,
/* 126 */
"tagitem ::= BOOL"
,
/* 127 */
"tagitem ::= NULL"
,
/* 128 */
"tagitem ::= MINUS INTEGER"
,
/* 129 */
"tagitem ::= MINUS FLOAT"
,
/* 130 */
"tagitem ::= PLUS INTEGER"
,
/* 131 */
"tagitem ::= PLUS FLOAT"
,
/* 132 */
"select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt"
,
/* 133 */
"union ::= select"
,
/* 134 */
"union ::= LP union RP"
,
/* 135 */
"union ::= union UNION ALL select"
,
/* 136 */
"union ::= union UNION ALL LP select RP"
,
/* 137 */
"cmd ::= union"
,
/* 138 */
"select ::= SELECT selcollist"
,
/* 139 */
"sclp ::= selcollist COMMA"
,
/* 140 */
"sclp ::="
,
/* 141 */
"selcollist ::= sclp expr as"
,
/* 142 */
"selcollist ::= sclp STAR"
,
/* 143 */
"as ::= AS ids"
,
/* 144 */
"as ::= ids"
,
/* 145 */
"as ::="
,
/* 146 */
"from ::= FROM tablelist"
,
/* 147 */
"tablelist ::= ids cpxName"
,
/* 148 */
"tablelist ::= ids cpxName ids"
,
/* 149 */
"tablelist ::= tablelist COMMA ids cpxName"
,
/* 150 */
"tablelist ::= tablelist COMMA ids cpxName ids"
,
/* 151 */
"tmvar ::= VARIABLE"
,
/* 152 */
"interval_opt ::= INTERVAL LP tmvar RP"
,
/* 153 */
"interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP"
,
/* 154 */
"interval_opt ::="
,
/* 155 */
"fill_opt ::="
,
/* 156 */
"fill_opt ::= FILL LP ID COMMA tagitemlist RP"
,
/* 157 */
"fill_opt ::= FILL LP ID RP"
,
/* 158 */
"sliding_opt ::= SLIDING LP tmvar RP"
,
/* 159 */
"sliding_opt ::="
,
/* 160 */
"orderby_opt ::="
,
/* 161 */
"orderby_opt ::= ORDER BY sortlist"
,
/* 162 */
"sortlist ::= sortlist COMMA item sortorder"
,
/* 163 */
"sortlist ::= item sortorder"
,
/* 164 */
"item ::= ids cpxName"
,
/* 165 */
"sortorder ::= ASC"
,
/* 166 */
"sortorder ::= DESC"
,
/* 167 */
"sortorder ::="
,
/* 168 */
"groupby_opt ::="
,
/* 169 */
"groupby_opt ::= GROUP BY grouplist"
,
/* 170 */
"grouplist ::= grouplist COMMA item"
,
/* 171 */
"grouplist ::= item"
,
/* 172 */
"having_opt ::="
,
/* 173 */
"having_opt ::= HAVING expr"
,
/* 174 */
"limit_opt ::="
,
/* 175 */
"limit_opt ::= LIMIT signed"
,
/* 176 */
"limit_opt ::= LIMIT signed OFFSET signed"
,
/* 177 */
"limit_opt ::= LIMIT signed COMMA signed"
,
/* 178 */
"slimit_opt ::="
,
/* 179 */
"slimit_opt ::= SLIMIT signed"
,
/* 180 */
"slimit_opt ::= SLIMIT signed SOFFSET signed"
,
/* 181 */
"slimit_opt ::= SLIMIT signed COMMA signed"
,
/* 182 */
"where_opt ::="
,
/* 183 */
"where_opt ::= WHERE expr"
,
/* 184 */
"expr ::= LP expr RP"
,
/* 185 */
"expr ::= ID"
,
/* 186 */
"expr ::= ID DOT ID"
,
/* 187 */
"expr ::= ID DOT STAR"
,
/* 188 */
"expr ::= INTEGER"
,
/* 189 */
"expr ::= MINUS INTEGER"
,
/* 190 */
"expr ::= PLUS INTEGER"
,
/* 191 */
"expr ::= FLOAT"
,
/* 192 */
"expr ::= MINUS FLOAT"
,
/* 193 */
"expr ::= PLUS FLOAT"
,
/* 194 */
"expr ::= STRING"
,
/* 195 */
"expr ::= NOW"
,
/* 196 */
"expr ::= VARIABLE"
,
/* 197 */
"expr ::= BOOL"
,
/* 198 */
"expr ::= ID LP exprlist RP"
,
/* 199 */
"expr ::= ID LP STAR RP"
,
/* 200 */
"expr ::= expr IS NULL"
,
/* 201 */
"expr ::= expr IS NOT NULL"
,
/* 202 */
"expr ::= expr LT expr"
,
/* 203 */
"expr ::= expr GT expr"
,
/* 204 */
"expr ::= expr LE expr"
,
/* 205 */
"expr ::= expr GE expr"
,
/* 206 */
"expr ::= expr NE expr"
,
/* 207 */
"expr ::= expr EQ expr"
,
/* 208 */
"expr ::= expr AND expr"
,
/* 209 */
"expr ::= expr OR expr"
,
/* 210 */
"expr ::= expr PLUS expr"
,
/* 211 */
"expr ::= expr MINUS expr"
,
/* 212 */
"expr ::= expr STAR expr"
,
/* 213 */
"expr ::= expr SLASH expr"
,
/* 214 */
"expr ::= expr REM expr"
,
/* 215 */
"expr ::= expr LIKE expr"
,
/* 216 */
"expr ::= expr IN LP exprlist RP"
,
/* 217 */
"exprlist ::= exprlist COMMA expritem"
,
/* 218 */
"exprlist ::= expritem"
,
/* 219 */
"expritem ::= expr"
,
/* 220 */
"expritem ::="
,
/* 221 */
"cmd ::= RESET QUERY CACHE"
,
/* 222 */
"cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist"
,
/* 223 */
"cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids"
,
/* 224 */
"cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist"
,
/* 225 */
"cmd ::= ALTER TABLE ids cpxName DROP TAG ids"
,
/* 226 */
"cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids"
,
/* 227 */
"cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem"
,
/* 228 */
"cmd ::= KILL CONNECTION INTEGER"
,
/* 229 */
"cmd ::= KILL STREAM INTEGER COLON INTEGER"
,
/* 230 */
"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
->
yy
tos
=
&
p
->
yystack
[
idx
]
;
p
->
yy
stksz
=
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
*
yypRawParser
ParseCTX_PDECL
){
yyParser
*
yypParser
=
(
yyParser
*
)
yypRawParser
;
ParseCTX_STORE
#ifdef YYTRACKMAXSTACKDEPTH
yypParser
->
yyhwm
=
0
;
#endif
#if YYSTACKDEPTH<=0
yypParser
->
yytos
=
NULL
;
yypParser
->
yystack
=
NULL
;
yypParser
->
yystksz
=
0
;
if
(
yyGrowStack
(
yypParser
)
){
yypParser
->
yystack
=
&
yypParser
->
yystk0
;
yypParser
->
yystksz
=
1
;
}
#endif
#ifndef YYNOERRORRECOVERY
yypParser
->
yyerrcnt
=
-
1
;
#endif
yypParser
->
yytos
=
yypParser
->
yystack
;
yypParser
->
yystack
[
0
].
stateno
=
0
;
yypParser
->
yystack
[
0
].
major
=
0
;
#if YYSTACKDEPTH>0
yypParser
->
yystackEnd
=
&
yypParser
->
yystack
[
YYSTACKDEPTH
-
1
];
#endif
}
#ifndef Parse_ENGINEALWAYSONSTACK
/*
** This function allocates a new parser.
** The only argument is a pointer to a function which works like
...
...
@@ -1331,32 +1044,34 @@ void ParseInit(void *yypRawParser ParseCTX_PDECL){
** A pointer to a parser. This pointer is used in subsequent calls
** to Parse and ParseFree.
*/
void
*
ParseAlloc
(
void
*
(
*
mallocProc
)(
YYMALLOCARGTYPE
)
ParseCTX_PDECL
){
yyParser
*
yypParser
;
yypParser
=
(
yyParser
*
)(
*
mallocProc
)(
(
YYMALLOCARGTYPE
)
sizeof
(
yyParser
)
);
if
(
yypParser
){
ParseCTX_STORE
ParseInit
(
yypParser
ParseCTX_PARAM
);
void
*
ParseAlloc
(
void
*
(
*
mallocProc
)(
size_t
)){
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
}
return
(
void
*
)
yy
pParser
;
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 */
YYCODETYPE
yymajor
,
/* Type code for object to destroy */
YYMINORTYPE
*
yypminor
/* The object to be destroyed */
){
ParseARG_FETCH
ParseCTX_FETCH
ParseARG_FETCH
;
switch
(
yymajor
){
/* Here is inserted the actions which take place when a
** terminal or non-terminal is destroyed. This can happen
...
...
@@ -1365,57 +1080,55 @@ 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
225
:
/* keep */
case
226
:
/* tagitemlist */
case
250
:
/* fill_opt */
case
252
:
/* groupby_opt */
case
253
:
/* orderby_opt */
case
263
:
/* sortlist */
case
267
:
/* grouplist */
case
227
:
/* keep */
case
228
:
/* tagitemlist */
case
253
:
/* fill_opt */
case
255
:
/* groupby_opt */
case
256
:
/* orderby_opt */
case
266
:
/* sortlist */
case
270
:
/* grouplist */
{
tVariantListDestroy
((
yypminor
->
yy
156
));
tVariantListDestroy
((
yypminor
->
yy
498
));
}
break
;
case
24
2
:
/* columnlist */
case
24
5
:
/* columnlist */
{
tFieldListDestroy
((
yypminor
->
yy5
11
));
tFieldListDestroy
((
yypminor
->
yy5
23
));
}
break
;
case
24
3
:
/* select */
case
24
6
:
/* select */
{
doDestroyQuerySql
((
yypminor
->
yy4
4
4
));
doDestroyQuerySql
((
yypminor
->
yy4
1
4
));
}
break
;
case
24
6
:
/* selcollist */
case
2
58
:
/* sclp */
case
2
68
:
/* exprlist */
case
24
9
:
/* selcollist */
case
2
61
:
/* sclp */
case
2
71
:
/* exprlist */
{
tSQLExprListDestroy
((
yypminor
->
yy
158
));
tSQLExprListDestroy
((
yypminor
->
yy
290
));
}
break
;
case
2
48
:
/* where_opt */
case
25
4
:
/* having_opt */
case
2
59
:
/* expr */
case
2
69
:
/* expritem */
case
2
51
:
/* where_opt */
case
25
7
:
/* having_opt */
case
2
62
:
/* expr */
case
2
72
:
/* expritem */
{
tSQLExprDestroy
((
yypminor
->
yy
190
));
tSQLExprDestroy
((
yypminor
->
yy
64
));
}
break
;
case
2
57
:
/* union */
case
2
60
:
/* union */
{
destroyAllSelectClause
((
yypminor
->
yy
333
));
destroyAllSelectClause
((
yypminor
->
yy
231
));
}
break
;
case
26
4
:
/* sortitem */
case
26
7
:
/* sortitem */
{
tVariantDestroy
(
&
(
yypminor
->
yy
506
));
tVariantDestroy
(
&
(
yypminor
->
yy
134
));
}
break
;
/********* End destructor definitions *****************************************/
default:
break
;
/* If no destructor action specified: do nothing */
}
}
...
...
@@ -1425,53 +1138,51 @@ 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
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
);
}
/*
** 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
yymajor
=
yytos
->
major
;
yy_destructor
(
pParser
,
yymajor
,
&
yytos
->
minor
);
pParser
->
yyidx
--
;
return
yymajor
;
}
#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:
** <ul>
** <li> A pointer to the parser. This should be a pointer
** obtained from ParseAlloc.
** <li> A pointer to a function used to reclaim memory obtained
** from malloc.
** </ul>
*/
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.
...
...
@@ -1479,118 +1190,85 @@ 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
;
stateno
<
YYNSTATE
;
stateno
++
){
i
=
yy_shift_ofst
[
stateno
];
for
(
iLookAhead
=
0
;
iLookAhead
<
YYNTOKEN
;
iLookAhead
++
){
if
(
yy_lookahead
[
i
+
iLookAhead
]
!=
iLookAhead
)
continue
;
if
(
yycoverage
[
stateno
][
iLookAhead
]
==
0
)
nMissed
++
;
if
(
out
){
fprintf
(
out
,
"State %d lookahead %s %s
\n
"
,
stateno
,
yyTokenName
[
iLookAhead
],
yycoverage
[
stateno
][
iLookAhead
]
?
"ok"
:
"missed"
);
}
}
}
return
nMissed
;
return
pParser
->
yyidxMax
;
}
#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
YYACTIONTYPE
yy_find_shift_action
(
YYCODETYPE
iLookAhead
,
/* The look-ahead token
*/
YY
ACTIONTYPE
stateno
/* Current state number
*/
static
int
yy_find_shift_action
(
yyParser
*
pParser
,
/* The parser
*/
YY
CODETYPE
iLookAhead
/* The look-ahead token
*/
){
int
i
;
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
);
assert
(
i
<=
YY_ACTTAB_COUNT
);
assert
(
i
+
YYNTOKEN
<=
(
int
)
YY_NLOOKAHEAD
);
assert
(
iLookAhead
!=
YYNOCODE
);
assert
(
iLookAhead
<
YYNTOKEN
);
i
+=
iLookAhead
;
assert
(
i
<
(
int
)
YY_NLOOKAHEAD
);
if
(
yy_lookahead
[
i
]
!=
iLookAhead
){
int
stateno
=
pParser
->
yystack
[
pParser
->
yyidx
].
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
){
#ifdef YYFALLBACK
YYCODETYPE
iFallback
;
/* Fallback token */
assert
(
iLookAhead
<
sizeof
(
yyFallback
)
/
sizeof
(
yyFallback
[
0
])
);
iFallback
=
yyFallback
[
iLookAhead
];
if
(
iFallback
!=
0
){
if
(
iLookAhead
<
sizeof
(
yyFallback
)
/
sizeof
(
yyFallback
[
0
])
&&
(
iFallback
=
yyFallback
[
iLookAhead
])
!=
0
){
#ifndef NDEBUG
if
(
yyTraceFILE
){
fprintf
(
yyTraceFILE
,
"%sFALLBACK %s => %s
\n
"
,
yyTracePrompt
,
yyTokenName
[
iLookAhead
],
yyTokenName
[
iFallback
]);
}
#endif
assert
(
yyFallback
[
iFallback
]
==
0
);
/* Fallback loop must terminate */
iLookAhead
=
iFallback
;
continue
;
return
yy_find_shift_action
(
pParser
,
iFallback
);
}
#endif
#ifdef YYWILDCARD
{
int
j
=
i
-
iLookAhead
+
YYWILDCARD
;
assert
(
j
<
(
int
)(
sizeof
(
yy_lookahead
)
/
sizeof
(
yy_lookahead
[
0
]))
);
if
(
yy_lookahead
[
j
]
==
YYWILDCARD
&&
iLookAhead
>
0
){
if
(
#if YY_SHIFT_MIN+YYWILDCARD<0
j
>=
0
&&
#endif
#if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT
j
<
YY_ACTTAB_COUNT
&&
#endif
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
{
assert
(
i
>=
0
&&
i
<
sizeof
(
yy_action
)
/
sizeof
(
yy_action
[
0
])
);
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
YYACTIONTYPE
yy_find_reduce_action
(
YYACTIONTYPE
stateno
,
/* Current state number */
static
int
yy_find_reduce_action
(
int
stateno
,
/* Current state number */
YYCODETYPE
iLookAhead
/* The look-ahead token */
){
int
i
;
...
...
@@ -1602,6 +1280,7 @@ static YYACTIONTYPE 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
...
...
@@ -1618,550 +1297,304 @@ static YYACTIONTYPE yy_find_reduce_action(
/*
** The following routine is called if the stack overflows.
*/
static
void
yyStackOverflow
(
yyParser
*
yypParser
){
ParseARG_FETCH
ParseCTX_FETCH
static
void
yyStackOverflow
(
yyParser
*
yypParser
,
YYMINORTYPE
*
yypMinor
){
ParseARG_FETCH
;
yypParser
->
yyidx
--
;
#ifndef NDEBUG
if
(
yyTraceFILE
){
fprintf
(
yyTraceFILE
,
"%sStack Overflow!
\n
"
,
yyTracePrompt
);
}
#endif
while
(
yypParser
->
yy
tos
>
yypParser
->
yystack
)
yy_pop_parser_stack
(
yypParser
);
while
(
yypParser
->
yy
idx
>=
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 */
ParseCTX_STORE
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
(
yyNewState
<
YYNSTATE
){
fprintf
(
yyTraceFILE
,
"%s%s '%s', go to state %d
\n
"
,
yyTracePrompt
,
zTag
,
yyTokenName
[
yypParser
->
yytos
->
major
],
yyNewState
);
}
else
{
fprintf
(
yyTraceFILE
,
"%s%s '%s', pending reduce %d
\n
"
,
yyTracePrompt
,
zTag
,
yyTokenName
[
yypParser
->
yytos
->
major
],
yyNewState
-
YY_MIN_REDUCE
);
}
}
}
#else
# define yyTraceShift(X,Y,Z)
#endif
/*
** Perform a shift action.
*/
static
void
yy_shift
(
yyParser
*
yypParser
,
/* The parser to be shifted */
YYACTIONTYPE
yyNewState
,
/* The new state to shift in */
YYCODETYPE
yyMajor
,
/* The major token to shift in */
ParseTOKENTYPE
yyMinor
/* T
he minor token to shift in */
int
yyNewState
,
/* The new state to shift in */
int
yyMajor
,
/* The major token to shift in */
YYMINORTYPE
*
yypMinor
/* Pointer to t
he minor token to shift in */
){
yyStackEntry
*
yytos
;
yypParser
->
yy
tos
++
;
yypParser
->
yy
idx
++
;
#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
->
yy
tos
>=&
yypParser
->
yystack
[
yypParser
->
yystksz
]
){
if
(
yyGrowStack
(
yypParser
)
){
yypParser
->
yytos
--
;
yyStackOverflow
(
yypParser
);
if
(
yypParser
->
yy
idx
>=
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
->
yystack
[
yypParser
->
yyidx
];
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
"
);
}
yytos
=
yypParser
->
yytos
;
yytos
->
stateno
=
yyNewState
;
yytos
->
major
=
yyMajor
;
yytos
->
minor
.
yy0
=
yyMinor
;
yyTraceShift
(
yypParser
,
yyNewState
,
"Shift"
);
#endif
}
/* For rule J, yyRuleInfoLhs[J] contains the symbol on the left-hand side
** of that rule */
static
const
YYCODETYPE
yyRuleInfoLhs
[]
=
{
206
,
/* (0) program ::= cmd */
207
,
/* (1) cmd ::= SHOW DATABASES */
207
,
/* (2) cmd ::= SHOW MNODES */
207
,
/* (3) cmd ::= SHOW DNODES */
207
,
/* (4) cmd ::= SHOW ACCOUNTS */
207
,
/* (5) cmd ::= SHOW USERS */
207
,
/* (6) cmd ::= SHOW MODULES */
207
,
/* (7) cmd ::= SHOW QUERIES */
207
,
/* (8) cmd ::= SHOW CONNECTIONS */
207
,
/* (9) cmd ::= SHOW STREAMS */
207
,
/* (10) cmd ::= SHOW VARIABLES */
207
,
/* (11) cmd ::= SHOW SCORES */
207
,
/* (12) cmd ::= SHOW GRANTS */
207
,
/* (13) cmd ::= SHOW VNODES */
207
,
/* (14) cmd ::= SHOW VNODES IPTOKEN */
208
,
/* (15) dbPrefix ::= */
208
,
/* (16) dbPrefix ::= ids DOT */
210
,
/* (17) cpxName ::= */
210
,
/* (18) cpxName ::= DOT ids */
207
,
/* (19) cmd ::= SHOW dbPrefix TABLES */
207
,
/* (20) cmd ::= SHOW dbPrefix TABLES LIKE ids */
207
,
/* (21) cmd ::= SHOW dbPrefix STABLES */
207
,
/* (22) cmd ::= SHOW dbPrefix STABLES LIKE ids */
207
,
/* (23) cmd ::= SHOW dbPrefix VGROUPS */
207
,
/* (24) cmd ::= SHOW dbPrefix VGROUPS ids */
207
,
/* (25) cmd ::= DROP TABLE ifexists ids cpxName */
207
,
/* (26) cmd ::= DROP DATABASE ifexists ids */
207
,
/* (27) cmd ::= DROP DNODE ids */
207
,
/* (28) cmd ::= DROP USER ids */
207
,
/* (29) cmd ::= DROP ACCOUNT ids */
207
,
/* (30) cmd ::= USE ids */
207
,
/* (31) cmd ::= DESCRIBE ids cpxName */
207
,
/* (32) cmd ::= ALTER USER ids PASS ids */
207
,
/* (33) cmd ::= ALTER USER ids PRIVILEGE ids */
207
,
/* (34) cmd ::= ALTER DNODE ids ids */
207
,
/* (35) cmd ::= ALTER DNODE ids ids ids */
207
,
/* (36) cmd ::= ALTER LOCAL ids */
207
,
/* (37) cmd ::= ALTER LOCAL ids ids */
207
,
/* (38) cmd ::= ALTER DATABASE ids alter_db_optr */
207
,
/* (39) cmd ::= ALTER ACCOUNT ids acct_optr */
207
,
/* (40) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */
209
,
/* (41) ids ::= ID */
209
,
/* (42) ids ::= STRING */
211
,
/* (43) ifexists ::= IF EXISTS */
211
,
/* (44) ifexists ::= */
214
,
/* (45) ifnotexists ::= IF NOT EXISTS */
214
,
/* (46) ifnotexists ::= */
207
,
/* (47) cmd ::= CREATE DNODE ids */
207
,
/* (48) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */
207
,
/* (49) cmd ::= CREATE DATABASE ifnotexists ids db_optr */
207
,
/* (50) cmd ::= CREATE USER ids PASS ids */
216
,
/* (51) pps ::= */
216
,
/* (52) pps ::= PPS INTEGER */
217
,
/* (53) tseries ::= */
217
,
/* (54) tseries ::= TSERIES INTEGER */
218
,
/* (55) dbs ::= */
218
,
/* (56) dbs ::= DBS INTEGER */
219
,
/* (57) streams ::= */
219
,
/* (58) streams ::= STREAMS INTEGER */
220
,
/* (59) storage ::= */
220
,
/* (60) storage ::= STORAGE INTEGER */
221
,
/* (61) qtime ::= */
221
,
/* (62) qtime ::= QTIME INTEGER */
222
,
/* (63) users ::= */
222
,
/* (64) users ::= USERS INTEGER */
223
,
/* (65) conns ::= */
223
,
/* (66) conns ::= CONNS INTEGER */
224
,
/* (67) state ::= */
224
,
/* (68) state ::= STATE ids */
213
,
/* (69) acct_optr ::= pps tseries storage streams qtime dbs users conns state */
225
,
/* (70) keep ::= KEEP tagitemlist */
227
,
/* (71) cache ::= CACHE INTEGER */
228
,
/* (72) replica ::= REPLICA INTEGER */
229
,
/* (73) quorum ::= QUORUM INTEGER */
230
,
/* (74) days ::= DAYS INTEGER */
231
,
/* (75) minrows ::= MINROWS INTEGER */
232
,
/* (76) maxrows ::= MAXROWS INTEGER */
233
,
/* (77) blocks ::= BLOCKS INTEGER */
234
,
/* (78) ctime ::= CTIME INTEGER */
235
,
/* (79) wal ::= WAL INTEGER */
236
,
/* (80) fsync ::= FSYNC INTEGER */
237
,
/* (81) comp ::= COMP INTEGER */
238
,
/* (82) prec ::= PRECISION STRING */
215
,
/* (83) db_optr ::= */
215
,
/* (84) db_optr ::= db_optr cache */
215
,
/* (85) db_optr ::= db_optr replica */
215
,
/* (86) db_optr ::= db_optr quorum */
215
,
/* (87) db_optr ::= db_optr days */
215
,
/* (88) db_optr ::= db_optr minrows */
215
,
/* (89) db_optr ::= db_optr maxrows */
215
,
/* (90) db_optr ::= db_optr blocks */
215
,
/* (91) db_optr ::= db_optr ctime */
215
,
/* (92) db_optr ::= db_optr wal */
215
,
/* (93) db_optr ::= db_optr fsync */
215
,
/* (94) db_optr ::= db_optr comp */
215
,
/* (95) db_optr ::= db_optr prec */
215
,
/* (96) db_optr ::= db_optr keep */
212
,
/* (97) alter_db_optr ::= */
212
,
/* (98) alter_db_optr ::= alter_db_optr replica */
212
,
/* (99) alter_db_optr ::= alter_db_optr quorum */
212
,
/* (100) alter_db_optr ::= alter_db_optr keep */
212
,
/* (101) alter_db_optr ::= alter_db_optr blocks */
212
,
/* (102) alter_db_optr ::= alter_db_optr comp */
212
,
/* (103) alter_db_optr ::= alter_db_optr wal */
212
,
/* (104) alter_db_optr ::= alter_db_optr fsync */
239
,
/* (105) typename ::= ids */
239
,
/* (106) typename ::= ids LP signed RP */
240
,
/* (107) signed ::= INTEGER */
240
,
/* (108) signed ::= PLUS INTEGER */
240
,
/* (109) signed ::= MINUS INTEGER */
207
,
/* (110) cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args */
241
,
/* (111) create_table_args ::= LP columnlist RP */
241
,
/* (112) create_table_args ::= LP columnlist RP TAGS LP columnlist RP */
241
,
/* (113) create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP */
241
,
/* (114) create_table_args ::= AS select */
242
,
/* (115) columnlist ::= columnlist COMMA column */
242
,
/* (116) columnlist ::= column */
244
,
/* (117) column ::= ids typename */
226
,
/* (118) tagitemlist ::= tagitemlist COMMA tagitem */
226
,
/* (119) tagitemlist ::= tagitem */
245
,
/* (120) tagitem ::= INTEGER */
245
,
/* (121) tagitem ::= FLOAT */
245
,
/* (122) tagitem ::= STRING */
245
,
/* (123) tagitem ::= BOOL */
245
,
/* (124) tagitem ::= NULL */
245
,
/* (125) tagitem ::= MINUS INTEGER */
245
,
/* (126) tagitem ::= MINUS FLOAT */
245
,
/* (127) tagitem ::= PLUS INTEGER */
245
,
/* (128) tagitem ::= PLUS FLOAT */
243
,
/* (129) select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */
257
,
/* (130) union ::= select */
257
,
/* (131) union ::= LP union RP */
257
,
/* (132) union ::= union UNION ALL select */
257
,
/* (133) union ::= union UNION ALL LP select RP */
207
,
/* (134) cmd ::= union */
243
,
/* (135) select ::= SELECT selcollist */
258
,
/* (136) sclp ::= selcollist COMMA */
258
,
/* (137) sclp ::= */
246
,
/* (138) selcollist ::= sclp expr as */
246
,
/* (139) selcollist ::= sclp STAR */
260
,
/* (140) as ::= AS ids */
260
,
/* (141) as ::= ids */
260
,
/* (142) as ::= */
247
,
/* (143) from ::= FROM tablelist */
261
,
/* (144) tablelist ::= ids cpxName */
261
,
/* (145) tablelist ::= ids cpxName ids */
261
,
/* (146) tablelist ::= tablelist COMMA ids cpxName */
261
,
/* (147) tablelist ::= tablelist COMMA ids cpxName ids */
262
,
/* (148) tmvar ::= VARIABLE */
249
,
/* (149) interval_opt ::= INTERVAL LP tmvar RP */
249
,
/* (150) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */
249
,
/* (151) interval_opt ::= */
250
,
/* (152) fill_opt ::= */
250
,
/* (153) fill_opt ::= FILL LP ID COMMA tagitemlist RP */
250
,
/* (154) fill_opt ::= FILL LP ID RP */
251
,
/* (155) sliding_opt ::= SLIDING LP tmvar RP */
251
,
/* (156) sliding_opt ::= */
253
,
/* (157) orderby_opt ::= */
253
,
/* (158) orderby_opt ::= ORDER BY sortlist */
263
,
/* (159) sortlist ::= sortlist COMMA item sortorder */
263
,
/* (160) sortlist ::= item sortorder */
265
,
/* (161) item ::= ids cpxName */
266
,
/* (162) sortorder ::= ASC */
266
,
/* (163) sortorder ::= DESC */
266
,
/* (164) sortorder ::= */
252
,
/* (165) groupby_opt ::= */
252
,
/* (166) groupby_opt ::= GROUP BY grouplist */
267
,
/* (167) grouplist ::= grouplist COMMA item */
267
,
/* (168) grouplist ::= item */
254
,
/* (169) having_opt ::= */
254
,
/* (170) having_opt ::= HAVING expr */
256
,
/* (171) limit_opt ::= */
256
,
/* (172) limit_opt ::= LIMIT signed */
256
,
/* (173) limit_opt ::= LIMIT signed OFFSET signed */
256
,
/* (174) limit_opt ::= LIMIT signed COMMA signed */
255
,
/* (175) slimit_opt ::= */
255
,
/* (176) slimit_opt ::= SLIMIT signed */
255
,
/* (177) slimit_opt ::= SLIMIT signed SOFFSET signed */
255
,
/* (178) slimit_opt ::= SLIMIT signed COMMA signed */
248
,
/* (179) where_opt ::= */
248
,
/* (180) where_opt ::= WHERE expr */
259
,
/* (181) expr ::= LP expr RP */
259
,
/* (182) expr ::= ID */
259
,
/* (183) expr ::= ID DOT ID */
259
,
/* (184) expr ::= ID DOT STAR */
259
,
/* (185) expr ::= INTEGER */
259
,
/* (186) expr ::= MINUS INTEGER */
259
,
/* (187) expr ::= PLUS INTEGER */
259
,
/* (188) expr ::= FLOAT */
259
,
/* (189) expr ::= MINUS FLOAT */
259
,
/* (190) expr ::= PLUS FLOAT */
259
,
/* (191) expr ::= STRING */
259
,
/* (192) expr ::= NOW */
259
,
/* (193) expr ::= VARIABLE */
259
,
/* (194) expr ::= BOOL */
259
,
/* (195) expr ::= ID LP exprlist RP */
259
,
/* (196) expr ::= ID LP STAR RP */
259
,
/* (197) expr ::= expr IS NULL */
259
,
/* (198) expr ::= expr IS NOT NULL */
259
,
/* (199) expr ::= expr LT expr */
259
,
/* (200) expr ::= expr GT expr */
259
,
/* (201) expr ::= expr LE expr */
259
,
/* (202) expr ::= expr GE expr */
259
,
/* (203) expr ::= expr NE expr */
259
,
/* (204) expr ::= expr EQ expr */
259
,
/* (205) expr ::= expr AND expr */
259
,
/* (206) expr ::= expr OR expr */
259
,
/* (207) expr ::= expr PLUS expr */
259
,
/* (208) expr ::= expr MINUS expr */
259
,
/* (209) expr ::= expr STAR expr */
259
,
/* (210) expr ::= expr SLASH expr */
259
,
/* (211) expr ::= expr REM expr */
259
,
/* (212) expr ::= expr LIKE expr */
259
,
/* (213) expr ::= expr IN LP exprlist RP */
268
,
/* (214) exprlist ::= exprlist COMMA expritem */
268
,
/* (215) exprlist ::= expritem */
269
,
/* (216) expritem ::= expr */
269
,
/* (217) expritem ::= */
207
,
/* (218) cmd ::= RESET QUERY CACHE */
207
,
/* (219) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */
207
,
/* (220) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */
207
,
/* (221) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */
207
,
/* (222) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */
207
,
/* (223) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */
207
,
/* (224) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */
207
,
/* (225) cmd ::= KILL CONNECTION INTEGER */
207
,
/* (226) cmd ::= KILL STREAM INTEGER COLON INTEGER */
207
,
/* (227) cmd ::= KILL QUERY INTEGER COLON INTEGER */
};
/* For rule J, yyRuleInfoNRhs[J] contains the negative of the number
** of symbols on the right-hand side of that rule. */
static
const
signed
char
yyRuleInfoNRhs
[]
=
{
-
1
,
/* (0) program ::= cmd */
-
2
,
/* (1) cmd ::= SHOW DATABASES */
-
2
,
/* (2) cmd ::= SHOW MNODES */
-
2
,
/* (3) cmd ::= SHOW DNODES */
-
2
,
/* (4) cmd ::= SHOW ACCOUNTS */
-
2
,
/* (5) cmd ::= SHOW USERS */
-
2
,
/* (6) cmd ::= SHOW MODULES */
-
2
,
/* (7) cmd ::= SHOW QUERIES */
-
2
,
/* (8) cmd ::= SHOW CONNECTIONS */
-
2
,
/* (9) cmd ::= SHOW STREAMS */
-
2
,
/* (10) cmd ::= SHOW VARIABLES */
-
2
,
/* (11) cmd ::= SHOW SCORES */
-
2
,
/* (12) cmd ::= SHOW GRANTS */
-
2
,
/* (13) cmd ::= SHOW VNODES */
-
3
,
/* (14) cmd ::= SHOW VNODES IPTOKEN */
0
,
/* (15) dbPrefix ::= */
-
2
,
/* (16) dbPrefix ::= ids DOT */
0
,
/* (17) cpxName ::= */
-
2
,
/* (18) cpxName ::= DOT ids */
-
3
,
/* (19) cmd ::= SHOW dbPrefix TABLES */
-
5
,
/* (20) cmd ::= SHOW dbPrefix TABLES LIKE ids */
-
3
,
/* (21) cmd ::= SHOW dbPrefix STABLES */
-
5
,
/* (22) cmd ::= SHOW dbPrefix STABLES LIKE ids */
-
3
,
/* (23) cmd ::= SHOW dbPrefix VGROUPS */
-
4
,
/* (24) cmd ::= SHOW dbPrefix VGROUPS ids */
-
5
,
/* (25) cmd ::= DROP TABLE ifexists ids cpxName */
-
4
,
/* (26) cmd ::= DROP DATABASE ifexists ids */
-
3
,
/* (27) cmd ::= DROP DNODE ids */
-
3
,
/* (28) cmd ::= DROP USER ids */
-
3
,
/* (29) cmd ::= DROP ACCOUNT ids */
-
2
,
/* (30) cmd ::= USE ids */
-
3
,
/* (31) cmd ::= DESCRIBE ids cpxName */
-
5
,
/* (32) cmd ::= ALTER USER ids PASS ids */
-
5
,
/* (33) cmd ::= ALTER USER ids PRIVILEGE ids */
-
4
,
/* (34) cmd ::= ALTER DNODE ids ids */
-
5
,
/* (35) cmd ::= ALTER DNODE ids ids ids */
-
3
,
/* (36) cmd ::= ALTER LOCAL ids */
-
4
,
/* (37) cmd ::= ALTER LOCAL ids ids */
-
4
,
/* (38) cmd ::= ALTER DATABASE ids alter_db_optr */
-
4
,
/* (39) cmd ::= ALTER ACCOUNT ids acct_optr */
-
6
,
/* (40) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */
-
1
,
/* (41) ids ::= ID */
-
1
,
/* (42) ids ::= STRING */
-
2
,
/* (43) ifexists ::= IF EXISTS */
0
,
/* (44) ifexists ::= */
-
3
,
/* (45) ifnotexists ::= IF NOT EXISTS */
0
,
/* (46) ifnotexists ::= */
-
3
,
/* (47) cmd ::= CREATE DNODE ids */
-
6
,
/* (48) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */
-
5
,
/* (49) cmd ::= CREATE DATABASE ifnotexists ids db_optr */
-
5
,
/* (50) cmd ::= CREATE USER ids PASS ids */
0
,
/* (51) pps ::= */
-
2
,
/* (52) pps ::= PPS INTEGER */
0
,
/* (53) tseries ::= */
-
2
,
/* (54) tseries ::= TSERIES INTEGER */
0
,
/* (55) dbs ::= */
-
2
,
/* (56) dbs ::= DBS INTEGER */
0
,
/* (57) streams ::= */
-
2
,
/* (58) streams ::= STREAMS INTEGER */
0
,
/* (59) storage ::= */
-
2
,
/* (60) storage ::= STORAGE INTEGER */
0
,
/* (61) qtime ::= */
-
2
,
/* (62) qtime ::= QTIME INTEGER */
0
,
/* (63) users ::= */
-
2
,
/* (64) users ::= USERS INTEGER */
0
,
/* (65) conns ::= */
-
2
,
/* (66) conns ::= CONNS INTEGER */
0
,
/* (67) state ::= */
-
2
,
/* (68) state ::= STATE ids */
-
9
,
/* (69) acct_optr ::= pps tseries storage streams qtime dbs users conns state */
-
2
,
/* (70) keep ::= KEEP tagitemlist */
-
2
,
/* (71) cache ::= CACHE INTEGER */
-
2
,
/* (72) replica ::= REPLICA INTEGER */
-
2
,
/* (73) quorum ::= QUORUM INTEGER */
-
2
,
/* (74) days ::= DAYS INTEGER */
-
2
,
/* (75) minrows ::= MINROWS INTEGER */
-
2
,
/* (76) maxrows ::= MAXROWS INTEGER */
-
2
,
/* (77) blocks ::= BLOCKS INTEGER */
-
2
,
/* (78) ctime ::= CTIME INTEGER */
-
2
,
/* (79) wal ::= WAL INTEGER */
-
2
,
/* (80) fsync ::= FSYNC INTEGER */
-
2
,
/* (81) comp ::= COMP INTEGER */
-
2
,
/* (82) prec ::= PRECISION STRING */
0
,
/* (83) db_optr ::= */
-
2
,
/* (84) db_optr ::= db_optr cache */
-
2
,
/* (85) db_optr ::= db_optr replica */
-
2
,
/* (86) db_optr ::= db_optr quorum */
-
2
,
/* (87) db_optr ::= db_optr days */
-
2
,
/* (88) db_optr ::= db_optr minrows */
-
2
,
/* (89) db_optr ::= db_optr maxrows */
-
2
,
/* (90) db_optr ::= db_optr blocks */
-
2
,
/* (91) db_optr ::= db_optr ctime */
-
2
,
/* (92) db_optr ::= db_optr wal */
-
2
,
/* (93) db_optr ::= db_optr fsync */
-
2
,
/* (94) db_optr ::= db_optr comp */
-
2
,
/* (95) db_optr ::= db_optr prec */
-
2
,
/* (96) db_optr ::= db_optr keep */
0
,
/* (97) alter_db_optr ::= */
-
2
,
/* (98) alter_db_optr ::= alter_db_optr replica */
-
2
,
/* (99) alter_db_optr ::= alter_db_optr quorum */
-
2
,
/* (100) alter_db_optr ::= alter_db_optr keep */
-
2
,
/* (101) alter_db_optr ::= alter_db_optr blocks */
-
2
,
/* (102) alter_db_optr ::= alter_db_optr comp */
-
2
,
/* (103) alter_db_optr ::= alter_db_optr wal */
-
2
,
/* (104) alter_db_optr ::= alter_db_optr fsync */
-
1
,
/* (105) typename ::= ids */
-
4
,
/* (106) typename ::= ids LP signed RP */
-
1
,
/* (107) signed ::= INTEGER */
-
2
,
/* (108) signed ::= PLUS INTEGER */
-
2
,
/* (109) signed ::= MINUS INTEGER */
-
6
,
/* (110) cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args */
-
3
,
/* (111) create_table_args ::= LP columnlist RP */
-
7
,
/* (112) create_table_args ::= LP columnlist RP TAGS LP columnlist RP */
-
7
,
/* (113) create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP */
-
2
,
/* (114) create_table_args ::= AS select */
-
3
,
/* (115) columnlist ::= columnlist COMMA column */
-
1
,
/* (116) columnlist ::= column */
-
2
,
/* (117) column ::= ids typename */
-
3
,
/* (118) tagitemlist ::= tagitemlist COMMA tagitem */
-
1
,
/* (119) tagitemlist ::= tagitem */
-
1
,
/* (120) tagitem ::= INTEGER */
-
1
,
/* (121) tagitem ::= FLOAT */
-
1
,
/* (122) tagitem ::= STRING */
-
1
,
/* (123) tagitem ::= BOOL */
-
1
,
/* (124) tagitem ::= NULL */
-
2
,
/* (125) tagitem ::= MINUS INTEGER */
-
2
,
/* (126) tagitem ::= MINUS FLOAT */
-
2
,
/* (127) tagitem ::= PLUS INTEGER */
-
2
,
/* (128) tagitem ::= PLUS FLOAT */
-
12
,
/* (129) select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */
-
1
,
/* (130) union ::= select */
-
3
,
/* (131) union ::= LP union RP */
-
4
,
/* (132) union ::= union UNION ALL select */
-
6
,
/* (133) union ::= union UNION ALL LP select RP */
-
1
,
/* (134) cmd ::= union */
-
2
,
/* (135) select ::= SELECT selcollist */
-
2
,
/* (136) sclp ::= selcollist COMMA */
0
,
/* (137) sclp ::= */
-
3
,
/* (138) selcollist ::= sclp expr as */
-
2
,
/* (139) selcollist ::= sclp STAR */
-
2
,
/* (140) as ::= AS ids */
-
1
,
/* (141) as ::= ids */
0
,
/* (142) as ::= */
-
2
,
/* (143) from ::= FROM tablelist */
-
2
,
/* (144) tablelist ::= ids cpxName */
-
3
,
/* (145) tablelist ::= ids cpxName ids */
-
4
,
/* (146) tablelist ::= tablelist COMMA ids cpxName */
-
5
,
/* (147) tablelist ::= tablelist COMMA ids cpxName ids */
-
1
,
/* (148) tmvar ::= VARIABLE */
-
4
,
/* (149) interval_opt ::= INTERVAL LP tmvar RP */
-
6
,
/* (150) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */
0
,
/* (151) interval_opt ::= */
0
,
/* (152) fill_opt ::= */
-
6
,
/* (153) fill_opt ::= FILL LP ID COMMA tagitemlist RP */
-
4
,
/* (154) fill_opt ::= FILL LP ID RP */
-
4
,
/* (155) sliding_opt ::= SLIDING LP tmvar RP */
0
,
/* (156) sliding_opt ::= */
0
,
/* (157) orderby_opt ::= */
-
3
,
/* (158) orderby_opt ::= ORDER BY sortlist */
-
4
,
/* (159) sortlist ::= sortlist COMMA item sortorder */
-
2
,
/* (160) sortlist ::= item sortorder */
-
2
,
/* (161) item ::= ids cpxName */
-
1
,
/* (162) sortorder ::= ASC */
-
1
,
/* (163) sortorder ::= DESC */
0
,
/* (164) sortorder ::= */
0
,
/* (165) groupby_opt ::= */
-
3
,
/* (166) groupby_opt ::= GROUP BY grouplist */
-
3
,
/* (167) grouplist ::= grouplist COMMA item */
-
1
,
/* (168) grouplist ::= item */
0
,
/* (169) having_opt ::= */
-
2
,
/* (170) having_opt ::= HAVING expr */
0
,
/* (171) limit_opt ::= */
-
2
,
/* (172) limit_opt ::= LIMIT signed */
-
4
,
/* (173) limit_opt ::= LIMIT signed OFFSET signed */
-
4
,
/* (174) limit_opt ::= LIMIT signed COMMA signed */
0
,
/* (175) slimit_opt ::= */
-
2
,
/* (176) slimit_opt ::= SLIMIT signed */
-
4
,
/* (177) slimit_opt ::= SLIMIT signed SOFFSET signed */
-
4
,
/* (178) slimit_opt ::= SLIMIT signed COMMA signed */
0
,
/* (179) where_opt ::= */
-
2
,
/* (180) where_opt ::= WHERE expr */
-
3
,
/* (181) expr ::= LP expr RP */
-
1
,
/* (182) expr ::= ID */
-
3
,
/* (183) expr ::= ID DOT ID */
-
3
,
/* (184) expr ::= ID DOT STAR */
-
1
,
/* (185) expr ::= INTEGER */
-
2
,
/* (186) expr ::= MINUS INTEGER */
-
2
,
/* (187) expr ::= PLUS INTEGER */
-
1
,
/* (188) expr ::= FLOAT */
-
2
,
/* (189) expr ::= MINUS FLOAT */
-
2
,
/* (190) expr ::= PLUS FLOAT */
-
1
,
/* (191) expr ::= STRING */
-
1
,
/* (192) expr ::= NOW */
-
1
,
/* (193) expr ::= VARIABLE */
-
1
,
/* (194) expr ::= BOOL */
-
4
,
/* (195) expr ::= ID LP exprlist RP */
-
4
,
/* (196) expr ::= ID LP STAR RP */
-
3
,
/* (197) expr ::= expr IS NULL */
-
4
,
/* (198) expr ::= expr IS NOT NULL */
-
3
,
/* (199) expr ::= expr LT expr */
-
3
,
/* (200) expr ::= expr GT expr */
-
3
,
/* (201) expr ::= expr LE expr */
-
3
,
/* (202) expr ::= expr GE expr */
-
3
,
/* (203) expr ::= expr NE expr */
-
3
,
/* (204) expr ::= expr EQ expr */
-
3
,
/* (205) expr ::= expr AND expr */
-
3
,
/* (206) expr ::= expr OR expr */
-
3
,
/* (207) expr ::= expr PLUS expr */
-
3
,
/* (208) expr ::= expr MINUS expr */
-
3
,
/* (209) expr ::= expr STAR expr */
-
3
,
/* (210) expr ::= expr SLASH expr */
-
3
,
/* (211) expr ::= expr REM expr */
-
3
,
/* (212) expr ::= expr LIKE expr */
-
5
,
/* (213) expr ::= expr IN LP exprlist RP */
-
3
,
/* (214) exprlist ::= exprlist COMMA expritem */
-
1
,
/* (215) exprlist ::= expritem */
-
1
,
/* (216) expritem ::= expr */
0
,
/* (217) expritem ::= */
-
3
,
/* (218) cmd ::= RESET QUERY CACHE */
-
7
,
/* (219) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */
-
7
,
/* (220) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */
-
7
,
/* (221) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */
-
7
,
/* (222) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */
-
8
,
/* (223) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */
-
9
,
/* (224) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */
-
3
,
/* (225) cmd ::= KILL CONNECTION INTEGER */
-
5
,
/* (226) cmd ::= KILL STREAM INTEGER COLON INTEGER */
-
5
,
/* (227) cmd ::= KILL QUERY INTEGER COLON INTEGER */
/* 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 */
}
yyRuleInfo
[]
=
{
{
208
,
1
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
2
},
{
209
,
3
},
{
210
,
0
},
{
210
,
2
},
{
212
,
0
},
{
212
,
2
},
{
209
,
3
},
{
209
,
5
},
{
209
,
3
},
{
209
,
5
},
{
209
,
3
},
{
209
,
4
},
{
209
,
5
},
{
209
,
4
},
{
209
,
3
},
{
209
,
3
},
{
209
,
3
},
{
209
,
2
},
{
209
,
3
},
{
209
,
5
},
{
209
,
5
},
{
209
,
4
},
{
209
,
5
},
{
209
,
3
},
{
209
,
4
},
{
209
,
4
},
{
209
,
4
},
{
209
,
6
},
{
211
,
1
},
{
211
,
1
},
{
213
,
2
},
{
213
,
0
},
{
216
,
3
},
{
216
,
0
},
{
209
,
3
},
{
209
,
6
},
{
209
,
5
},
{
209
,
5
},
{
218
,
0
},
{
218
,
2
},
{
219
,
0
},
{
219
,
2
},
{
220
,
0
},
{
220
,
2
},
{
221
,
0
},
{
221
,
2
},
{
222
,
0
},
{
222
,
2
},
{
223
,
0
},
{
223
,
2
},
{
224
,
0
},
{
224
,
2
},
{
225
,
0
},
{
225
,
2
},
{
226
,
0
},
{
226
,
2
},
{
215
,
9
},
{
227
,
2
},
{
229
,
2
},
{
230
,
2
},
{
231
,
2
},
{
232
,
2
},
{
233
,
2
},
{
234
,
2
},
{
235
,
2
},
{
236
,
2
},
{
237
,
2
},
{
238
,
2
},
{
239
,
2
},
{
240
,
2
},
{
241
,
2
},
{
217
,
0
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
217
,
2
},
{
214
,
0
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
214
,
2
},
{
242
,
1
},
{
242
,
4
},
{
243
,
1
},
{
243
,
2
},
{
243
,
2
},
{
209
,
6
},
{
244
,
3
},
{
244
,
7
},
{
244
,
7
},
{
244
,
2
},
{
245
,
3
},
{
245
,
1
},
{
247
,
2
},
{
228
,
3
},
{
228
,
1
},
{
248
,
1
},
{
248
,
1
},
{
248
,
1
},
{
248
,
1
},
{
248
,
1
},
{
248
,
2
},
{
248
,
2
},
{
248
,
2
},
{
248
,
2
},
{
246
,
12
},
{
260
,
1
},
{
260
,
3
},
{
260
,
4
},
{
260
,
6
},
{
209
,
1
},
{
246
,
2
},
{
261
,
2
},
{
261
,
0
},
{
249
,
3
},
{
249
,
2
},
{
263
,
2
},
{
263
,
1
},
{
263
,
0
},
{
250
,
2
},
{
264
,
2
},
{
264
,
3
},
{
264
,
4
},
{
264
,
5
},
{
265
,
1
},
{
252
,
4
},
{
252
,
6
},
{
252
,
0
},
{
253
,
0
},
{
253
,
6
},
{
253
,
4
},
{
254
,
4
},
{
254
,
0
},
{
256
,
0
},
{
256
,
3
},
{
266
,
4
},
{
266
,
2
},
{
268
,
2
},
{
269
,
1
},
{
269
,
1
},
{
269
,
0
},
{
255
,
0
},
{
255
,
3
},
{
270
,
3
},
{
270
,
1
},
{
257
,
0
},
{
257
,
2
},
{
259
,
0
},
{
259
,
2
},
{
259
,
4
},
{
259
,
4
},
{
258
,
0
},
{
258
,
2
},
{
258
,
4
},
{
258
,
4
},
{
251
,
0
},
{
251
,
2
},
{
262
,
3
},
{
262
,
1
},
{
262
,
3
},
{
262
,
3
},
{
262
,
1
},
{
262
,
2
},
{
262
,
2
},
{
262
,
1
},
{
262
,
2
},
{
262
,
2
},
{
262
,
1
},
{
262
,
1
},
{
262
,
1
},
{
262
,
1
},
{
262
,
4
},
{
262
,
4
},
{
262
,
3
},
{
262
,
4
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
3
},
{
262
,
5
},
{
271
,
3
},
{
271
,
1
},
{
272
,
1
},
{
272
,
0
},
{
209
,
3
},
{
209
,
7
},
{
209
,
7
},
{
209
,
7
},
{
209
,
7
},
{
209
,
8
},
{
209
,
9
},
{
209
,
3
},
{
209
,
5
},
{
209
,
5
},
};
static
void
yy_accept
(
yyParser
*
);
/* Forward Declaration */
...
...
@@ -2169,76 +1602,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
YYACTIONTYPE
yy_reduce
(
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 */
ParseCTX_PDECL
/* %extra_context */
int
yyruleno
/* Number of the rule by which to reduce */
){
int
yygoto
;
/* The next state */
YYACTIONTYPE
yyact
;
/* The next action */
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
;
ParseARG_FETCH
;
yymsp
=
&
yypParser
->
yystack
[
yypParser
->
yyidx
];
#ifndef NDEBUG
if
(
yyTraceFILE
&&
yyruleno
<
(
int
)(
sizeof
(
yyRuleName
)
/
sizeof
(
yyRuleName
[
0
]))
){
yysize
=
yyRuleInfoNRhs
[
yyruleno
];
if
(
yysize
){
fprintf
(
yyTraceFILE
,
"%sReduce %d [%s]%s, pop back to state %d.
\n
"
,
yyTracePrompt
,
yyruleno
,
yyRuleName
[
yyruleno
],
yyruleno
<
YYNRULE_WITH_ACTION
?
""
:
" without external action"
,
yymsp
[
yysize
].
stateno
);
}
else
{
fprintf
(
yyTraceFILE
,
"%sReduce %d [%s]%s.
\n
"
,
yyTracePrompt
,
yyruleno
,
yyRuleName
[
yyruleno
],
yyruleno
<
YYNRULE_WITH_ACTION
?
""
:
" without external action"
);
}
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
(
yyRuleInfoNRhs
[
yyruleno
]
==
0
){
#ifdef YYTRACKMAXSTACKDEPTH
if
(
(
int
)(
yypParser
->
yytos
-
yypParser
->
yystack
)
>
yypParser
->
yyhwm
){
yypParser
->
yyhwm
++
;
assert
(
yypParser
->
yyhwm
==
(
int
)(
yypParser
->
yytos
-
yypParser
->
yystack
));
}
#endif
#if YYSTACKDEPTH>0
if
(
yypParser
->
yytos
>=
yypParser
->
yystackEnd
){
yyStackOverflow
(
yypParser
);
/* The call to yyStackOverflow() above pops the stack until it is
** empty, causing the main parser loop to exit. So the return value
** is never used and does not matter. */
return
0
;
}
#else
if
(
yypParser
->
yytos
>=&
yypParser
->
yystack
[
yypParser
->
yystksz
-
1
]
){
if
(
yyGrowStack
(
yypParser
)
){
yyStackOverflow
(
yypParser
);
/* The call to yyStackOverflow() above pops the stack until it is
** empty, causing the main parser loop to exit. So the return value
** is never used and does not matter. */
return
0
;
}
yymsp
=
yypParser
->
yytos
;
}
#endif
}
/* 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
...
...
@@ -2249,8 +1649,6 @@ static YYACTIONTYPE yy_reduce(
** #line <lineno> <thisfile>
** break;
*/
/********** Begin reduce actions **********************************************/
YYMINORTYPE
yylhsminor
;
case
0
:
/* program ::= cmd */
{}
break
;
...
...
@@ -2297,17 +1695,16 @@ static YYACTIONTYPE yy_reduce(
{
setShowOptions
(
pInfo
,
TSDB_MGMT_TABLE_VNODES
,
&
yymsp
[
0
].
minor
.
yy0
,
0
);
}
break
;
case
15
:
/* dbPrefix ::= */
{
yy
msp
[
1
].
minor
.
yy0
.
n
=
0
;
yymsp
[
1
].
minor
.
yy0
.
type
=
0
;}
{
yy
gotominor
.
yy0
.
n
=
0
;
yygoto
minor
.
yy0
.
type
=
0
;}
break
;
case
16
:
/* dbPrefix ::= ids DOT */
{
yylhsminor
.
yy0
=
yymsp
[
-
1
].
minor
.
yy0
;
}
yymsp
[
-
1
].
minor
.
yy0
=
yylhsminor
.
yy0
;
{
yygotominor
.
yy0
=
yymsp
[
-
1
].
minor
.
yy0
;
}
break
;
case
17
:
/* cpxName ::= */
{
yy
msp
[
1
].
minor
.
yy0
.
n
=
0
;
}
{
yy
goto
minor
.
yy0
.
n
=
0
;
}
break
;
case
18
:
/* cpxName ::= DOT ids */
{
yy
msp
[
-
1
].
minor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
1
;
}
{
yy
gotominor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
yygoto
minor
.
yy0
.
n
+=
1
;
}
break
;
case
19
:
/* cmd ::= SHOW dbPrefix TABLES */
{
...
...
@@ -2391,37 +1788,34 @@ static YYACTIONTYPE yy_reduce(
{
setDCLSQLElems
(
pInfo
,
TSDB_SQL_CFG_LOCAL
,
2
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
);
}
break
;
case
38
:
/* cmd ::= ALTER DATABASE ids alter_db_optr */
{
SStrToken
t
=
{
0
};
setCreateDBSQL
(
pInfo
,
TSDB_SQL_ALTER_DB
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
11
8
,
&
t
);}
{
SStrToken
t
=
{
0
};
setCreateDBSQL
(
pInfo
,
TSDB_SQL_ALTER_DB
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
26
8
,
&
t
);}
break
;
case
39
:
/* cmd ::= ALTER ACCOUNT ids acct_optr */
{
setCreateAcctSQL
(
pInfo
,
TSDB_SQL_ALTER_ACCT
,
&
yymsp
[
-
1
].
minor
.
yy0
,
NULL
,
&
yymsp
[
0
].
minor
.
yy
47
9
);}
{
setCreateAcctSQL
(
pInfo
,
TSDB_SQL_ALTER_ACCT
,
&
yymsp
[
-
1
].
minor
.
yy0
,
NULL
,
&
yymsp
[
0
].
minor
.
yy
14
9
);}
break
;
case
40
:
/* 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
.
yy
47
9
);}
{
setCreateAcctSQL
(
pInfo
,
TSDB_SQL_ALTER_ACCT
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
14
9
);}
break
;
case
41
:
/* ids ::= ID */
case
42
:
/* ids ::= STRING */
yytestcase
(
yyruleno
==
42
);
{
yylhsminor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
yymsp
[
0
].
minor
.
yy0
=
yylhsminor
.
yy0
;
{
yygotominor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
43
:
/* ifexists ::= IF EXISTS */
{
yymsp
[
-
1
].
minor
.
yy0
.
n
=
1
;}
case
45
:
/* ifnotexists ::= IF NOT EXISTS */
yytestcase
(
yyruleno
==
45
);
{
yygotominor
.
yy0
.
n
=
1
;}
break
;
case
44
:
/* ifexists ::= */
case
46
:
/* ifnotexists ::= */
yytestcase
(
yyruleno
==
46
);
{
yymsp
[
1
].
minor
.
yy0
.
n
=
0
;}
break
;
case
45
:
/* ifnotexists ::= IF NOT EXISTS */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
=
1
;}
{
yygotominor
.
yy0
.
n
=
0
;}
break
;
case
47
:
/* cmd ::= CREATE DNODE ids */
{
setDCLSQLElems
(
pInfo
,
TSDB_SQL_CREATE_DNODE
,
1
,
&
yymsp
[
0
].
minor
.
yy0
);}
break
;
case
48
:
/* 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
.
yy
47
9
);}
{
setCreateAcctSQL
(
pInfo
,
TSDB_SQL_CREATE_ACCT
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
14
9
);}
break
;
case
49
:
/* cmd ::= CREATE DATABASE ifnotexists ids db_optr */
{
setCreateDBSQL
(
pInfo
,
TSDB_SQL_CREATE_DB
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
11
8
,
&
yymsp
[
-
2
].
minor
.
yy0
);}
{
setCreateDBSQL
(
pInfo
,
TSDB_SQL_CREATE_DB
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy
26
8
,
&
yymsp
[
-
2
].
minor
.
yy0
);}
break
;
case
50
:
/* cmd ::= CREATE USER ids PASS ids */
{
setCreateUserSQL
(
pInfo
,
&
yymsp
[
-
2
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
);}
...
...
@@ -2435,7 +1829,7 @@ static YYACTIONTYPE yy_reduce(
case
63
:
/* users ::= */
yytestcase
(
yyruleno
==
63
);
case
65
:
/* conns ::= */
yytestcase
(
yyruleno
==
65
);
case
67
:
/* state ::= */
yytestcase
(
yyruleno
==
67
);
{
yy
msp
[
1
].
minor
.
yy0
.
n
=
0
;
}
{
yy
goto
minor
.
yy0
.
n
=
0
;
}
break
;
case
52
:
/* pps ::= PPS INTEGER */
case
54
:
/* tseries ::= TSERIES INTEGER */
yytestcase
(
yyruleno
==
54
);
...
...
@@ -2446,24 +1840,23 @@ static YYACTIONTYPE yy_reduce(
case
64
:
/* users ::= USERS INTEGER */
yytestcase
(
yyruleno
==
64
);
case
66
:
/* conns ::= CONNS INTEGER */
yytestcase
(
yyruleno
==
66
);
case
68
:
/* state ::= STATE ids */
yytestcase
(
yyruleno
==
68
);
{
yy
msp
[
-
1
].
minor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
{
yy
goto
minor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
69
:
/* acct_optr ::= pps tseries storage streams qtime dbs users conns state */
{
yy
lhsminor
.
yy47
9
.
maxUsers
=
(
yymsp
[
-
2
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
2
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxDbs
=
(
yymsp
[
-
3
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
3
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxTimeSeries
=
(
yymsp
[
-
7
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
7
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxStreams
=
(
yymsp
[
-
5
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
5
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxPointsPerSecond
=
(
yymsp
[
-
8
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
8
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxStorage
=
(
yymsp
[
-
6
].
minor
.
yy0
.
n
>
0
)
?
strtoll
(
yymsp
[
-
6
].
minor
.
yy0
.
z
,
NULL
,
10
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxQueryTime
=
(
yymsp
[
-
4
].
minor
.
yy0
.
n
>
0
)
?
strtoll
(
yymsp
[
-
4
].
minor
.
yy0
.
z
,
NULL
,
10
)
:-
1
;
yy
lhsminor
.
yy47
9
.
maxConnections
=
(
yymsp
[
-
1
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
1
].
minor
.
yy0
.
z
)
:-
1
;
yy
lhsminor
.
yy47
9
.
stat
=
yymsp
[
0
].
minor
.
yy0
;
yy
gotominor
.
yy14
9
.
maxUsers
=
(
yymsp
[
-
2
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
2
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxDbs
=
(
yymsp
[
-
3
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
3
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxTimeSeries
=
(
yymsp
[
-
7
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
7
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxStreams
=
(
yymsp
[
-
5
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
5
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxPointsPerSecond
=
(
yymsp
[
-
8
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
8
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxStorage
=
(
yymsp
[
-
6
].
minor
.
yy0
.
n
>
0
)
?
strtoll
(
yymsp
[
-
6
].
minor
.
yy0
.
z
,
NULL
,
10
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxQueryTime
=
(
yymsp
[
-
4
].
minor
.
yy0
.
n
>
0
)
?
strtoll
(
yymsp
[
-
4
].
minor
.
yy0
.
z
,
NULL
,
10
)
:-
1
;
yy
gotominor
.
yy14
9
.
maxConnections
=
(
yymsp
[
-
1
].
minor
.
yy0
.
n
>
0
)
?
atoi
(
yymsp
[
-
1
].
minor
.
yy0
.
z
)
:-
1
;
yy
gotominor
.
yy14
9
.
stat
=
yymsp
[
0
].
minor
.
yy0
;
}
yymsp
[
-
8
].
minor
.
yy479
=
yylhsminor
.
yy479
;
break
;
case
70
:
/* keep ::= KEEP tagitemlist */
{
yy
msp
[
-
1
].
minor
.
yy156
=
yymsp
[
0
].
minor
.
yy156
;
}
{
yy
gotominor
.
yy498
=
yymsp
[
0
].
minor
.
yy498
;
}
break
;
case
71
:
/* cache ::= CACHE INTEGER */
case
72
:
/* replica ::= REPLICA INTEGER */
yytestcase
(
yyruleno
==
72
);
...
...
@@ -2477,540 +1870,461 @@ static YYACTIONTYPE yy_reduce(
case
80
:
/* fsync ::= FSYNC INTEGER */
yytestcase
(
yyruleno
==
80
);
case
81
:
/* comp ::= COMP INTEGER */
yytestcase
(
yyruleno
==
81
);
case
82
:
/* prec ::= PRECISION STRING */
yytestcase
(
yyruleno
==
82
);
{
yymsp
[
-
1
].
minor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
83
:
/* db_optr ::= */
{
setDefaultCreateDbOption
(
&
yymsp
[
1
].
minor
.
yy118
);}
break
;
case
84
:
/* db_optr ::= db_optr cache */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
cacheBlockSize
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
85
:
/* db_optr ::= db_optr replica */
case
98
:
/* alter_db_optr ::= alter_db_optr replica */
yytestcase
(
yyruleno
==
98
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
replica
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
86
:
/* db_optr ::= db_optr quorum */
case
99
:
/* alter_db_optr ::= alter_db_optr quorum */
yytestcase
(
yyruleno
==
99
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
quorum
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
87
:
/* db_optr ::= db_optr days */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
daysPerFile
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
88
:
/* db_optr ::= db_optr minrows */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
minRowsPerBlock
=
strtod
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
89
:
/* db_optr ::= db_optr maxrows */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
maxRowsPerBlock
=
strtod
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
90
:
/* db_optr ::= db_optr blocks */
case
101
:
/* alter_db_optr ::= alter_db_optr blocks */
yytestcase
(
yyruleno
==
101
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
numOfBlocks
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
91
:
/* db_optr ::= db_optr ctime */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
commitTime
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
92
:
/* db_optr ::= db_optr wal */
case
103
:
/* alter_db_optr ::= alter_db_optr wal */
yytestcase
(
yyruleno
==
103
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
walLevel
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
93
:
/* db_optr ::= db_optr fsync */
case
104
:
/* alter_db_optr ::= alter_db_optr fsync */
yytestcase
(
yyruleno
==
104
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
fsyncPeriod
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
94
:
/* db_optr ::= db_optr comp */
case
102
:
/* alter_db_optr ::= alter_db_optr comp */
yytestcase
(
yyruleno
==
102
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
compressionLevel
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
95
:
/* db_optr ::= db_optr prec */
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
precision
=
yymsp
[
0
].
minor
.
yy0
;
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
96
:
/* db_optr ::= db_optr keep */
case
100
:
/* alter_db_optr ::= alter_db_optr keep */
yytestcase
(
yyruleno
==
100
);
{
yylhsminor
.
yy118
=
yymsp
[
-
1
].
minor
.
yy118
;
yylhsminor
.
yy118
.
keep
=
yymsp
[
0
].
minor
.
yy156
;
}
yymsp
[
-
1
].
minor
.
yy118
=
yylhsminor
.
yy118
;
break
;
case
97
:
/* alter_db_optr ::= */
{
setDefaultCreateDbOption
(
&
yymsp
[
1
].
minor
.
yy118
);}
break
;
case
105
:
/* typename ::= ids */
case
83
:
/* update ::= UPDATE INTEGER */
yytestcase
(
yyruleno
==
83
);
{
yygotominor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
84
:
/* db_optr ::= */
{
setDefaultCreateDbOption
(
&
yygotominor
.
yy268
);}
break
;
case
85
:
/* db_optr ::= db_optr cache */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
cacheBlockSize
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
86
:
/* db_optr ::= db_optr replica */
case
100
:
/* alter_db_optr ::= alter_db_optr replica */
yytestcase
(
yyruleno
==
100
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
replica
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
87
:
/* db_optr ::= db_optr quorum */
case
101
:
/* alter_db_optr ::= alter_db_optr quorum */
yytestcase
(
yyruleno
==
101
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
quorum
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
88
:
/* db_optr ::= db_optr days */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
daysPerFile
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
89
:
/* db_optr ::= db_optr minrows */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
minRowsPerBlock
=
strtod
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
);
}
break
;
case
90
:
/* db_optr ::= db_optr maxrows */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
maxRowsPerBlock
=
strtod
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
);
}
break
;
case
91
:
/* db_optr ::= db_optr blocks */
case
103
:
/* alter_db_optr ::= alter_db_optr blocks */
yytestcase
(
yyruleno
==
103
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
numOfBlocks
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
92
:
/* db_optr ::= db_optr ctime */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
commitTime
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
93
:
/* db_optr ::= db_optr wal */
case
105
:
/* alter_db_optr ::= alter_db_optr wal */
yytestcase
(
yyruleno
==
105
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
walLevel
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
94
:
/* db_optr ::= db_optr fsync */
case
106
:
/* alter_db_optr ::= alter_db_optr fsync */
yytestcase
(
yyruleno
==
106
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
fsyncPeriod
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
95
:
/* db_optr ::= db_optr comp */
case
104
:
/* alter_db_optr ::= alter_db_optr comp */
yytestcase
(
yyruleno
==
104
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
compressionLevel
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
96
:
/* db_optr ::= db_optr prec */
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
precision
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
97
:
/* db_optr ::= db_optr keep */
case
102
:
/* alter_db_optr ::= alter_db_optr keep */
yytestcase
(
yyruleno
==
102
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
keep
=
yymsp
[
0
].
minor
.
yy498
;
}
break
;
case
98
:
/* db_optr ::= db_optr update */
case
107
:
/* alter_db_optr ::= alter_db_optr update */
yytestcase
(
yyruleno
==
107
);
{
yygotominor
.
yy268
=
yymsp
[
-
1
].
minor
.
yy268
;
yygotominor
.
yy268
.
update
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
99
:
/* alter_db_optr ::= */
{
setDefaultCreateDbOption
(
&
yygotominor
.
yy268
);}
break
;
case
108
:
/* typename ::= ids */
{
yymsp
[
0
].
minor
.
yy0
.
type
=
0
;
tSQLSetColumnType
(
&
yy
lhsminor
.
yy34
3
,
&
yymsp
[
0
].
minor
.
yy0
);
tSQLSetColumnType
(
&
yy
gotominor
.
yy22
3
,
&
yymsp
[
0
].
minor
.
yy0
);
}
yymsp
[
0
].
minor
.
yy343
=
yylhsminor
.
yy343
;
break
;
case
10
6
:
/* typename ::= ids LP signed RP */
case
10
9
:
/* typename ::= ids LP signed RP */
{
if
(
yymsp
[
-
1
].
minor
.
yy
369
<=
0
)
{
if
(
yymsp
[
-
1
].
minor
.
yy
207
<=
0
)
{
yymsp
[
-
3
].
minor
.
yy0
.
type
=
0
;
tSQLSetColumnType
(
&
yy
lhsminor
.
yy34
3
,
&
yymsp
[
-
3
].
minor
.
yy0
);
tSQLSetColumnType
(
&
yy
gotominor
.
yy22
3
,
&
yymsp
[
-
3
].
minor
.
yy0
);
}
else
{
yymsp
[
-
3
].
minor
.
yy0
.
type
=
-
yymsp
[
-
1
].
minor
.
yy
369
;
// negative value of name length
tSQLSetColumnType
(
&
yy
lhsminor
.
yy34
3
,
&
yymsp
[
-
3
].
minor
.
yy0
);
yymsp
[
-
3
].
minor
.
yy0
.
type
=
-
yymsp
[
-
1
].
minor
.
yy
207
;
// negative value of name length
tSQLSetColumnType
(
&
yy
gotominor
.
yy22
3
,
&
yymsp
[
-
3
].
minor
.
yy0
);
}
}
yymsp
[
-
3
].
minor
.
yy343
=
yylhsminor
.
yy343
;
break
;
case
1
07
:
/* signed ::= INTEGER */
{
yylhsminor
.
yy369
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
yymsp
[
0
].
minor
.
yy369
=
yylhsminor
.
yy369
;
case
1
10
:
/* signed ::= INTEGER */
case
111
:
/* signed ::= PLUS INTEGER */
yytestcase
(
yyruleno
==
111
);
{
yygotominor
.
yy207
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
1
08
:
/* signed ::= PL
US INTEGER */
{
yy
msp
[
-
1
].
minor
.
yy369
=
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
case
1
12
:
/* signed ::= MIN
US INTEGER */
{
yy
gotominor
.
yy207
=
-
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);
}
break
;
case
109
:
/* signed ::= MINUS INTEGER */
{
yymsp
[
-
1
].
minor
.
yy369
=
-
strtol
(
yymsp
[
0
].
minor
.
yy0
.
z
,
NULL
,
10
);}
break
;
case
110
:
/* cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args */
case
113
:
/* cmd ::= CREATE TABLE ifnotexists ids cpxName create_table_args */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
yymsp
[
-
1
].
minor
.
yy0
.
n
;
setCreatedTableName
(
pInfo
,
&
yymsp
[
-
2
].
minor
.
yy0
,
&
yymsp
[
-
3
].
minor
.
yy0
);
}
break
;
case
11
1
:
/* create_table_args ::= LP columnlist RP */
case
11
4
:
/* create_table_args ::= LP columnlist RP */
{
yy
msp
[
-
2
].
minor
.
yy398
=
tSetCreateSQLElems
(
yymsp
[
-
1
].
minor
.
yy511
,
NULL
,
NULL
,
NULL
,
NULL
,
TSQL_CREATE_TABLE
);
setSQLInfo
(
pInfo
,
yy
msp
[
-
2
].
minor
.
yy398
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
yy
gotominor
.
yy470
=
tSetCreateSQLElems
(
yymsp
[
-
1
].
minor
.
yy523
,
NULL
,
NULL
,
NULL
,
NULL
,
TSQL_CREATE_TABLE
);
setSQLInfo
(
pInfo
,
yy
gotominor
.
yy470
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
}
break
;
case
11
2
:
/* create_table_args ::= LP columnlist RP TAGS LP columnlist RP */
case
11
5
:
/* create_table_args ::= LP columnlist RP TAGS LP columnlist RP */
{
yy
msp
[
-
6
].
minor
.
yy398
=
tSetCreateSQLElems
(
yymsp
[
-
5
].
minor
.
yy511
,
yymsp
[
-
1
].
minor
.
yy511
,
NULL
,
NULL
,
NULL
,
TSQL_CREATE_STABLE
);
setSQLInfo
(
pInfo
,
yy
msp
[
-
6
].
minor
.
yy398
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
yy
gotominor
.
yy470
=
tSetCreateSQLElems
(
yymsp
[
-
5
].
minor
.
yy523
,
yymsp
[
-
1
].
minor
.
yy523
,
NULL
,
NULL
,
NULL
,
TSQL_CREATE_STABLE
);
setSQLInfo
(
pInfo
,
yy
gotominor
.
yy470
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
}
break
;
case
11
3
:
/* create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP */
case
11
6
:
/* create_table_args ::= USING ids cpxName TAGS LP tagitemlist RP */
{
yymsp
[
-
5
].
minor
.
yy0
.
n
+=
yymsp
[
-
4
].
minor
.
yy0
.
n
;
yy
msp
[
-
6
].
minor
.
yy398
=
tSetCreateSQLElems
(
NULL
,
NULL
,
&
yymsp
[
-
5
].
minor
.
yy0
,
yymsp
[
-
1
].
minor
.
yy156
,
NULL
,
TSQL_CREATE_TABLE_FROM_STABLE
);
setSQLInfo
(
pInfo
,
yy
msp
[
-
6
].
minor
.
yy398
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
yy
gotominor
.
yy470
=
tSetCreateSQLElems
(
NULL
,
NULL
,
&
yymsp
[
-
5
].
minor
.
yy0
,
yymsp
[
-
1
].
minor
.
yy498
,
NULL
,
TSQL_CREATE_TABLE_FROM_STABLE
);
setSQLInfo
(
pInfo
,
yy
gotominor
.
yy470
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
}
break
;
case
11
4
:
/* create_table_args ::= AS select */
case
11
7
:
/* create_table_args ::= AS select */
{
yy
msp
[
-
1
].
minor
.
yy398
=
tSetCreateSQLElems
(
NULL
,
NULL
,
NULL
,
NULL
,
yymsp
[
0
].
minor
.
yy44
4
,
TSQL_CREATE_STREAM
);
setSQLInfo
(
pInfo
,
yy
msp
[
-
1
].
minor
.
yy398
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
yy
gotominor
.
yy470
=
tSetCreateSQLElems
(
NULL
,
NULL
,
NULL
,
NULL
,
yymsp
[
0
].
minor
.
yy41
4
,
TSQL_CREATE_STREAM
);
setSQLInfo
(
pInfo
,
yy
gotominor
.
yy470
,
NULL
,
TSDB_SQL_CREATE_TABLE
);
}
break
;
case
115
:
/* columnlist ::= columnlist COMMA column */
{
yylhsminor
.
yy511
=
tFieldListAppend
(
yymsp
[
-
2
].
minor
.
yy511
,
&
yymsp
[
0
].
minor
.
yy343
);
}
yymsp
[
-
2
].
minor
.
yy511
=
yylhsminor
.
yy511
;
case
118
:
/* columnlist ::= columnlist COMMA column */
{
yygotominor
.
yy523
=
tFieldListAppend
(
yymsp
[
-
2
].
minor
.
yy523
,
&
yymsp
[
0
].
minor
.
yy223
);
}
break
;
case
116
:
/* columnlist ::= column */
{
yylhsminor
.
yy511
=
tFieldListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy343
);}
yymsp
[
0
].
minor
.
yy511
=
yylhsminor
.
yy511
;
case
119
:
/* columnlist ::= column */
{
yygotominor
.
yy523
=
tFieldListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy223
);}
break
;
case
1
17
:
/* column ::= ids typename */
case
1
20
:
/* column ::= ids typename */
{
tSQLSetColumnInfo
(
&
yy
lhsminor
.
yy343
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy34
3
);
tSQLSetColumnInfo
(
&
yy
gotominor
.
yy223
,
&
yymsp
[
-
1
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy22
3
);
}
yymsp
[
-
1
].
minor
.
yy343
=
yylhsminor
.
yy343
;
break
;
case
118
:
/* tagitemlist ::= tagitemlist COMMA tagitem */
{
yylhsminor
.
yy156
=
tVariantListAppend
(
yymsp
[
-
2
].
minor
.
yy156
,
&
yymsp
[
0
].
minor
.
yy506
,
-
1
);
}
yymsp
[
-
2
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
119
:
/* tagitemlist ::= tagitem */
{
yylhsminor
.
yy156
=
tVariantListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy506
,
-
1
);
}
yymsp
[
0
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
120
:
/* tagitem ::= INTEGER */
case
121
:
/* tagitem ::= FLOAT */
yytestcase
(
yyruleno
==
121
);
case
122
:
/* tagitem ::= STRING */
yytestcase
(
yyruleno
==
122
);
case
123
:
/* tagitem ::= BOOL */
yytestcase
(
yyruleno
==
123
);
{
toTSDBType
(
yymsp
[
0
].
minor
.
yy0
.
type
);
tVariantCreate
(
&
yylhsminor
.
yy506
,
&
yymsp
[
0
].
minor
.
yy0
);
}
yymsp
[
0
].
minor
.
yy506
=
yylhsminor
.
yy506
;
break
;
case
124
:
/* tagitem ::= NULL */
{
yymsp
[
0
].
minor
.
yy0
.
type
=
0
;
tVariantCreate
(
&
yylhsminor
.
yy506
,
&
yymsp
[
0
].
minor
.
yy0
);
}
yymsp
[
0
].
minor
.
yy506
=
yylhsminor
.
yy506
;
break
;
case
125
:
/* tagitem ::= MINUS INTEGER */
case
126
:
/* tagitem ::= MINUS FLOAT */
yytestcase
(
yyruleno
==
126
);
case
127
:
/* tagitem ::= PLUS INTEGER */
yytestcase
(
yyruleno
==
127
);
case
128
:
/* tagitem ::= PLUS FLOAT */
yytestcase
(
yyruleno
==
128
);
break
;
case
121
:
/* tagitemlist ::= tagitemlist COMMA tagitem */
{
yygotominor
.
yy498
=
tVariantListAppend
(
yymsp
[
-
2
].
minor
.
yy498
,
&
yymsp
[
0
].
minor
.
yy134
,
-
1
);
}
break
;
case
122
:
/* tagitemlist ::= tagitem */
{
yygotominor
.
yy498
=
tVariantListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy134
,
-
1
);
}
break
;
case
123
:
/* tagitem ::= INTEGER */
case
124
:
/* tagitem ::= FLOAT */
yytestcase
(
yyruleno
==
124
);
case
125
:
/* tagitem ::= STRING */
yytestcase
(
yyruleno
==
125
);
case
126
:
/* tagitem ::= BOOL */
yytestcase
(
yyruleno
==
126
);
{
toTSDBType
(
yymsp
[
0
].
minor
.
yy0
.
type
);
tVariantCreate
(
&
yygotominor
.
yy134
,
&
yymsp
[
0
].
minor
.
yy0
);
}
break
;
case
127
:
/* tagitem ::= NULL */
{
yymsp
[
0
].
minor
.
yy0
.
type
=
0
;
tVariantCreate
(
&
yygotominor
.
yy134
,
&
yymsp
[
0
].
minor
.
yy0
);
}
break
;
case
128
:
/* tagitem ::= MINUS INTEGER */
case
129
:
/* tagitem ::= MINUS FLOAT */
yytestcase
(
yyruleno
==
129
);
case
130
:
/* tagitem ::= PLUS INTEGER */
yytestcase
(
yyruleno
==
130
);
case
131
:
/* tagitem ::= PLUS FLOAT */
yytestcase
(
yyruleno
==
131
);
{
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
(
&
yy
lhsminor
.
yy506
,
&
yymsp
[
-
1
].
minor
.
yy0
);
tVariantCreate
(
&
yy
gotominor
.
yy134
,
&
yymsp
[
-
1
].
minor
.
yy0
);
}
yymsp
[
-
1
].
minor
.
yy506
=
yylhsminor
.
yy506
;
break
;
case
1
29
:
/* select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */
case
1
32
:
/* select ::= SELECT selcollist from where_opt interval_opt fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */
{
yy
lhsminor
.
yy444
=
tSetQuerySQLElems
(
&
yymsp
[
-
11
].
minor
.
yy0
,
yymsp
[
-
10
].
minor
.
yy158
,
yymsp
[
-
9
].
minor
.
yy156
,
yymsp
[
-
8
].
minor
.
yy190
,
yymsp
[
-
4
].
minor
.
yy156
,
yymsp
[
-
3
].
minor
.
yy156
,
&
yymsp
[
-
7
].
minor
.
yy340
,
&
yymsp
[
-
5
].
minor
.
yy0
,
yymsp
[
-
6
].
minor
.
yy156
,
&
yymsp
[
0
].
minor
.
yy414
,
&
yymsp
[
-
1
].
minor
.
yy414
);
yy
gotominor
.
yy414
=
tSetQuerySQLElems
(
&
yymsp
[
-
11
].
minor
.
yy0
,
yymsp
[
-
10
].
minor
.
yy290
,
yymsp
[
-
9
].
minor
.
yy498
,
yymsp
[
-
8
].
minor
.
yy64
,
yymsp
[
-
4
].
minor
.
yy498
,
yymsp
[
-
3
].
minor
.
yy498
,
&
yymsp
[
-
7
].
minor
.
yy532
,
&
yymsp
[
-
5
].
minor
.
yy0
,
yymsp
[
-
6
].
minor
.
yy498
,
&
yymsp
[
0
].
minor
.
yy216
,
&
yymsp
[
-
1
].
minor
.
yy216
);
}
yymsp
[
-
11
].
minor
.
yy444
=
yylhsminor
.
yy444
;
break
;
case
130
:
/* union ::= select */
{
yylhsminor
.
yy333
=
setSubclause
(
NULL
,
yymsp
[
0
].
minor
.
yy444
);
}
yymsp
[
0
].
minor
.
yy333
=
yylhsminor
.
yy333
;
case
133
:
/* union ::= select */
{
yygotominor
.
yy231
=
setSubclause
(
NULL
,
yymsp
[
0
].
minor
.
yy414
);
}
break
;
case
13
1
:
/* union ::= LP union RP */
{
yy
msp
[
-
2
].
minor
.
yy333
=
yymsp
[
-
1
].
minor
.
yy333
;
}
case
13
4
:
/* union ::= LP union RP */
{
yy
gotominor
.
yy231
=
yymsp
[
-
1
].
minor
.
yy231
;
}
break
;
case
132
:
/* union ::= union UNION ALL select */
{
yylhsminor
.
yy333
=
appendSelectClause
(
yymsp
[
-
3
].
minor
.
yy333
,
yymsp
[
0
].
minor
.
yy444
);
}
yymsp
[
-
3
].
minor
.
yy333
=
yylhsminor
.
yy333
;
case
135
:
/* union ::= union UNION ALL select */
{
yygotominor
.
yy231
=
appendSelectClause
(
yymsp
[
-
3
].
minor
.
yy231
,
yymsp
[
0
].
minor
.
yy414
);
}
break
;
case
133
:
/* union ::= union UNION ALL LP select RP */
{
yylhsminor
.
yy333
=
appendSelectClause
(
yymsp
[
-
5
].
minor
.
yy333
,
yymsp
[
-
1
].
minor
.
yy444
);
}
yymsp
[
-
5
].
minor
.
yy333
=
yylhsminor
.
yy333
;
case
136
:
/* union ::= union UNION ALL LP select RP */
{
yygotominor
.
yy231
=
appendSelectClause
(
yymsp
[
-
5
].
minor
.
yy231
,
yymsp
[
-
1
].
minor
.
yy414
);
}
break
;
case
13
4
:
/* cmd ::= union */
{
setSQLInfo
(
pInfo
,
yymsp
[
0
].
minor
.
yy
333
,
NULL
,
TSDB_SQL_SELECT
);
}
case
13
7
:
/* cmd ::= union */
{
setSQLInfo
(
pInfo
,
yymsp
[
0
].
minor
.
yy
231
,
NULL
,
TSDB_SQL_SELECT
);
}
break
;
case
13
5
:
/* select ::= SELECT selcollist */
case
13
8
:
/* select ::= SELECT selcollist */
{
yy
lhsminor
.
yy444
=
tSetQuerySQLElems
(
&
yymsp
[
-
1
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy158
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
yy
gotominor
.
yy414
=
tSetQuerySQLElems
(
&
yymsp
[
-
1
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy290
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
}
yymsp
[
-
1
].
minor
.
yy444
=
yylhsminor
.
yy444
;
break
;
case
136
:
/* sclp ::= selcollist COMMA */
{
yylhsminor
.
yy158
=
yymsp
[
-
1
].
minor
.
yy158
;}
yymsp
[
-
1
].
minor
.
yy158
=
yylhsminor
.
yy158
;
case
139
:
/* sclp ::= selcollist COMMA */
{
yygotominor
.
yy290
=
yymsp
[
-
1
].
minor
.
yy290
;}
break
;
case
1
37
:
/* sclp ::= */
{
yy
msp
[
1
].
minor
.
yy158
=
0
;}
case
1
40
:
/* sclp ::= */
{
yy
gotominor
.
yy290
=
0
;}
break
;
case
1
38
:
/* selcollist ::= sclp expr as */
case
1
41
:
/* selcollist ::= sclp expr as */
{
yy
lhsminor
.
yy158
=
tSQLExprListAppend
(
yymsp
[
-
2
].
minor
.
yy158
,
yymsp
[
-
1
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy0
.
n
?&
yymsp
[
0
].
minor
.
yy0
:
0
);
yy
gotominor
.
yy290
=
tSQLExprListAppend
(
yymsp
[
-
2
].
minor
.
yy290
,
yymsp
[
-
1
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy0
.
n
?&
yymsp
[
0
].
minor
.
yy0
:
0
);
}
yymsp
[
-
2
].
minor
.
yy158
=
yylhsminor
.
yy158
;
break
;
case
1
39
:
/* selcollist ::= sclp STAR */
case
1
42
:
/* selcollist ::= sclp STAR */
{
tSQLExpr
*
pNode
=
tSQLExprIdValueCreate
(
NULL
,
TK_ALL
);
yy
lhsminor
.
yy158
=
tSQLExprListAppend
(
yymsp
[
-
1
].
minor
.
yy158
,
pNode
,
0
);
yy
gotominor
.
yy290
=
tSQLExprListAppend
(
yymsp
[
-
1
].
minor
.
yy290
,
pNode
,
0
);
}
yymsp
[
-
1
].
minor
.
yy158
=
yylhsminor
.
yy158
;
break
;
case
140
:
/* as ::= AS ids */
{
yymsp
[
-
1
].
minor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
14
1
:
/* as ::=
ids */
{
yylhsminor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
yymsp
[
0
].
minor
.
yy0
=
yylhsminor
.
yy0
;
case
14
3
:
/* as ::= AS
ids */
case
144
:
/* as ::= ids */
yytestcase
(
yyruleno
==
144
);
{
yygotominor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;
}
break
;
case
14
2
:
/* as ::= */
{
yy
msp
[
1
].
minor
.
yy0
.
n
=
0
;
}
case
14
5
:
/* as ::= */
{
yy
goto
minor
.
yy0
.
n
=
0
;
}
break
;
case
143
:
/* from ::= FROM tablelist */
{
yymsp
[
-
1
].
minor
.
yy156
=
yymsp
[
0
].
minor
.
yy156
;}
case
146
:
/* from ::= FROM tablelist */
case
161
:
/* orderby_opt ::= ORDER BY sortlist */
yytestcase
(
yyruleno
==
161
);
case
169
:
/* groupby_opt ::= GROUP BY grouplist */
yytestcase
(
yyruleno
==
169
);
{
yygotominor
.
yy498
=
yymsp
[
0
].
minor
.
yy498
;}
break
;
case
14
4
:
/* tablelist ::= ids cpxName */
case
14
7
:
/* tablelist ::= ids cpxName */
{
toTSDBType
(
yymsp
[
-
1
].
minor
.
yy0
.
type
);
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yylhsminor
.
yy156
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
// table alias name
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yygotominor
.
yy498
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
// table alias name
}
yymsp
[
-
1
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
14
5
:
/* tablelist ::= ids cpxName ids */
case
14
8
:
/* tablelist ::= ids cpxName ids */
{
toTSDBType
(
yymsp
[
-
2
].
minor
.
yy0
.
type
);
toTSDBType
(
yymsp
[
0
].
minor
.
yy0
.
type
);
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
yymsp
[
-
1
].
minor
.
yy0
.
n
;
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
2
].
minor
.
yy0
,
-
1
);
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yylhsminor
.
yy156
,
&
yymsp
[
0
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
2
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yygotominor
.
yy498
,
&
yymsp
[
0
].
minor
.
yy0
,
-
1
);
}
yymsp
[
-
2
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
14
6
:
/* tablelist ::= tablelist COMMA ids cpxName */
case
14
9
:
/* tablelist ::= tablelist COMMA ids cpxName */
{
toTSDBType
(
yymsp
[
-
1
].
minor
.
yy0
.
type
);
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yymsp
[
-
3
].
minor
.
yy156
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yylhsminor
.
yy156
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yymsp
[
-
3
].
minor
.
yy498
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yygotominor
.
yy498
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
}
yymsp
[
-
3
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
1
47
:
/* tablelist ::= tablelist COMMA ids cpxName ids */
case
1
50
:
/* tablelist ::= tablelist COMMA ids cpxName ids */
{
toTSDBType
(
yymsp
[
-
2
].
minor
.
yy0
.
type
);
toTSDBType
(
yymsp
[
0
].
minor
.
yy0
.
type
);
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
yymsp
[
-
1
].
minor
.
yy0
.
n
;
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yymsp
[
-
4
].
minor
.
yy156
,
&
yymsp
[
-
2
].
minor
.
yy0
,
-
1
);
yy
lhsminor
.
yy156
=
tVariantListAppendToken
(
yylhsminor
.
yy156
,
&
yymsp
[
0
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yymsp
[
-
4
].
minor
.
yy498
,
&
yymsp
[
-
2
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
yygotominor
.
yy498
,
&
yymsp
[
0
].
minor
.
yy0
,
-
1
);
}
yymsp
[
-
4
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
148
:
/* tmvar ::= VARIABLE */
{
yylhsminor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;}
yymsp
[
0
].
minor
.
yy0
=
yylhsminor
.
yy0
;
case
151
:
/* tmvar ::= VARIABLE */
{
yygotominor
.
yy0
=
yymsp
[
0
].
minor
.
yy0
;}
break
;
case
1
49
:
/* interval_opt ::= INTERVAL LP tmvar RP */
{
yy
msp
[
-
3
].
minor
.
yy340
.
interval
=
yymsp
[
-
1
].
minor
.
yy0
;
yymsp
[
-
3
].
minor
.
yy340
.
offset
.
n
=
0
;
yymsp
[
-
3
].
minor
.
yy340
.
offset
.
z
=
NULL
;
yymsp
[
-
3
].
minor
.
yy340
.
offset
.
type
=
0
;}
case
1
52
:
/* interval_opt ::= INTERVAL LP tmvar RP */
{
yy
gotominor
.
yy532
.
interval
=
yymsp
[
-
1
].
minor
.
yy0
;
yygotominor
.
yy532
.
offset
.
n
=
0
;
yygotominor
.
yy532
.
offset
.
z
=
NULL
;
yygotominor
.
yy532
.
offset
.
type
=
0
;}
break
;
case
15
0
:
/* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */
{
yy
msp
[
-
5
].
minor
.
yy340
.
interval
=
yymsp
[
-
3
].
minor
.
yy0
;
yymsp
[
-
5
].
minor
.
yy340
.
offset
=
yymsp
[
-
1
].
minor
.
yy0
;}
case
15
3
:
/* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */
{
yy
gotominor
.
yy532
.
interval
=
yymsp
[
-
3
].
minor
.
yy0
;
yygotominor
.
yy532
.
offset
=
yymsp
[
-
1
].
minor
.
yy0
;}
break
;
case
15
1
:
/* interval_opt ::= */
{
memset
(
&
yy
msp
[
1
].
minor
.
yy340
,
0
,
sizeof
(
yymsp
[
1
].
minor
.
yy340
));}
case
15
4
:
/* interval_opt ::= */
{
memset
(
&
yy
gotominor
.
yy532
,
0
,
sizeof
(
yygotominor
.
yy532
));}
break
;
case
15
2
:
/* fill_opt ::= */
{
yy
msp
[
1
].
minor
.
yy156
=
0
;
}
case
15
5
:
/* fill_opt ::= */
{
yy
gotominor
.
yy498
=
0
;
}
break
;
case
15
3
:
/* fill_opt ::= FILL LP ID COMMA tagitemlist RP */
case
15
6
:
/* 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
.
yy
156
,
&
A
,
-
1
,
0
);
yy
msp
[
-
5
].
minor
.
yy156
=
yymsp
[
-
1
].
minor
.
yy156
;
tVariantListInsert
(
yymsp
[
-
1
].
minor
.
yy
498
,
&
A
,
-
1
,
0
);
yy
gotominor
.
yy498
=
yymsp
[
-
1
].
minor
.
yy498
;
}
break
;
case
15
4
:
/* fill_opt ::= FILL LP ID RP */
case
15
7
:
/* fill_opt ::= FILL LP ID RP */
{
toTSDBType
(
yymsp
[
-
1
].
minor
.
yy0
.
type
);
yy
msp
[
-
3
].
minor
.
yy156
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy0
,
-
1
);
}
break
;
case
15
5
:
/* sliding_opt ::= SLIDING LP tmvar RP */
{
yy
msp
[
-
3
].
minor
.
yy0
=
yymsp
[
-
1
].
minor
.
yy0
;
}
case
15
8
:
/* sliding_opt ::= SLIDING LP tmvar RP */
{
yy
goto
minor
.
yy0
=
yymsp
[
-
1
].
minor
.
yy0
;
}
break
;
case
15
6
:
/* sliding_opt ::= */
{
yy
msp
[
1
].
minor
.
yy0
.
n
=
0
;
yymsp
[
1
].
minor
.
yy0
.
z
=
NULL
;
yymsp
[
1
].
minor
.
yy0
.
type
=
0
;
}
case
15
9
:
/* sliding_opt ::= */
{
yy
gotominor
.
yy0
.
n
=
0
;
yygotominor
.
yy0
.
z
=
NULL
;
yygoto
minor
.
yy0
.
type
=
0
;
}
break
;
case
1
57
:
/* orderby_opt ::= */
case
16
5
:
/* groupby_opt ::= */
yytestcase
(
yyruleno
==
165
);
{
yy
msp
[
1
].
minor
.
yy156
=
0
;}
case
1
60
:
/* orderby_opt ::= */
case
16
8
:
/* groupby_opt ::= */
yytestcase
(
yyruleno
==
168
);
{
yy
gotominor
.
yy498
=
0
;}
break
;
case
158
:
/* orderby_opt ::= ORDER BY sortlist */
case
166
:
/* groupby_opt ::= GROUP BY grouplist */
yytestcase
(
yyruleno
==
166
);
{
yymsp
[
-
2
].
minor
.
yy156
=
yymsp
[
0
].
minor
.
yy156
;}
break
;
case
159
:
/* sortlist ::= sortlist COMMA item sortorder */
case
162
:
/* sortlist ::= sortlist COMMA item sortorder */
{
yy
lhsminor
.
yy156
=
tVariantListAppend
(
yymsp
[
-
3
].
minor
.
yy156
,
&
yymsp
[
-
1
].
minor
.
yy506
,
yymsp
[
0
].
minor
.
yy112
);
yy
gotominor
.
yy498
=
tVariantListAppend
(
yymsp
[
-
3
].
minor
.
yy498
,
&
yymsp
[
-
1
].
minor
.
yy134
,
yymsp
[
0
].
minor
.
yy46
);
}
yymsp
[
-
3
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
16
0
:
/* sortlist ::= item sortorder */
case
16
3
:
/* sortlist ::= item sortorder */
{
yy
lhsminor
.
yy156
=
tVariantListAppend
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy506
,
yymsp
[
0
].
minor
.
yy112
);
yy
gotominor
.
yy498
=
tVariantListAppend
(
NULL
,
&
yymsp
[
-
1
].
minor
.
yy134
,
yymsp
[
0
].
minor
.
yy46
);
}
yymsp
[
-
1
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
16
1
:
/* item ::= ids cpxName */
case
16
4
:
/* item ::= ids cpxName */
{
toTSDBType
(
yymsp
[
-
1
].
minor
.
yy0
.
type
);
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
tVariantCreate
(
&
yy
lhsminor
.
yy506
,
&
yymsp
[
-
1
].
minor
.
yy0
);
tVariantCreate
(
&
yy
gotominor
.
yy134
,
&
yymsp
[
-
1
].
minor
.
yy0
);
}
yymsp
[
-
1
].
minor
.
yy506
=
yylhsminor
.
yy506
;
break
;
case
16
2
:
/* sortorder ::= ASC */
{
yy
msp
[
0
].
minor
.
yy112
=
TSDB_ORDER_ASC
;
}
case
16
5
:
/* sortorder ::= ASC */
{
yy
gotominor
.
yy46
=
TSDB_ORDER_ASC
;
}
break
;
case
16
3
:
/* sortorder ::= DESC */
{
yy
msp
[
0
].
minor
.
yy112
=
TSDB_ORDER_DESC
;}
case
16
6
:
/* sortorder ::= DESC */
{
yy
gotominor
.
yy46
=
TSDB_ORDER_DESC
;}
break
;
case
16
4
:
/* sortorder ::= */
{
yy
msp
[
1
].
minor
.
yy112
=
TSDB_ORDER_ASC
;}
case
16
7
:
/* sortorder ::= */
{
yy
gotominor
.
yy46
=
TSDB_ORDER_ASC
;}
break
;
case
1
67
:
/* grouplist ::= grouplist COMMA item */
case
1
70
:
/* grouplist ::= grouplist COMMA item */
{
yy
lhsminor
.
yy156
=
tVariantListAppend
(
yymsp
[
-
2
].
minor
.
yy156
,
&
yymsp
[
0
].
minor
.
yy506
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppend
(
yymsp
[
-
2
].
minor
.
yy498
,
&
yymsp
[
0
].
minor
.
yy134
,
-
1
);
}
yymsp
[
-
2
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
1
68
:
/* grouplist ::= item */
case
1
71
:
/* grouplist ::= item */
{
yy
lhsminor
.
yy156
=
tVariantListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy506
,
-
1
);
yy
gotominor
.
yy498
=
tVariantListAppend
(
NULL
,
&
yymsp
[
0
].
minor
.
yy134
,
-
1
);
}
yymsp
[
0
].
minor
.
yy156
=
yylhsminor
.
yy156
;
break
;
case
169
:
/* having_opt ::= */
case
179
:
/* where_opt ::= */
yytestcase
(
yyruleno
==
179
);
case
217
:
/* expritem ::= */
yytestcase
(
yyruleno
==
217
);
{
yymsp
[
1
].
minor
.
yy190
=
0
;}
break
;
case
170
:
/* having_opt ::= HAVING expr */
case
180
:
/* where_opt ::= WHERE expr */
yytestcase
(
yyruleno
==
180
);
{
yymsp
[
-
1
].
minor
.
yy190
=
yymsp
[
0
].
minor
.
yy190
;}
case
172
:
/* having_opt ::= */
case
182
:
/* where_opt ::= */
yytestcase
(
yyruleno
==
182
);
case
220
:
/* expritem ::= */
yytestcase
(
yyruleno
==
220
);
{
yygotominor
.
yy64
=
0
;}
break
;
case
171
:
/* limit_opt ::= */
case
175
:
/* slimit_opt ::= */
yytestcase
(
yyruleno
==
175
);
{
yymsp
[
1
].
minor
.
yy414
.
limit
=
-
1
;
yymsp
[
1
].
minor
.
yy414
.
offset
=
0
;}
case
173
:
/* having_opt ::= HAVING expr */
case
183
:
/* where_opt ::= WHERE expr */
yytestcase
(
yyruleno
==
183
);
case
219
:
/* expritem ::= expr */
yytestcase
(
yyruleno
==
219
);
{
yygotominor
.
yy64
=
yymsp
[
0
].
minor
.
yy64
;}
break
;
case
17
2
:
/* limit_opt ::= LIMIT signed
*/
case
17
6
:
/* slimit_opt ::= SLIMIT signed */
yytestcase
(
yyruleno
==
176
);
{
yy
msp
[
-
1
].
minor
.
yy414
.
limit
=
yymsp
[
0
].
minor
.
yy369
;
yymsp
[
-
1
].
minor
.
yy414
.
offset
=
0
;}
case
17
4
:
/* limit_opt ::=
*/
case
17
8
:
/* slimit_opt ::= */
yytestcase
(
yyruleno
==
178
);
{
yy
gotominor
.
yy216
.
limit
=
-
1
;
yygotominor
.
yy216
.
offset
=
0
;}
break
;
case
17
3
:
/* limit_opt ::= LIMIT signed OFFSE
T signed */
case
17
7
:
/* slimit_opt ::= SLIMIT signed SOFFSET signed */
yytestcase
(
yyruleno
==
177
);
{
yy
msp
[
-
3
].
minor
.
yy414
.
limit
=
yymsp
[
-
2
].
minor
.
yy369
;
yymsp
[
-
3
].
minor
.
yy414
.
offset
=
yymsp
[
0
].
minor
.
yy369
;}
case
17
5
:
/* limit_opt ::= LIMI
T signed */
case
17
9
:
/* slimit_opt ::= SLIMIT signed */
yytestcase
(
yyruleno
==
179
);
{
yy
gotominor
.
yy216
.
limit
=
yymsp
[
0
].
minor
.
yy207
;
yygotominor
.
yy216
.
offset
=
0
;}
break
;
case
17
4
:
/* limit_opt ::= LIMIT signed COMMA
signed */
case
1
78
:
/* slimit_opt ::= SLIMIT signed COMMA signed */
yytestcase
(
yyruleno
==
178
);
{
yy
msp
[
-
3
].
minor
.
yy414
.
limit
=
yymsp
[
0
].
minor
.
yy369
;
yymsp
[
-
3
].
minor
.
yy414
.
offset
=
yymsp
[
-
2
].
minor
.
yy369
;}
case
17
6
:
/* limit_opt ::= LIMIT signed OFFSET
signed */
case
1
80
:
/* slimit_opt ::= SLIMIT signed SOFFSET signed */
yytestcase
(
yyruleno
==
180
);
{
yy
gotominor
.
yy216
.
limit
=
yymsp
[
-
2
].
minor
.
yy207
;
yygotominor
.
yy216
.
offset
=
yymsp
[
0
].
minor
.
yy207
;}
break
;
case
181
:
/* expr ::= LP expr RP */
{
yymsp
[
-
2
].
minor
.
yy190
=
yymsp
[
-
1
].
minor
.
yy190
;
}
case
177
:
/* limit_opt ::= LIMIT signed COMMA signed */
case
181
:
/* slimit_opt ::= SLIMIT signed COMMA signed */
yytestcase
(
yyruleno
==
181
);
{
yygotominor
.
yy216
.
limit
=
yymsp
[
0
].
minor
.
yy207
;
yygotominor
.
yy216
.
offset
=
yymsp
[
-
2
].
minor
.
yy207
;}
break
;
case
182
:
/* expr ::= ID */
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_ID
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
184
:
/* expr ::= LP expr RP */
{
yygotominor
.
yy64
=
yymsp
[
-
1
].
minor
.
yy64
;
}
break
;
case
183
:
/* expr ::= ID DOT ID */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
(
1
+
yymsp
[
0
].
minor
.
yy0
.
n
);
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
2
].
minor
.
yy0
,
TK_ID
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
185
:
/* expr ::= ID */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_ID
);}
break
;
case
184
:
/* expr ::= ID DOT STAR */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
(
1
+
yymsp
[
0
].
minor
.
yy0
.
n
);
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
2
].
minor
.
yy0
,
TK_ALL
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
186
:
/* expr ::= ID DOT ID */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
(
1
+
yymsp
[
0
].
minor
.
yy0
.
n
);
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
2
].
minor
.
yy0
,
TK_ID
);}
break
;
case
185
:
/* expr ::= INTEGER */
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_INTEGER
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
187
:
/* expr ::= ID DOT STAR */
{
yymsp
[
-
2
].
minor
.
yy0
.
n
+=
(
1
+
yymsp
[
0
].
minor
.
yy0
.
n
);
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
2
].
minor
.
yy0
,
TK_ALL
);}
break
;
case
186
:
/* expr ::= MINUS INTEGER */
case
187
:
/* expr ::= PLUS INTEGER */
yytestcase
(
yyruleno
==
187
);
{
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yymsp
[
-
1
].
minor
.
yy0
.
type
=
TK_INTEGER
;
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
1
].
minor
.
yy0
,
TK_INTEGER
);}
yymsp
[
-
1
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
188
:
/* expr ::= INTEGER */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_INTEGER
);}
break
;
case
18
8
:
/* expr ::= FLOAT
*/
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_FLOAT
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
18
9
:
/* expr ::= MINUS INTEGER
*/
case
190
:
/* expr ::= PLUS INTEGER */
yytestcase
(
yyruleno
==
190
);
{
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yymsp
[
-
1
].
minor
.
yy0
.
type
=
TK_INTEGER
;
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
1
].
minor
.
yy0
,
TK_INTEGER
);}
break
;
case
189
:
/* expr ::= MINUS FLOAT */
case
190
:
/* expr ::= PLUS FLOAT */
yytestcase
(
yyruleno
==
190
);
{
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yymsp
[
-
1
].
minor
.
yy0
.
type
=
TK_FLOAT
;
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
1
].
minor
.
yy0
,
TK_FLOAT
);}
yymsp
[
-
1
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
191
:
/* expr ::= FLOAT */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_FLOAT
);}
break
;
case
19
1
:
/* expr ::= STRING
*/
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_STRING
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
19
2
:
/* expr ::= MINUS FLOAT
*/
case
193
:
/* expr ::= PLUS FLOAT */
yytestcase
(
yyruleno
==
193
);
{
yymsp
[
-
1
].
minor
.
yy0
.
n
+=
yymsp
[
0
].
minor
.
yy0
.
n
;
yymsp
[
-
1
].
minor
.
yy0
.
type
=
TK_FLOAT
;
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
-
1
].
minor
.
yy0
,
TK_FLOAT
);}
break
;
case
192
:
/* expr ::= NOW */
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_NOW
);
}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
194
:
/* expr ::= STRING */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_STRING
);}
break
;
case
193
:
/* expr ::= VARIABLE */
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_VARIABLE
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
195
:
/* expr ::= NOW */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_NOW
);
}
break
;
case
194
:
/* expr ::= BOOL */
{
yylhsminor
.
yy190
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_BOOL
);}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
196
:
/* expr ::= VARIABLE */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_VARIABLE
);}
break
;
case
195
:
/* expr ::= ID LP exprlist RP */
{
yylhsminor
.
yy190
=
tSQLExprCreateFunction
(
yymsp
[
-
1
].
minor
.
yy158
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
,
yymsp
[
-
3
].
minor
.
yy0
.
type
);
}
yymsp
[
-
3
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
197
:
/* expr ::= BOOL */
{
yygotominor
.
yy64
=
tSQLExprIdValueCreate
(
&
yymsp
[
0
].
minor
.
yy0
,
TK_BOOL
);}
break
;
case
196
:
/* expr ::= ID LP STAR RP */
{
yylhsminor
.
yy190
=
tSQLExprCreateFunction
(
NULL
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
,
yymsp
[
-
3
].
minor
.
yy0
.
type
);
}
yymsp
[
-
3
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
198
:
/* expr ::= ID LP exprlist RP */
{
yygotominor
.
yy64
=
tSQLExprCreateFunction
(
yymsp
[
-
1
].
minor
.
yy290
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
,
yymsp
[
-
3
].
minor
.
yy0
.
type
);
}
break
;
case
197
:
/* expr ::= expr IS NULL */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
NULL
,
TK_ISNULL
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
199
:
/* expr ::= ID LP STAR RP */
{
yygotominor
.
yy64
=
tSQLExprCreateFunction
(
NULL
,
&
yymsp
[
-
3
].
minor
.
yy0
,
&
yymsp
[
0
].
minor
.
yy0
,
yymsp
[
-
3
].
minor
.
yy0
.
type
);
}
break
;
case
198
:
/* expr ::= expr IS NOT NULL */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
3
].
minor
.
yy190
,
NULL
,
TK_NOTNULL
);}
yymsp
[
-
3
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
200
:
/* expr ::= expr IS NULL */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
NULL
,
TK_ISNULL
);}
break
;
case
199
:
/* expr ::= expr LT expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_LT
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
201
:
/* expr ::= expr IS NOT NULL */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
3
].
minor
.
yy64
,
NULL
,
TK_NOTNULL
);}
break
;
case
200
:
/* expr ::= expr GT expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_GT
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
202
:
/* expr ::= expr LT expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_LT
);}
break
;
case
201
:
/* expr ::= expr LE expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_LE
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
203
:
/* expr ::= expr GT expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_GT
);}
break
;
case
202
:
/* expr ::= expr GE expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_GE
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
204
:
/* expr ::= expr LE expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_LE
);}
break
;
case
203
:
/* expr ::= expr NE expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_NE
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
205
:
/* expr ::= expr GE expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_GE
);}
break
;
case
204
:
/* expr ::= expr EQ expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_EQ
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
206
:
/* expr ::= expr NE expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_NE
);}
break
;
case
205
:
/* expr ::= expr AND expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_AND
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
207
:
/* expr ::= expr EQ expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_EQ
);}
break
;
case
206
:
/* expr ::= expr OR expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_OR
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
208
:
/* expr ::= expr AND expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_AND
);}
break
;
case
207
:
/* expr ::= expr PLUS expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_PLUS
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
209
:
/* expr ::= expr OR expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_OR
);
}
break
;
case
208
:
/* expr ::= expr MINUS expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_MINUS
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
210
:
/* expr ::= expr PLUS expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_PLUS
);
}
break
;
case
209
:
/* expr ::= expr STAR expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_STAR
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
211
:
/* expr ::= expr MINUS expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_MINUS
);
}
break
;
case
210
:
/* expr ::= expr SLASH expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_DIVIDE
);}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
212
:
/* expr ::= expr STAR expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_STAR
);
}
break
;
case
211
:
/* expr ::= expr REM expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_REM
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
213
:
/* expr ::= expr SLASH expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_DIVIDE
);}
break
;
case
212
:
/* expr ::= expr LIKE expr */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy190
,
yymsp
[
0
].
minor
.
yy190
,
TK_LIKE
);
}
yymsp
[
-
2
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
214
:
/* expr ::= expr REM expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_REM
);
}
break
;
case
213
:
/* expr ::= expr IN LP exprlist RP */
{
yylhsminor
.
yy190
=
tSQLExprCreate
(
yymsp
[
-
4
].
minor
.
yy190
,
(
tSQLExpr
*
)
yymsp
[
-
1
].
minor
.
yy158
,
TK_IN
);
}
yymsp
[
-
4
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
215
:
/* expr ::= expr LIKE expr */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
2
].
minor
.
yy64
,
yymsp
[
0
].
minor
.
yy64
,
TK_LIKE
);
}
break
;
case
214
:
/* exprlist ::= exprlist COMMA expritem */
{
yylhsminor
.
yy158
=
tSQLExprListAppend
(
yymsp
[
-
2
].
minor
.
yy158
,
yymsp
[
0
].
minor
.
yy190
,
0
);}
yymsp
[
-
2
].
minor
.
yy158
=
yylhsminor
.
yy158
;
case
216
:
/* expr ::= expr IN LP exprlist RP */
{
yygotominor
.
yy64
=
tSQLExprCreate
(
yymsp
[
-
4
].
minor
.
yy64
,
(
tSQLExpr
*
)
yymsp
[
-
1
].
minor
.
yy290
,
TK_IN
);
}
break
;
case
215
:
/* exprlist ::= expritem */
{
yylhsminor
.
yy158
=
tSQLExprListAppend
(
0
,
yymsp
[
0
].
minor
.
yy190
,
0
);}
yymsp
[
0
].
minor
.
yy158
=
yylhsminor
.
yy158
;
case
217
:
/* exprlist ::= exprlist COMMA expritem */
{
yygotominor
.
yy290
=
tSQLExprListAppend
(
yymsp
[
-
2
].
minor
.
yy290
,
yymsp
[
0
].
minor
.
yy64
,
0
);}
break
;
case
216
:
/* expritem ::= expr */
{
yylhsminor
.
yy190
=
yymsp
[
0
].
minor
.
yy190
;}
yymsp
[
0
].
minor
.
yy190
=
yylhsminor
.
yy190
;
case
218
:
/* exprlist ::= expritem */
{
yygotominor
.
yy290
=
tSQLExprListAppend
(
0
,
yymsp
[
0
].
minor
.
yy64
,
0
);}
break
;
case
2
18
:
/* cmd ::= RESET QUERY CACHE */
case
2
21
:
/* cmd ::= RESET QUERY CACHE */
{
setDCLSQLElems
(
pInfo
,
TSDB_SQL_RESET_CACHE
,
0
);}
break
;
case
2
19
:
/* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */
case
2
22
:
/* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */
{
yymsp
[
-
4
].
minor
.
yy0
.
n
+=
yymsp
[
-
3
].
minor
.
yy0
.
n
;
SAlterTableSQL
*
pAlterTable
=
tAlterTableSQLElems
(
&
yymsp
[
-
4
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy5
11
,
NULL
,
TSDB_ALTER_TABLE_ADD_COLUMN
);
SAlterTableSQL
*
pAlterTable
=
tAlterTableSQLElems
(
&
yymsp
[
-
4
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy5
23
,
NULL
,
TSDB_ALTER_TABLE_ADD_COLUMN
);
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
0
:
/* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */
case
22
3
:
/* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */
{
yymsp
[
-
4
].
minor
.
yy0
.
n
+=
yymsp
[
-
3
].
minor
.
yy0
.
n
;
...
...
@@ -3021,14 +2335,14 @@ static YYACTIONTYPE yy_reduce(
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
1
:
/* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */
case
22
4
:
/* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */
{
yymsp
[
-
4
].
minor
.
yy0
.
n
+=
yymsp
[
-
3
].
minor
.
yy0
.
n
;
SAlterTableSQL
*
pAlterTable
=
tAlterTableSQLElems
(
&
yymsp
[
-
4
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy5
11
,
NULL
,
TSDB_ALTER_TABLE_ADD_TAG_COLUMN
);
SAlterTableSQL
*
pAlterTable
=
tAlterTableSQLElems
(
&
yymsp
[
-
4
].
minor
.
yy0
,
yymsp
[
0
].
minor
.
yy5
23
,
NULL
,
TSDB_ALTER_TABLE_ADD_TAG_COLUMN
);
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
2
:
/* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */
case
22
5
:
/* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */
{
yymsp
[
-
4
].
minor
.
yy0
.
n
+=
yymsp
[
-
3
].
minor
.
yy0
.
n
;
...
...
@@ -3039,7 +2353,7 @@ static YYACTIONTYPE yy_reduce(
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
3
:
/* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */
case
22
6
:
/* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */
{
yymsp
[
-
5
].
minor
.
yy0
.
n
+=
yymsp
[
-
4
].
minor
.
yy0
.
n
;
...
...
@@ -3053,49 +2367,55 @@ static YYACTIONTYPE yy_reduce(
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
4
:
/* cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */
case
22
7
:
/* 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
);
tVariantList
*
A
=
tVariantListAppendToken
(
NULL
,
&
yymsp
[
-
2
].
minor
.
yy0
,
-
1
);
A
=
tVariantListAppend
(
A
,
&
yymsp
[
0
].
minor
.
yy
506
,
-
1
);
A
=
tVariantListAppend
(
A
,
&
yymsp
[
0
].
minor
.
yy
134
,
-
1
);
SAlterTableSQL
*
pAlterTable
=
tAlterTableSQLElems
(
&
yymsp
[
-
6
].
minor
.
yy0
,
NULL
,
A
,
TSDB_ALTER_TABLE_UPDATE_TAG_VAL
);
setSQLInfo
(
pInfo
,
pAlterTable
,
NULL
,
TSDB_SQL_ALTER_TABLE
);
}
break
;
case
22
5
:
/* cmd ::= KILL CONNECTION INTEGER */
case
22
8
:
/* cmd ::= KILL CONNECTION INTEGER */
{
setKillSQL
(
pInfo
,
TSDB_SQL_KILL_CONNECTION
,
&
yymsp
[
0
].
minor
.
yy0
);}
break
;
case
22
6
:
/* cmd ::= KILL STREAM INTEGER COLON INTEGER */
case
22
9
:
/* 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
2
27
:
/* cmd ::= KILL QUERY INTEGER COLON INTEGER */
case
2
30
:
/* 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
(
yyruleno
<
sizeof
(
yyRuleInfoLhs
)
/
sizeof
(
yyRuleInfoLhs
[
0
])
);
yygoto
=
yyRuleInfoLhs
[
yyruleno
];
yysize
=
yyRuleInfoNRhs
[
yyruleno
];
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"
);
return
yyact
;
yygoto
=
yyRuleInfo
[
yyruleno
].
lhs
;
yysize
=
yyRuleInfo
[
yyruleno
].
nrhs
;
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
);
}
}
/*
...
...
@@ -3105,20 +2425,16 @@ static YYACTIONTYPE yy_reduce(
static
void
yy_parse_failed
(
yyParser
*
yypParser
/* The parser */
){
ParseARG_FETCH
ParseCTX_FETCH
ParseARG_FETCH
;
#ifndef NDEBUG
if
(
yyTraceFILE
){
fprintf
(
yyTraceFILE
,
"%sFail!
\n
"
,
yyTracePrompt
);
}
#endif
while
(
yypParser
->
yy
tos
>
yypParser
->
yystack
)
yy_pop_parser_stack
(
yypParser
);
while
(
yypParser
->
yy
idx
>=
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 */
ParseCTX_STORE
ParseARG_STORE
;
/* Suppress warning about unused %extra_argument variable */
}
#endif
/* YYNOERRORRECOVERY */
...
...
@@ -3128,12 +2444,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
ParseCTX_FETCH
#define TOKEN yyminor
/************ Begin %syntax_error code ****************************************/
ParseARG_FETCH
;
#define TOKEN (yyminor.yy0)
pInfo
->
valid
=
false
;
int32_t
outputBufLen
=
tListLen
(
pInfo
->
pzErrMsg
);
...
...
@@ -3156,9 +2470,7 @@ static void yy_syntax_error(
}
assert
(
len
<=
outputBufLen
);
/************ End %syntax_error code ******************************************/
ParseARG_STORE
/* Suppress warning about unused %extra_argument variable */
ParseCTX_STORE
ParseARG_STORE
;
/* Suppress warning about unused %extra_argument variable */
}
/*
...
...
@@ -3167,24 +2479,17 @@ static void yy_syntax_error(
static
void
yy_accept
(
yyParser
*
yypParser
/* The parser */
){
ParseARG_FETCH
ParseCTX_FETCH
ParseARG_FETCH
;
#ifndef NDEBUG
if
(
yyTraceFILE
){
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 */
ParseCTX_STORE
ParseARG_STORE
;
/* Suppress warning about unused %extra_argument variable */
}
/* The main parser program.
...
...
@@ -3213,54 +2518,50 @@ void Parse(
ParseARG_PDECL
/* Optional %extra_argument parameter */
){
YYMINORTYPE
yyminorunion
;
YYACTIONTYPE
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
=
(
yyParser
*
)
yyp
;
/* The parser */
ParseCTX_FETCH
ParseARG_STORE
yyParser
*
yypParser
;
/* The parser */
assert
(
yypParser
->
yytos
!=
0
);
#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
yyendofinput
=
(
yymajor
==
0
);
/* (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
;
yyendofinput
=
(
yymajor
==
0
);
ParseARG_STORE
;
yyact
=
yypParser
->
yytos
->
stateno
;
#ifndef NDEBUG
if
(
yyTraceFILE
){
if
(
yyact
<
YY_MIN_REDUCE
){
fprintf
(
yyTraceFILE
,
"%sInput '%s' in state %d
\n
"
,
yyTracePrompt
,
yyTokenName
[
yymajor
],
yyact
);
}
else
{
fprintf
(
yyTraceFILE
,
"%sInput '%s' with pending reduce %d
\n
"
,
yyTracePrompt
,
yyTokenName
[
yymajor
],
yyact
-
YY_MIN_REDUCE
);
}
fprintf
(
yyTraceFILE
,
"%sInput %s
\n
"
,
yyTracePrompt
,
yyTokenName
[
yymajor
]);
}
#endif
do
{
assert
(
yyact
==
yypParser
->
yytos
->
stateno
);
yyact
=
yy_find_shift_action
((
YYCODETYPE
)
yymajor
,
yyact
);
if
(
yyact
>=
YY_MIN_REDUCE
){
yyact
=
yy_reduce
(
yypParser
,
yyact
-
YY_MIN_REDUCE
,
yymajor
,
yyminor
ParseCTX_PARAM
);
}
else
if
(
yyact
<=
YY_MAX_SHIFTREDUCE
){
yy_shift
(
yypParser
,
yyact
,(
YYCODETYPE
)
yymajor
,
yyminor
);
#ifndef YYNOERRORRECOVERY
yyact
=
yy_find_shift_action
(
yypParser
,(
YYCODETYPE
)
yymajor
);
if
(
yyact
<
YYNSTATE
){
assert
(
!
yyendofinput
);
/* Impossible to shift the $ token */
yy_shift
(
yypParser
,
yyact
,
yymajor
,
&
yyminorunion
);
yypParser
->
yyerrcnt
--
;
#endif
break
;
}
else
if
(
yyact
==
YY_ACCEPT_ACTION
){
yypParser
->
yytos
--
;
yy_accept
(
yypParser
);
return
;
yymajor
=
YYNOCODE
;
}
else
if
(
yyact
<
YYNSTATE
+
YYNRULE
){
yy_reduce
(
yypParser
,
yyact
-
YYNSTATE
);
}
else
{
assert
(
yyact
==
YY_ERROR_ACTION
);
yyminorunion
.
yy0
=
yyminor
;
#ifdef YYERRORSYMBOL
int
yymx
;
#endif
...
...
@@ -3290,9 +2591,9 @@ void Parse(
**
*/
if
(
yypParser
->
yyerrcnt
<
0
){
yy_syntax_error
(
yypParser
,
yymajor
,
yyminor
);
yy_syntax_error
(
yypParser
,
yymajor
,
yyminor
union
);
}
yymx
=
yypParser
->
yy
tos
->
major
;
yymx
=
yypParser
->
yy
stack
[
yypParser
->
yyidx
].
major
;
if
(
yymx
==
YYERRORSYMBOL
||
yyerrorhit
){
#ifndef NDEBUG
if
(
yyTraceFILE
){
...
...
@@ -3300,31 +2601,30 @@ 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
&&
(
yyact
=
yy_find_reduce_action
(
yypParser
->
yytos
->
stateno
,
YYERRORSYMBOL
))
>
YY_MAX_SHIFTREDUCE
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
->
yy
tos
<
yypParser
->
yystack
||
yymajor
==
0
){
if
(
yypParser
->
yy
idx
<
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
;
yyerrorhit
=
1
;
if
(
yymajor
==
YYNOCODE
)
break
;
yyact
=
yypParser
->
yytos
->
stateno
;
#elif defined(YYNOERRORRECOVERY)
/* If the YYNOERRORRECOVERY macro is defined, then do not attempt to
** do any kind of error recovery. Instead, simply invoke the syntax
...
...
@@ -3333,9 +2633,10 @@ 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
);
break
;
yymajor
=
YYNOCODE
;
#else
/* YYERRORSYMBOL is not defined */
/* This is what we do if the grammar does not define ERROR:
**
...
...
@@ -3347,45 +2648,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
}
break
;
yymajor
=
YYNOCODE
;
#endif
}
}
while
(
yypParser
->
yytos
>
yypParser
->
yystack
);
#ifndef NDEBUG
if
(
yyTraceFILE
){
yyStackEntry
*
i
;
char
cDiv
=
'['
;
fprintf
(
yyTraceFILE
,
"%sReturn. Stack="
,
yyTracePrompt
);
for
(
i
=&
yypParser
->
yystack
[
1
];
i
<=
yypParser
->
yytos
;
i
++
){
fprintf
(
yyTraceFILE
,
"%c%s"
,
cDiv
,
yyTokenName
[
i
->
major
]);
cDiv
=
' '
;
}
fprintf
(
yyTraceFILE
,
"]
\n
"
);
}
#endif
}
while
(
yymajor
!=
YYNOCODE
&&
yypParser
->
yyidx
>=
0
);
return
;
}
/*
** Return the fallback token corresponding to canonical token iToken, or
** 0 if iToken has no fallback.
*/
int
ParseFallback
(
int
iToken
){
#ifdef YYFALLBACK
assert
(
iToken
<
(
int
)(
sizeof
(
yyFallback
)
/
sizeof
(
yyFallback
[
0
]))
);
return
yyFallback
[
iToken
];
#else
(
void
)
iToken
;
return
0
;
#endif
}
tests/pytest/alter/db_update_options.py
0 → 100644
浏览文件 @
cf9ba60e
# -*- coding: utf-8 -*-
import
random
import
string
import
subprocess
import
sys
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
tdLog
.
debug
(
"check database"
)
tdSql
.
prepare
()
# check default update value
sql
=
"create database if not exists db"
tdSql
.
execute
(
sql
)
tdSql
.
query
(
'show databases'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
16
,
0
)
sql
=
"alter database db update 1"
# check update value
tdSql
.
execute
(
sql
)
tdSql
.
query
(
'show databases'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
16
,
1
)
sql
=
"alter database db update 0"
tdSql
.
execute
(
sql
)
tdSql
.
query
(
'show databases'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
16
,
0
)
sql
=
"alter database db update -1"
tdSql
.
error
(
sql
)
sql
=
"alter database db update 100"
tdSql
.
error
(
sql
)
tdSql
.
query
(
'show databases'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
16
,
0
)
tdSql
.
execute
(
'drop database db'
)
tdSql
.
error
(
'create database db update 100'
)
tdSql
.
error
(
'create database db update -1'
)
tdSql
.
execute
(
'create database db update 1'
)
tdSql
.
query
(
'show databases'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
16
,
1
)
tdSql
.
execute
(
'drop database db'
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录