提交 68e2be03 编写于 作者: Y yihaoDeng

[TD-3086]<feature> tag support timestamp

上级 78f30314
...@@ -6820,6 +6820,7 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) { ...@@ -6820,6 +6820,7 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) {
// too long tag values will return invalid sql, not be truncated automatically // too long tag values will return invalid sql, not be truncated automatically
SSchema *pTagSchema = tscGetTableTagSchema(pStableMetaInfo->pTableMeta); SSchema *pTagSchema = tscGetTableTagSchema(pStableMetaInfo->pTableMeta);
STableComInfo tinfo = tscGetTableInfo(pStableMetaInfo->pTableMeta);
STagData *pTag = &pCreateTableInfo->tagdata; STagData *pTag = &pCreateTableInfo->tagdata;
SKVRowBuilder kvRowBuilder = {0}; SKVRowBuilder kvRowBuilder = {0};
...@@ -6869,8 +6870,12 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) { ...@@ -6869,8 +6870,12 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) {
tdDestroyKVRowBuilder(&kvRowBuilder); tdDestroyKVRowBuilder(&kvRowBuilder);
return invalidOperationMsg(tscGetErrorMsgPayload(pCmd), msg3); return invalidOperationMsg(tscGetErrorMsgPayload(pCmd), msg3);
} }
} else if (pSchema->type == TSDB_DATA_TYPE_TIMESTAMP) {
pItem->pVar.i64 =
convertTimePrecision(pItem->pVar.i64, TSDB_TIME_PRECISION_NANO, tinfo.precision);
} }
ret = tVariantDump(&(pItem->pVar), tagVal, pSchema->type, true); ret = tVariantDump(&(pItem->pVar), tagVal, pSchema->type, true);
// check again after the convert since it may be converted from binary to nchar. // check again after the convert since it may be converted from binary to nchar.
...@@ -6915,8 +6920,12 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) { ...@@ -6915,8 +6920,12 @@ int32_t doCheckForCreateFromStable(SSqlObj* pSql, SSqlInfo* pInfo) {
tdDestroyKVRowBuilder(&kvRowBuilder); tdDestroyKVRowBuilder(&kvRowBuilder);
return invalidOperationMsg(tscGetErrorMsgPayload(pCmd), msg3); return invalidOperationMsg(tscGetErrorMsgPayload(pCmd), msg3);
} }
} else if (pSchema->type == TSDB_DATA_TYPE_TIMESTAMP) {
pItem->pVar.i64 =
convertTimePrecision(pItem->pVar.i64, TSDB_TIME_PRECISION_NANO, tinfo.precision);
} }
ret = tVariantDump(&(pItem->pVar), tagVal, pSchema->type, true); ret = tVariantDump(&(pItem->pVar), tagVal, pSchema->type, true);
// check again after the convert since it may be converted from binary to nchar. // check again after the convert since it may be converted from binary to nchar.
......
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#ifndef TDENGINE_TTOKENDEF_H #ifndef TDENGINE_TTOKENDEF_H
#define TDENGINE_TTOKENDEF_H #define TDENGINE_TTOKENDEF_H
#define TK_ID 1 #define TK_ID 1
#define TK_BOOL 2 #define TK_BOOL 2
#define TK_TINYINT 3 #define TK_TINYINT 3
...@@ -128,29 +127,29 @@ ...@@ -128,29 +127,29 @@
#define TK_USING 109 #define TK_USING 109
#define TK_AS 110 #define TK_AS 110
#define TK_NULL 111 #define TK_NULL 111
#define TK_SELECT 112 #define TK_NOW 112
#define TK_UNION 113 #define TK_SELECT 113
#define TK_ALL 114 #define TK_UNION 114
#define TK_DISTINCT 115 #define TK_ALL 115
#define TK_FROM 116 #define TK_DISTINCT 116
#define TK_VARIABLE 117 #define TK_FROM 117
#define TK_INTERVAL 118 #define TK_VARIABLE 118
#define TK_SESSION 119 #define TK_INTERVAL 119
#define TK_STATE_WINDOW 120 #define TK_SESSION 120
#define TK_FILL 121 #define TK_STATE_WINDOW 121
#define TK_SLIDING 122 #define TK_FILL 122
#define TK_ORDER 123 #define TK_SLIDING 123
#define TK_BY 124 #define TK_ORDER 124
#define TK_ASC 125 #define TK_BY 125
#define TK_DESC 126 #define TK_ASC 126
#define TK_GROUP 127 #define TK_DESC 127
#define TK_HAVING 128 #define TK_GROUP 128
#define TK_LIMIT 129 #define TK_HAVING 129
#define TK_OFFSET 130 #define TK_LIMIT 130
#define TK_SLIMIT 131 #define TK_OFFSET 131
#define TK_SOFFSET 132 #define TK_SLIMIT 132
#define TK_WHERE 133 #define TK_SOFFSET 133
#define TK_NOW 134 #define TK_WHERE 134
#define TK_RESET 135 #define TK_RESET 135
#define TK_QUERY 136 #define TK_QUERY 136
#define TK_SYNCDB 137 #define TK_SYNCDB 137
...@@ -207,11 +206,6 @@ ...@@ -207,11 +206,6 @@
#define TK_VALUES 188 #define TK_VALUES 188
#define TK_SPACE 300 #define TK_SPACE 300
#define TK_COMMENT 301 #define TK_COMMENT 301
#define TK_ILLEGAL 302 #define TK_ILLEGAL 302
......
/* /* Driver template for the LEMON parser generator.
** 2000-05-29 ** The author disclaims copyright to this source code.
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************************************************************
** Driver template for the LEMON parser generator.
**
** The "lemon" program processes an LALR(1) input grammar file, then uses
** this template to construct a parser. The "lemon" program inserts text
** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the
** interstitial "-" characters) contained in this template is changed into
** the value of the %name directive from the grammar. Otherwise, the content
** of this template is copied straight through into the generate parser
** source file.
**
** The following is the concatenation of all %include directives from the
** input grammar file:
*/ */
/* First off, code is included that follows the "include" declaration
** in the input grammar file. */
#include <stdio.h> #include <stdio.h>
/************ Begin %include sections from the grammar ************************/
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -36,66 +16,55 @@ ...@@ -36,66 +16,55 @@
#include "ttokendef.h" #include "ttokendef.h"
#include "tutil.h" #include "tutil.h"
#include "tvariant.h" #include "tvariant.h"
/**************** End of %include directives **********************************/ /* Next is all token values, in a form suitable for use by makeheaders.
/* These constants specify the various numeric values for terminal symbols ** This section will be null unless lemon is run with the -m switch.
** in a format understandable to "makeheaders". This section is blank unless */
** "lemon" is run with the "-m" command-line option. /*
***************** Begin makeheaders token definitions *************************/ ** These constants (all generated automatically by the parser generator)
/**************** End makeheaders token definitions ***************************/ ** specify the various kinds of tokens (terminals) that the parser
** understands.
/* The next sections is a series of control #defines. **
** 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. ** various aspects of the generated parser.
** YYCODETYPE is the data type used to store the integer codes ** YYCODETYPE is the data type used for storing terminal
** that represent terminal and non-terminal symbols. ** and nonterminal numbers. "unsigned char" is
** "unsigned char" is used if there are fewer than ** used if there are fewer than 250 terminals
** 256 symbols. Larger types otherwise. ** and nonterminals. "int" is used otherwise.
** YYNOCODE is a number of type YYCODETYPE that is not used for ** YYNOCODE is a number of type YYCODETYPE which corresponds
** any terminal or nonterminal symbol. ** 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 ** YYFALLBACK If defined, this indicates that one or more tokens
** (also known as: "terminal symbols") have fall-back ** have fall-back values which should be used if the
** values which should be used if the original symbol ** original value of the token will not parse.
** would not parse. This permits keywords to sometimes ** YYACTIONTYPE is the data type used for storing terminal
** be used as identifiers, for example. ** and nonterminal numbers. "unsigned char" is
** YYACTIONTYPE is the data type used for "action codes" - numbers ** used if there are fewer than 250 rules and
** that indicate what to do in response to the next ** states combined. "int" is used otherwise.
** token. ** ParseTOKENTYPE is the data type used for minor tokens given
** ParseTOKENTYPE is the data type used for minor type for terminal ** directly to the parser from the tokenizer.
** symbols. Background: A "minor type" is a semantic ** YYMINORTYPE is the data type used for all minor tokens.
** value associated with a terminal or non-terminal
** symbols. For example, for an "ID" terminal symbol,
** the minor type might be the name of the identifier.
** Each non-terminal can have a different minor type.
** Terminal symbols all have the same minor type, though.
** This macros defines the minor type for terminal
** symbols.
** YYMINORTYPE is the data type used for all minor types.
** This is typically a union of many types, one of ** This is typically a union of many types, one of
** which is ParseTOKENTYPE. The entry in the union ** which is ParseTOKENTYPE. The entry in the union
** for terminal symbols is called "yy0". ** for base tokens is called "yy0".
** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** YYSTACKDEPTH is the maximum depth of the parser's stack. If
** zero the stack is dynamically sized using realloc() ** zero the stack is dynamically sized using realloc()
** ParseARG_SDECL A static variable declaration for the %extra_argument ** ParseARG_SDECL A static variable declaration for the %extra_argument
** ParseARG_PDECL A parameter declaration for the %extra_argument ** ParseARG_PDECL A parameter declaration for the %extra_argument
** ParseARG_STORE Code to store %extra_argument into yypParser ** ParseARG_STORE Code to store %extra_argument into yypParser
** ParseARG_FETCH Code to extract %extra_argument from yypParser ** ParseARG_FETCH Code to extract %extra_argument from yypParser
** YYERRORSYMBOL is the code number of the error symbol. If not
** defined, then do no error processing.
** YYNSTATE the combined number of states. ** YYNSTATE the combined number of states.
** YYNRULE the number of rules in the grammar ** YYNRULE the number of rules in the grammar
** YYNTOKEN Number of terminal symbols ** YYERRORSYMBOL is the code number of the error symbol. If not
** YY_MAX_SHIFT Maximum value for shift actions ** defined, then do no error processing.
** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions
** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions
** YY_ERROR_ACTION The yy_action[] code for syntax error
** YY_ACCEPT_ACTION The yy_action[] code for accept
** YY_NO_ACTION The yy_action[] code for no-op
** YY_MIN_REDUCE Minimum value for reduce actions
** YY_MAX_REDUCE Maximum value for reduce actions
*/ */
#ifndef INTERFACE
# define INTERFACE 1
#endif
/************* Begin control #defines *****************************************/
#define YYCODETYPE unsigned short int #define YYCODETYPE unsigned short int
#define YYNOCODE 270 #define YYNOCODE 270
#define YYACTIONTYPE unsigned short int #define YYACTIONTYPE unsigned short int
...@@ -127,19 +96,16 @@ typedef union { ...@@ -127,19 +96,16 @@ typedef union {
#define ParseARG_PDECL ,SSqlInfo* pInfo #define ParseARG_PDECL ,SSqlInfo* pInfo
#define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo #define ParseARG_FETCH SSqlInfo* pInfo = yypParser->pInfo
#define ParseARG_STORE yypParser->pInfo = pInfo #define ParseARG_STORE yypParser->pInfo = pInfo
#define YYNSTATE 543
#define YYNRULE 284
#define YYFALLBACK 1 #define YYFALLBACK 1
#define YYNSTATE 342 #define YY_NO_ACTION (YYNSTATE+YYNRULE+2)
#define YYNRULE 283 #define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1)
#define YYNTOKEN 189 #define YY_ERROR_ACTION (YYNSTATE+YYNRULE)
#define YY_MAX_SHIFT 341
#define YY_MIN_SHIFTREDUCE 542 /* The yyzerominor constant is used to initialize instances of
#define YY_MAX_SHIFTREDUCE 824 ** YYMINORTYPE objects to zero. */
#define YY_ERROR_ACTION 825 static const YYMINORTYPE yyzerominor = { 0 };
#define YY_ACCEPT_ACTION 826
#define YY_NO_ACTION 827
#define YY_MIN_REDUCE 828
#define YY_MAX_REDUCE 1110
/************* End control #defines *******************************************/
/* Define the yytestcase() macro to be a no-op if is not already defined /* Define the yytestcase() macro to be a no-op if is not already defined
** otherwise. ** otherwise.
...@@ -162,35 +128,33 @@ typedef union { ...@@ -162,35 +128,33 @@ typedef union {
** Suppose the action integer is N. Then the action is determined as ** Suppose the action integer is N. Then the action is determined as
** follows ** 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. ** token onto the stack and goto state N.
** **
** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then ** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE.
** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE.
** **
** N == YY_ERROR_ACTION A syntax error has occurred. ** N == YYNSTATE+YYNRULE A syntax error has occurred.
** **
** N == YY_ACCEPT_ACTION The parser accepts its input. ** N == YYNSTATE+YYNRULE+1 The parser accepts its input.
** **
** N == YY_NO_ACTION No such action. Denotes unused ** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused
** slots in the yy_action[] table. ** 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[]. ** 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 ] ** yy_action[ yy_shift_ofst[S] + X ]
** (B) N = yy_default[S]
** **
** The (A) formula is preferred. The B formula is used instead if ** 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. ** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S]
** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table
** and that yy_default[S] should be used instead.
** **
** The formulas above are for computing the action when the lookahead is ** The formula above is for computing the action when the lookahead is
** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a 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 ** 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: ** The following are the tables generated in this section:
** **
...@@ -202,284 +166,309 @@ typedef union { ...@@ -202,284 +166,309 @@ typedef union {
** yy_reduce_ofst[] For each state, the offset into yy_action for ** yy_reduce_ofst[] For each state, the offset into yy_action for
** shifting non-terminals after a reduce. ** shifting non-terminals after a reduce.
** yy_default[] Default action for each state. ** yy_default[] Default action for each state.
** */
*********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (843)
#define YY_ACTTAB_COUNT (725)
static const YYACTIONTYPE yy_action[] = { static const YYACTIONTYPE yy_action[] = {
/* 0 */ 224, 590, 235, 999, 978, 144, 978, 590, 195, 591, /* 0 */ 526, 51, 50, 125, 124, 49, 48, 47, 525, 142,
/* 10 */ 964, 826, 341, 52, 53, 591, 56, 57, 227, 1087, /* 10 */ 140, 139, 52, 53, 32, 56, 57, 289, 543, 230,
/* 20 */ 230, 46, 246, 55, 283, 60, 58, 62, 59, 218, /* 20 */ 46, 529, 55, 283, 60, 58, 62, 59, 338, 337,
/* 30 */ 339, 622, 237, 51, 50, 195, 978, 49, 48, 47, /* 30 */ 136, 528, 51, 50, 828, 341, 49, 48, 47, 52,
/* 40 */ 52, 53, 34, 56, 57, 226, 1087, 230, 46, 590, /* 40 */ 53, 349, 56, 57, 481, 70, 230, 46, 178, 55,
/* 50 */ 55, 283, 60, 58, 62, 59, 151, 591, 976, 990, /* 50 */ 283, 60, 58, 62, 59, 151, 395, 13, 394, 51,
/* 60 */ 51, 50, 228, 151, 49, 48, 47, 53, 996, 56, /* 60 */ 50, 93, 90, 49, 48, 47, 52, 53, 245, 56,
/* 70 */ 57, 266, 265, 230, 46, 259, 55, 283, 60, 58, /* 70 */ 57, 64, 410, 230, 46, 251, 55, 283, 60, 58,
/* 80 */ 62, 59, 299, 75, 220, 151, 51, 50, 975, 299, /* 80 */ 62, 59, 357, 468, 255, 254, 51, 50, 71, 415,
/* 90 */ 49, 48, 47, 543, 544, 545, 546, 547, 548, 549, /* 90 */ 49, 48, 47, 52, 54, 34, 56, 57, 259, 144,
/* 100 */ 550, 551, 552, 553, 554, 555, 340, 6, 94, 219, /* 100 */ 230, 46, 526, 55, 283, 60, 58, 62, 59, 76,
/* 110 */ 76, 52, 53, 82, 56, 57, 963, 195, 230, 46, /* 110 */ 525, 315, 314, 51, 50, 92, 236, 49, 48, 47,
/* 120 */ 41, 55, 283, 60, 58, 62, 59, 1036, 1086, 278, /* 120 */ 348, 64, 60, 58, 62, 59, 369, 21, 278, 20,
/* 130 */ 325, 51, 50, 763, 1035, 49, 48, 47, 52, 54, /* 130 */ 51, 50, 399, 288, 49, 48, 47, 317, 247, 412,
/* 140 */ 22, 56, 57, 966, 990, 230, 46, 35, 55, 283, /* 140 */ 244, 463, 310, 309, 91, 67, 542, 541, 540, 539,
/* 150 */ 60, 58, 62, 59, 280, 193, 87, 874, 51, 50, /* 150 */ 538, 537, 536, 535, 534, 533, 532, 531, 530, 340,
/* 160 */ 221, 178, 49, 48, 47, 260, 40, 297, 334, 333, /* 160 */ 360, 53, 219, 56, 57, 266, 265, 230, 46, 393,
/* 170 */ 296, 295, 294, 332, 293, 331, 330, 329, 292, 328, /* 170 */ 55, 283, 60, 58, 62, 59, 418, 417, 33, 409,
/* 180 */ 327, 938, 926, 927, 928, 929, 930, 931, 932, 933, /* 180 */ 51, 50, 240, 228, 49, 48, 47, 56, 57, 8,
/* 190 */ 934, 935, 936, 937, 939, 940, 56, 57, 146, 990, /* 190 */ 68, 230, 46, 517, 55, 283, 60, 58, 62, 59,
/* 200 */ 230, 46, 199, 55, 283, 60, 58, 62, 59, 49, /* 200 */ 49, 48, 47, 151, 51, 50, 1, 166, 49, 48,
/* 210 */ 48, 47, 23, 51, 50, 222, 727, 49, 48, 47, /* 210 */ 47, 423, 435, 434, 433, 432, 431, 430, 429, 428,
/* 220 */ 229, 778, 972, 883, 767, 115, 770, 178, 773, 204, /* 220 */ 427, 426, 425, 424, 422, 421, 229, 385, 6, 392,
/* 230 */ 325, 229, 778, 335, 907, 767, 205, 770, 769, 773, /* 230 */ 396, 391, 389, 34, 388, 374, 373, 40, 297, 334,
/* 240 */ 772, 128, 127, 203, 338, 337, 136, 15, 40, 14, /* 240 */ 333, 296, 295, 294, 332, 293, 331, 330, 329, 292,
/* 250 */ 334, 333, 215, 216, 151, 332, 282, 331, 330, 329, /* 250 */ 328, 327, 241, 23, 239, 35, 303, 302, 215, 216,
/* 260 */ 977, 328, 327, 215, 216, 946, 236, 944, 945, 590, /* 260 */ 229, 385, 282, 180, 396, 73, 389, 465, 388, 112,
/* 270 */ 1083, 34, 947, 82, 949, 950, 948, 591, 951, 952, /* 270 */ 204, 111, 280, 286, 87, 313, 19, 205, 18, 463,
/* 280 */ 41, 60, 58, 62, 59, 34, 768, 251, 771, 51, /* 280 */ 80, 34, 128, 127, 203, 35, 138, 491, 262, 493,
/* 290 */ 50, 1, 166, 49, 48, 47, 255, 254, 34, 113, /* 290 */ 492, 443, 215, 216, 490, 178, 488, 487, 489, 34,
/* 300 */ 107, 118, 1082, 258, 240, 74, 117, 123, 126, 116, /* 300 */ 486, 485, 40, 408, 334, 333, 453, 195, 452, 332,
/* 310 */ 245, 696, 212, 233, 693, 120, 694, 975, 695, 5, /* 310 */ 284, 331, 330, 329, 82, 328, 327, 226, 378, 451,
/* 320 */ 37, 168, 91, 672, 61, 88, 167, 101, 96, 100, /* 320 */ 398, 450, 41, 312, 113, 107, 118, 463, 195, 137,
/* 330 */ 779, 974, 711, 51, 50, 61, 775, 49, 48, 47, /* 330 */ 61, 117, 123, 126, 116, 501, 384, 387, 227, 378,
/* 340 */ 234, 779, 242, 243, 975, 34, 34, 775, 34, 284, /* 340 */ 120, 311, 390, 386, 258, 463, 74, 456, 34, 34,
/* 350 */ 776, 315, 314, 774, 961, 962, 33, 965, 187, 185, /* 350 */ 459, 34, 458, 212, 457, 24, 397, 34, 34, 187,
/* 360 */ 183, 89, 34, 34, 774, 182, 131, 130, 129, 34, /* 360 */ 185, 183, 679, 34, 61, 34, 182, 131, 130, 129,
/* 370 */ 34, 34, 1081, 28, 241, 77, 239, 1106, 303, 302, /* 370 */ 384, 387, 526, 383, 5, 37, 168, 386, 242, 243,
/* 380 */ 247, 700, 244, 701, 310, 309, 708, 304, 305, 875, /* 380 */ 525, 167, 101, 96, 100, 17, 106, 16, 105, 75,
/* 390 */ 306, 975, 975, 178, 975, 13, 3, 179, 777, 93, /* 390 */ 307, 306, 24, 305, 463, 463, 15, 463, 14, 304,
/* 400 */ 90, 142, 140, 139, 307, 311, 1098, 64, 975, 975, /* 400 */ 234, 25, 94, 463, 463, 233, 401, 220, 64, 463,
/* 410 */ 715, 312, 313, 317, 8, 975, 975, 975, 744, 745, /* 410 */ 379, 463, 146, 79, 35, 526, 82, 3, 179, 365,
/* 420 */ 697, 79, 80, 25, 24, 735, 24, 765, 262, 262, /* 420 */ 89, 262, 347, 525, 41, 482, 366, 335, 502, 178,
/* 430 */ 67, 70, 35, 35, 64, 92, 64, 32, 125, 124, /* 430 */ 362, 115, 260, 34, 77, 246, 325, 416, 151, 357,
/* 440 */ 289, 736, 799, 213, 780, 782, 106, 17, 105, 16, /* 440 */ 237, 299, 151, 357, 413, 350, 235, 224, 500, 195,
/* 450 */ 682, 286, 684, 288, 683, 698, 19, 699, 18, 112, /* 450 */ 413, 413, 218, 339, 499, 222, 455, 454, 498, 221,
/* 460 */ 73, 111, 671, 766, 21, 214, 20, 197, 198, 200, /* 460 */ 377, 497, 496, 495, 494, 484, 480, 479, 478, 477,
/* 470 */ 194, 201, 202, 71, 68, 208, 1046, 209, 207, 192, /* 470 */ 476, 464, 475, 474, 473, 35, 28, 467, 469, 470,
/* 480 */ 206, 196, 1045, 231, 1042, 1041, 991, 256, 232, 316, /* 480 */ 466, 110, 108, 104, 102, 99, 66, 65, 298, 441,
/* 490 */ 143, 44, 998, 1028, 1009, 1006, 1007, 1011, 263, 145, /* 490 */ 442, 440, 439, 438, 437, 95, 27, 93, 287, 436,
/* 500 */ 973, 141, 267, 149, 272, 1027, 162, 163, 223, 726, /* 500 */ 26, 285, 12, 400, 7, 11, 376, 10, 31, 88,
/* 510 */ 269, 276, 155, 152, 971, 164, 165, 886, 988, 291, /* 510 */ 352, 30, 150, 370, 367, 225, 274, 86, 148, 364,
/* 520 */ 42, 190, 38, 300, 882, 72, 301, 63, 69, 153, /* 520 */ 85, 84, 363, 147, 264, 257, 345, 361, 358, 29,
/* 530 */ 1105, 281, 154, 103, 1104, 277, 279, 156, 275, 157, /* 530 */ 9, 346, 81, 344, 253, 343, 250, 342, 2, 141,
/* 540 */ 273, 271, 1101, 169, 308, 1097, 109, 1096, 268, 1093, /* 540 */ 262, 252, 4, 249, 524, 523, 504, 135, 518, 503,
/* 550 */ 170, 904, 39, 36, 43, 161, 191, 871, 119, 869, /* 550 */ 483, 134, 516, 336, 133, 132, 326, 509, 324, 176,
/* 560 */ 121, 122, 867, 866, 248, 181, 864, 863, 862, 45, /* 560 */ 177, 323, 322, 321, 320, 319, 175, 114, 318, 173,
/* 570 */ 861, 860, 859, 184, 186, 856, 854, 852, 850, 188, /* 570 */ 211, 174, 210, 98, 172, 299, 171, 420, 471, 290,
/* 580 */ 847, 189, 326, 261, 78, 83, 114, 270, 1029, 318, /* 580 */ 97, 45, 161, 158, 156, 268, 153, 69, 160, 276,
/* 590 */ 319, 320, 321, 322, 323, 217, 238, 290, 324, 336, /* 590 */ 269, 829, 238, 159, 157, 217, 372, 270, 83, 78,
/* 600 */ 824, 210, 249, 250, 97, 98, 211, 823, 252, 253, /* 600 */ 261, 829, 829, 271, 829, 829, 273, 829, 829, 829,
/* 610 */ 822, 257, 805, 804, 262, 264, 9, 285, 177, 172, /* 610 */ 829, 829, 829, 275, 829, 277, 368, 829, 155, 281,
/* 620 */ 905, 175, 173, 171, 132, 865, 174, 176, 133, 858, /* 620 */ 154, 279, 189, 63, 527, 152, 162, 72, 406, 829,
/* 630 */ 4, 857, 942, 134, 135, 703, 906, 849, 848, 81, /* 630 */ 188, 522, 521, 520, 829, 519, 829, 186, 223, 184,
/* 640 */ 2, 158, 29, 159, 160, 84, 148, 728, 147, 225, /* 640 */ 267, 515, 829, 514, 513, 829, 829, 512, 375, 829,
/* 650 */ 731, 954, 85, 30, 733, 86, 274, 10, 737, 150, /* 650 */ 829, 371, 829, 829, 829, 829, 829, 829, 829, 829,
/* 660 */ 31, 781, 11, 95, 7, 12, 26, 783, 27, 635, /* 660 */ 829, 829, 829, 829, 829, 407, 263, 325, 829, 829,
/* 670 */ 287, 631, 629, 93, 628, 627, 624, 594, 298, 99, /* 670 */ 356, 829, 829, 829, 829, 316, 829, 829, 829, 829,
/* 680 */ 65, 35, 674, 102, 66, 673, 104, 108, 670, 616, /* 680 */ 829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
/* 690 */ 110, 614, 606, 612, 608, 610, 604, 602, 638, 637, /* 690 */ 44, 829, 511, 510, 181, 248, 508, 507, 122, 121,
/* 700 */ 636, 634, 633, 632, 630, 626, 625, 180, 592, 559, /* 700 */ 506, 829, 119, 505, 191, 43, 36, 829, 829, 39,
/* 710 */ 557, 828, 827, 827, 827, 827, 827, 827, 827, 827, /* 710 */ 472, 170, 462, 461, 109, 460, 308, 169, 448, 447,
/* 720 */ 827, 827, 827, 137, 138, /* 720 */ 103, 829, 829, 829, 829, 829, 446, 301, 444, 300,
/* 730 */ 38, 190, 42, 291, 419, 165, 164, 829, 411, 163,
/* 740 */ 272, 149, 145, 359, 355, 354, 353, 351, 143, 256,
/* 750 */ 829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
/* 760 */ 829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
/* 770 */ 829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
/* 780 */ 829, 829, 829, 829, 829, 829, 829, 232, 405, 404,
/* 790 */ 231, 403, 402, 829, 829, 829, 829, 829, 829, 829,
/* 800 */ 829, 829, 829, 449, 445, 414, 829, 829, 829, 829,
/* 810 */ 829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
/* 820 */ 829, 829, 829, 196, 206, 192, 207, 209, 208, 202,
/* 830 */ 201, 194, 200, 198, 197, 214, 213, 382, 381, 380,
/* 840 */ 199, 193, 22,
}; };
static const YYCODETYPE yy_lookahead[] = { static const YYCODETYPE yy_lookahead[] = {
/* 0 */ 236, 1, 236, 193, 240, 193, 240, 1, 257, 9, /* 0 */ 1, 33, 34, 76, 77, 37, 38, 39, 9, 62,
/* 10 */ 0, 190, 191, 13, 14, 9, 16, 17, 267, 268, /* 10 */ 63, 64, 13, 14, 105, 16, 17, 108, 0, 20,
/* 20 */ 20, 21, 193, 23, 24, 25, 26, 27, 28, 192, /* 20 */ 21, 59, 23, 24, 25, 26, 27, 28, 65, 66,
/* 30 */ 193, 5, 236, 33, 34, 257, 240, 37, 38, 39, /* 30 */ 67, 60, 33, 34, 190, 191, 37, 38, 39, 13,
/* 40 */ 13, 14, 193, 16, 17, 267, 268, 20, 21, 1, /* 40 */ 14, 37, 16, 17, 198, 88, 20, 21, 202, 23,
/* 50 */ 23, 24, 25, 26, 27, 28, 193, 9, 229, 238, /* 50 */ 24, 25, 26, 27, 28, 193, 5, 105, 7, 33,
/* 60 */ 33, 34, 60, 193, 37, 38, 39, 14, 258, 16, /* 60 */ 34, 109, 110, 37, 38, 39, 13, 14, 68, 16,
/* 70 */ 17, 259, 260, 20, 21, 254, 23, 24, 25, 26, /* 70 */ 17, 88, 193, 20, 21, 136, 23, 24, 25, 26,
/* 80 */ 27, 28, 79, 199, 235, 193, 33, 34, 239, 79, /* 80 */ 27, 28, 238, 5, 145, 146, 33, 34, 131, 106,
/* 90 */ 37, 38, 39, 45, 46, 47, 48, 49, 50, 51, /* 90 */ 37, 38, 39, 13, 14, 193, 16, 17, 254, 193,
/* 100 */ 52, 53, 54, 55, 56, 57, 58, 105, 199, 61, /* 100 */ 20, 21, 1, 23, 24, 25, 26, 27, 28, 110,
/* 110 */ 110, 13, 14, 105, 16, 17, 232, 257, 20, 21, /* 110 */ 9, 33, 34, 33, 34, 88, 237, 37, 38, 39,
/* 120 */ 112, 23, 24, 25, 26, 27, 28, 264, 268, 266, /* 120 */ 116, 88, 25, 26, 27, 28, 264, 139, 266, 141,
/* 130 */ 81, 33, 34, 106, 264, 37, 38, 39, 13, 14, /* 130 */ 33, 34, 106, 106, 37, 38, 39, 235, 138, 106,
/* 140 */ 257, 16, 17, 234, 238, 20, 21, 88, 23, 24, /* 140 */ 140, 239, 142, 143, 199, 88, 45, 46, 47, 48,
/* 150 */ 25, 26, 27, 28, 262, 257, 264, 198, 33, 34, /* 150 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
/* 160 */ 254, 202, 37, 38, 39, 106, 89, 90, 91, 92, /* 160 */ 88, 14, 61, 16, 17, 259, 260, 20, 21, 118,
/* 170 */ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, /* 170 */ 23, 24, 25, 26, 27, 28, 231, 232, 233, 234,
/* 180 */ 103, 213, 214, 215, 216, 217, 218, 219, 220, 221, /* 180 */ 33, 34, 68, 60, 37, 38, 39, 16, 17, 117,
/* 190 */ 222, 223, 224, 225, 226, 227, 16, 17, 88, 238, /* 190 */ 133, 20, 21, 80, 23, 24, 25, 26, 27, 28,
/* 200 */ 20, 21, 257, 23, 24, 25, 26, 27, 28, 37, /* 200 */ 37, 38, 39, 193, 33, 34, 200, 201, 37, 38,
/* 210 */ 38, 39, 44, 33, 34, 254, 106, 37, 38, 39, /* 210 */ 39, 213, 214, 215, 216, 217, 218, 219, 220, 221,
/* 220 */ 1, 2, 193, 198, 5, 76, 7, 202, 9, 61, /* 220 */ 222, 223, 224, 225, 226, 227, 1, 2, 105, 5,
/* 230 */ 81, 1, 2, 211, 212, 5, 68, 7, 5, 9, /* 230 */ 5, 7, 7, 193, 9, 126, 127, 89, 90, 91,
/* 240 */ 7, 73, 74, 75, 65, 66, 67, 139, 89, 141, /* 240 */ 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
/* 250 */ 91, 92, 33, 34, 193, 96, 37, 98, 99, 100, /* 250 */ 102, 103, 138, 44, 140, 88, 142, 143, 33, 34,
/* 260 */ 240, 102, 103, 33, 34, 213, 237, 215, 216, 1, /* 260 */ 1, 2, 37, 88, 5, 105, 7, 107, 9, 139,
/* 270 */ 257, 193, 220, 105, 222, 223, 224, 9, 226, 227, /* 270 */ 61, 141, 262, 106, 264, 235, 139, 68, 141, 239,
/* 280 */ 112, 25, 26, 27, 28, 193, 5, 136, 7, 33, /* 280 */ 106, 193, 73, 74, 75, 88, 21, 213, 114, 215,
/* 290 */ 34, 200, 201, 37, 38, 39, 145, 146, 193, 62, /* 290 */ 216, 198, 33, 34, 220, 202, 222, 223, 224, 193,
/* 300 */ 63, 64, 257, 135, 68, 137, 69, 70, 71, 72, /* 300 */ 226, 227, 89, 106, 91, 92, 5, 257, 7, 96,
/* 310 */ 68, 2, 144, 235, 5, 78, 7, 239, 9, 62, /* 310 */ 15, 98, 99, 100, 105, 102, 103, 267, 268, 5,
/* 320 */ 63, 64, 199, 5, 105, 264, 69, 70, 71, 72, /* 320 */ 1, 7, 113, 235, 62, 63, 64, 239, 257, 21,
/* 330 */ 111, 239, 37, 33, 34, 105, 117, 37, 38, 39, /* 330 */ 105, 69, 70, 71, 72, 5, 111, 112, 267, 268,
/* 340 */ 235, 111, 33, 34, 239, 193, 193, 117, 193, 15, /* 340 */ 78, 235, 118, 118, 135, 239, 137, 2, 193, 193,
/* 350 */ 117, 33, 34, 134, 231, 232, 233, 234, 62, 63, /* 350 */ 5, 193, 7, 144, 9, 88, 37, 193, 193, 62,
/* 360 */ 64, 241, 193, 193, 134, 69, 70, 71, 72, 193, /* 360 */ 63, 64, 0, 193, 105, 193, 69, 70, 71, 72,
/* 370 */ 193, 193, 257, 105, 138, 255, 140, 240, 142, 143, /* 370 */ 111, 112, 1, 106, 62, 63, 64, 118, 33, 34,
/* 380 */ 138, 5, 140, 7, 142, 143, 88, 235, 235, 198, /* 380 */ 9, 69, 70, 71, 72, 139, 139, 141, 141, 199,
/* 390 */ 235, 239, 239, 202, 239, 105, 196, 197, 117, 109, /* 390 */ 235, 235, 88, 235, 239, 239, 139, 239, 141, 235,
/* 400 */ 110, 62, 63, 64, 235, 235, 240, 88, 239, 239, /* 400 */ 235, 88, 199, 239, 239, 235, 111, 235, 88, 239,
/* 410 */ 115, 235, 235, 235, 116, 239, 239, 239, 125, 126, /* 410 */ 106, 239, 88, 106, 88, 1, 105, 196, 197, 106,
/* 420 */ 111, 106, 106, 88, 88, 106, 88, 1, 113, 113, /* 420 */ 241, 114, 232, 9, 113, 198, 106, 211, 212, 202,
/* 430 */ 88, 88, 88, 88, 88, 88, 88, 105, 76, 77, /* 430 */ 106, 76, 106, 193, 255, 193, 81, 234, 193, 238,
/* 440 */ 108, 106, 106, 257, 106, 111, 139, 139, 141, 141, /* 440 */ 236, 79, 193, 238, 240, 193, 236, 236, 5, 257,
/* 450 */ 106, 106, 106, 106, 106, 5, 139, 7, 141, 139, /* 450 */ 240, 240, 192, 193, 5, 254, 111, 112, 5, 254,
/* 460 */ 105, 141, 107, 37, 139, 257, 141, 257, 257, 257, /* 460 */ 268, 5, 5, 5, 5, 5, 5, 5, 5, 5,
/* 470 */ 257, 257, 257, 130, 132, 257, 230, 257, 257, 257, /* 470 */ 5, 229, 5, 5, 5, 88, 105, 5, 106, 239,
/* 480 */ 257, 257, 230, 230, 230, 230, 238, 193, 230, 230, /* 480 */ 5, 141, 141, 141, 141, 76, 16, 16, 15, 5,
/* 490 */ 193, 256, 193, 265, 193, 193, 193, 193, 238, 193, /* 490 */ 80, 5, 5, 5, 5, 76, 105, 109, 108, 9,
/* 500 */ 238, 60, 261, 193, 193, 265, 242, 193, 261, 117, /* 500 */ 105, 108, 105, 111, 105, 125, 106, 125, 88, 264,
/* 510 */ 261, 261, 249, 252, 193, 193, 193, 193, 253, 193, /* 510 */ 258, 88, 105, 264, 106, 1, 105, 105, 88, 106,
/* 520 */ 193, 193, 193, 193, 193, 129, 193, 128, 131, 251, /* 520 */ 105, 88, 106, 105, 88, 136, 91, 106, 106, 105,
/* 530 */ 193, 123, 250, 193, 193, 122, 127, 248, 121, 247, /* 530 */ 105, 90, 115, 5, 5, 5, 5, 5, 200, 60,
/* 540 */ 120, 119, 193, 193, 193, 193, 193, 193, 118, 193, /* 540 */ 114, 147, 196, 147, 194, 194, 212, 195, 194, 5,
/* 550 */ 193, 193, 193, 193, 193, 243, 193, 193, 193, 193, /* 550 */ 228, 195, 194, 79, 195, 195, 104, 194, 82, 206,
/* 560 */ 193, 193, 193, 193, 193, 193, 193, 193, 193, 133, /* 560 */ 203, 84, 54, 85, 83, 50, 205, 87, 86, 204,
/* 570 */ 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, /* 570 */ 194, 207, 194, 199, 208, 79, 209, 228, 210, 194,
/* 580 */ 193, 193, 104, 194, 194, 194, 87, 194, 194, 86, /* 580 */ 199, 134, 243, 246, 248, 119, 251, 132, 244, 261,
/* 590 */ 50, 83, 85, 54, 84, 194, 194, 194, 82, 79, /* 590 */ 261, 269, 194, 245, 247, 194, 194, 194, 194, 194,
/* 600 */ 5, 194, 147, 5, 199, 199, 194, 5, 147, 5, /* 600 */ 194, 269, 269, 120, 269, 269, 121, 269, 269, 269,
/* 610 */ 5, 136, 91, 90, 113, 88, 105, 108, 203, 208, /* 610 */ 269, 269, 269, 122, 269, 123, 118, 269, 249, 124,
/* 620 */ 210, 205, 204, 209, 195, 194, 207, 206, 195, 194, /* 620 */ 250, 128, 193, 129, 193, 252, 242, 130, 253, 269,
/* 630 */ 196, 194, 228, 195, 195, 106, 212, 194, 194, 114, /* 630 */ 193, 193, 193, 193, 269, 193, 269, 193, 261, 193,
/* 640 */ 200, 246, 105, 245, 244, 88, 88, 106, 105, 1, /* 640 */ 261, 193, 269, 193, 193, 269, 269, 193, 265, 269,
/* 650 */ 106, 228, 105, 88, 106, 105, 105, 124, 106, 105, /* 650 */ 269, 265, 269, 269, 269, 269, 269, 269, 269, 269,
/* 660 */ 88, 106, 124, 76, 105, 105, 105, 111, 105, 9, /* 660 */ 269, 269, 269, 269, 269, 238, 238, 81, 269, 269,
/* 670 */ 108, 5, 5, 109, 5, 5, 5, 80, 15, 76, /* 670 */ 238, 269, 269, 269, 269, 230, 269, 269, 269, 269,
/* 680 */ 16, 88, 5, 141, 16, 5, 141, 141, 106, 5, /* 680 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 690 */ 141, 5, 5, 5, 5, 5, 5, 5, 5, 5, /* 690 */ 256, 269, 193, 193, 193, 193, 193, 193, 193, 193,
/* 700 */ 5, 5, 5, 5, 5, 5, 5, 88, 80, 60, /* 700 */ 193, 269, 193, 193, 193, 193, 193, 269, 269, 193,
/* 710 */ 59, 0, 269, 269, 269, 269, 269, 269, 269, 269, /* 710 */ 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
/* 720 */ 269, 269, 269, 21, 21, 269, 269, 269, 269, 269, /* 720 */ 193, 269, 269, 269, 269, 269, 193, 193, 193, 193,
/* 730 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 730 */ 193, 193, 193, 193, 193, 193, 193, 269, 193, 193,
/* 740 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 740 */ 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
/* 750 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 750 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 760 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 760 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 770 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 770 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 780 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 780 */ 269, 269, 269, 269, 269, 269, 269, 230, 230, 230,
/* 790 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 790 */ 230, 230, 230, 269, 269, 269, 269, 269, 269, 269,
/* 800 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 800 */ 269, 269, 269, 240, 240, 240, 269, 269, 269, 269,
/* 810 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 810 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 820 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 820 */ 269, 269, 269, 257, 257, 257, 257, 257, 257, 257,
/* 830 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 830 */ 257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
/* 840 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, /* 840 */ 257, 257, 257,
/* 850 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 860 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 870 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 880 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 890 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 900 */ 269, 269, 269, 269, 269, 269, 269, 269, 269, 269,
/* 910 */ 269, 269, 269, 269,
}; };
#define YY_SHIFT_USE_DFLT (-92)
#define YY_SHIFT_COUNT (341) #define YY_SHIFT_COUNT (341)
#define YY_SHIFT_MIN (0) #define YY_SHIFT_MIN (-91)
#define YY_SHIFT_MAX (711) #define YY_SHIFT_MAX (586)
static const unsigned short int yy_shift_ofst[] = { static const short yy_shift_ofst[] = {
/* 0 */ 168, 77, 77, 159, 159, 3, 219, 230, 268, 6, /* 0 */ 209, 148, 148, 213, 213, 496, 225, 259, 371, 414,
/* 10 */ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 10 */ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 20 */ 6, 6, 0, 48, 230, 309, 309, 309, 8, 8, /* 20 */ 414, 414, -1, 101, 259, 345, 345, 345, 311, 311,
/* 30 */ 6, 6, 6, 10, 6, 6, 149, 3, 49, 49, /* 30 */ 414, 414, 414, 362, 414, 414, 355, 496, 586, 586,
/* 40 */ 26, 725, 725, 725, 230, 230, 230, 230, 230, 230, /* 40 */ 544, -92, -92, -92, 259, 259, 259, 259, 259, 259,
/* 50 */ 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, /* 50 */ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
/* 60 */ 230, 230, 230, 230, 309, 309, 309, 318, 318, 318, /* 60 */ 259, 259, 259, 259, 345, 345, 345, 78, 78, 78,
/* 70 */ 318, 318, 318, 318, 6, 6, 6, 295, 6, 6, /* 70 */ 78, 78, 78, 78, 414, 414, 414, 4, 414, 414,
/* 80 */ 6, 8, 8, 6, 6, 6, 6, 293, 293, 298, /* 80 */ 414, 311, 311, 414, 414, 414, 414, 109, 109, 72,
/* 90 */ 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 90 */ 311, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 100 */ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 100 */ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 110 */ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 110 */ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 120 */ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 120 */ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 130 */ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, /* 130 */ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
/* 140 */ 6, 6, 6, 441, 441, 441, 392, 392, 392, 441, /* 140 */ 414, 414, 414, 479, 479, 479, 498, 498, 498, 479,
/* 150 */ 392, 441, 396, 397, 399, 408, 409, 413, 417, 420, /* 150 */ 498, 479, 497, 455, 494, 495, 493, 492, 491, 485,
/* 160 */ 422, 430, 436, 441, 441, 441, 478, 3, 3, 441, /* 160 */ 483, 466, 447, 479, 479, 479, 452, 496, 496, 479,
/* 170 */ 441, 499, 503, 540, 508, 507, 539, 510, 516, 478, /* 170 */ 479, 480, 482, 515, 481, 478, 508, 477, 476, 452,
/* 180 */ 26, 441, 520, 520, 441, 520, 441, 520, 441, 441, /* 180 */ 544, 479, 474, 474, 479, 474, 479, 474, 479, 479,
/* 190 */ 725, 725, 27, 98, 125, 98, 98, 53, 180, 256, /* 190 */ -92, -92, 26, 53, 80, 53, 53, 147, 171, 97,
/* 200 */ 256, 256, 256, 237, 257, 296, 300, 300, 300, 300, /* 200 */ 97, 97, 97, 262, 312, 297, -32, -32, -32, -32,
/* 210 */ 236, 242, 151, 172, 172, 233, 281, 290, 179, 339, /* 210 */ 114, 0, -61, 163, 163, 224, 51, -48, -37, -53,
/* 220 */ 59, 315, 316, 110, 319, 335, 336, 338, 426, 2, /* 220 */ 326, 307, 174, 324, 320, 313, 304, 267, 319, 123,
/* 230 */ 334, 342, 343, 344, 345, 346, 347, 348, 332, 108, /* 230 */ 295, 57, -43, 197, 167, 33, 27, -17, -91, 257,
/* 240 */ 307, 308, 376, 450, 317, 320, 355, 325, 362, 595, /* 240 */ 247, 246, 314, 301, 137, 130, 160, -12, -73, 532,
/* 250 */ 455, 598, 602, 461, 604, 605, 521, 523, 475, 501, /* 250 */ 396, 531, 530, 394, 529, 528, 435, 441, 389, 426,
/* 260 */ 509, 511, 525, 529, 537, 527, 557, 541, 543, 544, /* 260 */ 393, 425, 417, 422, 424, 436, 433, 421, 418, 416,
/* 270 */ 558, 547, 548, 550, 648, 551, 552, 554, 565, 533, /* 270 */ 430, 415, 413, 412, 514, 411, 408, 407, 423, 382,
/* 280 */ 572, 538, 555, 559, 556, 560, 509, 561, 562, 563, /* 280 */ 420, 380, 400, 399, 392, 397, 393, 395, 390, 391,
/* 290 */ 564, 587, 660, 666, 667, 669, 670, 671, 597, 663, /* 290 */ 388, 419, 490, 489, 488, 487, 486, 484, 410, 473,
/* 300 */ 603, 664, 542, 545, 593, 593, 593, 593, 668, 546, /* 300 */ 409, 471, 343, 342, 387, 387, 387, 387, 470, 341,
/* 310 */ 549, 593, 593, 593, 677, 680, 582, 593, 684, 686, /* 310 */ 340, 387, 387, 387, 475, 472, 372, 387, 469, 468,
/* 320 */ 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, /* 320 */ 467, 465, 464, 463, 462, 461, 460, 459, 458, 457,
/* 330 */ 697, 698, 699, 700, 701, 619, 628, 702, 703, 649, /* 330 */ 456, 453, 449, 443, 330, 175, 113, 308, 265, -29,
/* 340 */ 651, 711, /* 340 */ -38, 18,
}; };
#define YY_REDUCE_USE_DFLT (-157)
#define YY_REDUCE_COUNT (191) #define YY_REDUCE_COUNT (191)
#define YY_REDUCE_MIN (-249) #define YY_REDUCE_MIN (-156)
#define YY_REDUCE_MAX (444) #define YY_REDUCE_MAX (585)
static const short yy_reduce_ofst[] = { static const short yy_reduce_ofst[] = {
/* 0 */ -179, -32, -32, 52, 52, 123, -249, -222, -188, -151, /* 0 */ -156, -2, -2, 74, 74, -55, 71, 50, -94, 172,
/* 10 */ -137, -108, 78, 105, 152, 153, 155, 169, 170, 176, /* 10 */ -138, 10, 170, 165, 164, 158, 156, 155, 106, 88,
/* 20 */ 177, 178, -190, -163, -140, -236, -234, -204, -94, -39, /* 20 */ 40, -98, 252, 260, 192, 211, 210, 204, 205, 201,
/* 30 */ -130, 61, 29, -91, -171, 92, -41, -116, 25, 191, /* 30 */ 249, 245, -121, 203, 242, 240, 227, 190, 93, -154,
/* 40 */ 22, 120, 91, 200, -117, -102, -55, 13, 45, 115, /* 40 */ 216, 179, 6, 221, 585, 584, 583, 582, 581, 580,
/* 50 */ 186, 208, 210, 211, 212, 213, 214, 215, 218, 220, /* 50 */ 579, 578, 577, 576, 575, 574, 573, 572, 571, 570,
/* 60 */ 221, 222, 223, 224, 20, 137, 166, 246, 252, 253, /* 60 */ 569, 568, 567, 566, 565, 564, 563, 562, 561, 560,
/* 70 */ 254, 255, 258, 259, 294, 297, 299, 235, 301, 302, /* 70 */ 559, 558, 557, 445, 556, 555, 554, 434, 553, 552,
/* 80 */ 303, 248, 260, 304, 306, 310, 311, 228, 240, 264, /* 80 */ 551, 432, 428, 550, 549, 548, 547, 386, 383, 384,
/* 90 */ 262, 314, 321, 322, 323, 324, 326, 327, 328, 329, /* 90 */ 427, 546, 545, 543, 542, 541, 540, 539, 538, 537,
/* 100 */ 330, 331, 333, 337, 340, 341, 349, 350, 351, 352, /* 100 */ 536, 535, 534, 533, 527, 526, 525, 524, 523, 522,
/* 110 */ 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, /* 110 */ 521, 520, 519, 518, 517, 516, 513, 512, 511, 510,
/* 120 */ 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, /* 120 */ 509, 507, 506, 505, 504, 503, 502, 501, 500, 499,
/* 130 */ 375, 377, 378, 379, 380, 381, 382, 383, 384, 385, /* 130 */ 454, 451, 450, 448, 446, 444, 442, 440, 439, 438,
/* 140 */ 386, 387, 388, 389, 390, 391, 241, 247, 249, 393, /* 140 */ 437, 431, 429, 406, 405, 404, 379, 377, 329, 403,
/* 150 */ 250, 394, 265, 261, 278, 282, 263, 289, 292, 395, /* 150 */ 328, 402, 375, 373, 335, 370, 369, 336, 347, 337,
/* 160 */ 398, 400, 312, 401, 402, 403, 404, 405, 406, 407, /* 160 */ 348, 344, 339, 401, 398, 385, 349, 381, 374, 378,
/* 170 */ 412, 410, 414, 411, 418, 419, 416, 421, 415, 423, /* 170 */ 376, 368, 367, 366, 365, 364, 361, 353, 357, 322,
/* 180 */ 424, 431, 429, 433, 435, 438, 437, 439, 443, 444, /* 180 */ 334, 363, 360, 359, 358, 356, 354, 352, 351, 350,
/* 190 */ 440, 434, /* 190 */ 338, 346,
}; };
static const YYACTIONTYPE yy_default[] = { static const YYACTIONTYPE yy_default[] = {
/* 0 */ 825, 941, 884, 953, 872, 881, 1089, 1089, 825, 825, /* 0 */ 827, 656, 599, 668, 587, 596, 805, 805, 827, 827,
/* 10 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 10 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 20 */ 825, 825, 1000, 844, 1089, 825, 825, 825, 825, 825, /* 20 */ 827, 827, 716, 559, 805, 827, 827, 827, 827, 827,
/* 30 */ 825, 825, 825, 881, 825, 825, 887, 881, 887, 887, /* 30 */ 827, 827, 827, 596, 827, 827, 602, 596, 602, 602,
/* 40 */ 825, 995, 925, 943, 825, 825, 825, 825, 825, 825, /* 40 */ 827, 711, 640, 658, 827, 827, 827, 827, 827, 827,
/* 50 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 50 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 60 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 60 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 70 */ 825, 825, 825, 825, 825, 825, 825, 1002, 1008, 1005, /* 70 */ 827, 827, 827, 827, 827, 827, 827, 718, 724, 721,
/* 80 */ 825, 825, 825, 1010, 825, 825, 825, 1032, 1032, 993, /* 80 */ 827, 827, 827, 726, 827, 827, 827, 748, 748, 709,
/* 90 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 90 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 100 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 100 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 110 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 870, /* 110 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 585,
/* 120 */ 825, 868, 825, 825, 825, 825, 825, 825, 825, 825, /* 120 */ 827, 583, 827, 827, 827, 827, 827, 827, 827, 827,
/* 130 */ 825, 825, 825, 825, 825, 825, 855, 825, 825, 825, /* 130 */ 827, 827, 827, 827, 827, 827, 570, 827, 827, 827,
/* 140 */ 825, 825, 825, 846, 846, 846, 825, 825, 825, 846, /* 140 */ 827, 827, 827, 561, 561, 561, 827, 827, 827, 561,
/* 150 */ 825, 846, 1039, 1043, 1037, 1025, 1033, 1024, 1020, 1018, /* 150 */ 827, 561, 755, 759, 753, 741, 749, 740, 736, 734,
/* 160 */ 1016, 1015, 1047, 846, 846, 846, 885, 881, 881, 846, /* 160 */ 732, 731, 763, 561, 561, 561, 600, 596, 596, 561,
/* 170 */ 846, 903, 901, 899, 891, 897, 893, 895, 889, 873, /* 170 */ 561, 618, 616, 614, 606, 612, 608, 610, 604, 588,
/* 180 */ 825, 846, 879, 879, 846, 879, 846, 879, 846, 846, /* 180 */ 827, 561, 594, 594, 561, 594, 561, 594, 561, 561,
/* 190 */ 925, 943, 825, 1048, 825, 1088, 1038, 1078, 1077, 1084, /* 190 */ 640, 658, 827, 764, 827, 804, 754, 794, 793, 800,
/* 200 */ 1076, 1075, 1074, 825, 825, 825, 1070, 1071, 1073, 1072, /* 200 */ 792, 791, 790, 827, 827, 827, 786, 787, 789, 788,
/* 210 */ 825, 825, 825, 1080, 1079, 825, 825, 825, 825, 825, /* 210 */ 827, 827, 827, 796, 795, 827, 827, 827, 827, 827,
/* 220 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 1050, /* 220 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 766,
/* 230 */ 825, 1044, 1040, 825, 825, 825, 825, 825, 825, 825, /* 230 */ 827, 760, 756, 827, 827, 827, 827, 827, 827, 827,
/* 240 */ 825, 825, 825, 825, 825, 825, 955, 825, 825, 825, /* 240 */ 827, 827, 827, 827, 827, 827, 670, 827, 827, 827,
/* 250 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 992, /* 250 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 708,
/* 260 */ 825, 825, 825, 825, 825, 1004, 1003, 825, 825, 825, /* 260 */ 827, 827, 827, 827, 827, 720, 719, 827, 827, 827,
/* 270 */ 825, 825, 825, 825, 825, 825, 825, 825, 1034, 825, /* 270 */ 827, 827, 827, 827, 827, 827, 827, 827, 750, 827,
/* 280 */ 1026, 825, 825, 825, 825, 825, 967, 825, 825, 825, /* 280 */ 742, 827, 827, 827, 827, 827, 682, 827, 827, 827,
/* 290 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 290 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 300 */ 825, 825, 825, 825, 1107, 1102, 1103, 1100, 825, 825, /* 300 */ 827, 827, 827, 827, 823, 818, 819, 816, 827, 827,
/* 310 */ 825, 1099, 1094, 1095, 825, 825, 825, 1092, 825, 825, /* 310 */ 827, 815, 810, 811, 827, 827, 827, 808, 827, 827,
/* 320 */ 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, /* 320 */ 827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
/* 330 */ 825, 825, 825, 825, 825, 909, 825, 853, 851, 825, /* 330 */ 827, 827, 827, 827, 827, 624, 827, 568, 566, 827,
/* 340 */ 842, 825, /* 340 */ 557, 827, 826, 825, 824, 807, 806, 678, 717, 713,
/* 350 */ 715, 714, 712, 725, 722, 723, 707, 706, 705, 727,
/* 360 */ 710, 730, 729, 733, 735, 738, 737, 739, 728, 752,
/* 370 */ 751, 744, 745, 747, 746, 743, 783, 802, 803, 801,
/* 380 */ 799, 798, 797, 782, 781, 780, 777, 776, 775, 772,
/* 390 */ 778, 774, 771, 779, 773, 770, 769, 768, 767, 765,
/* 400 */ 785, 784, 762, 761, 758, 757, 704, 688, 683, 680,
/* 410 */ 687, 686, 685, 693, 692, 684, 681, 677, 676, 601,
/* 420 */ 657, 655, 654, 653, 652, 651, 650, 649, 648, 647,
/* 430 */ 646, 645, 644, 643, 642, 641, 636, 632, 630, 629,
/* 440 */ 628, 625, 595, 598, 597, 822, 821, 820, 817, 814,
/* 450 */ 703, 702, 701, 700, 699, 698, 697, 696, 695, 694,
/* 460 */ 813, 812, 809, 690, 691, 672, 675, 674, 673, 671,
/* 470 */ 689, 620, 619, 617, 615, 607, 613, 609, 611, 605,
/* 480 */ 603, 590, 589, 669, 639, 667, 666, 665, 664, 663,
/* 490 */ 662, 661, 660, 659, 638, 637, 635, 634, 633, 631,
/* 500 */ 627, 626, 622, 623, 621, 586, 584, 582, 581, 580,
/* 510 */ 579, 578, 577, 576, 575, 574, 573, 593, 572, 571,
/* 520 */ 569, 567, 565, 564, 563, 592, 591, 562, 560, 558,
/* 530 */ 556, 555, 554, 553, 552, 551, 550, 549, 548, 547,
/* 540 */ 546, 545, 544,
}; };
/********** End of lemon-generated parsing tables *****************************/
/* The next table maps tokens (terminal symbols) into fallback tokens. /* The next table maps tokens into fallback tokens. If a construct
** If a construct like the following: ** like the following:
** **
** %fallback ID X Y Z. ** %fallback ID X Y Z.
** **
...@@ -487,10 +476,6 @@ static const YYACTIONTYPE yy_default[] = { ...@@ -487,10 +476,6 @@ static const YYACTIONTYPE yy_default[] = {
** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** 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 ** but it does not parse, the type of the token is changed to ID and
** the parse is retried before an error is thrown. ** 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 #ifdef YYFALLBACK
static const YYCODETYPE yyFallback[] = { static const YYCODETYPE yyFallback[] = {
...@@ -606,6 +591,7 @@ static const YYCODETYPE yyFallback[] = { ...@@ -606,6 +591,7 @@ static const YYCODETYPE yyFallback[] = {
0, /* USING => nothing */ 0, /* USING => nothing */
0, /* AS => nothing */ 0, /* AS => nothing */
1, /* NULL => ID */ 1, /* NULL => ID */
1, /* NOW => ID */
0, /* SELECT => nothing */ 0, /* SELECT => nothing */
0, /* UNION => nothing */ 0, /* UNION => nothing */
1, /* ALL => ID */ 1, /* ALL => ID */
...@@ -628,7 +614,6 @@ static const YYCODETYPE yyFallback[] = { ...@@ -628,7 +614,6 @@ static const YYCODETYPE yyFallback[] = {
0, /* SLIMIT => nothing */ 0, /* SLIMIT => nothing */
0, /* SOFFSET => nothing */ 0, /* SOFFSET => nothing */
0, /* WHERE => nothing */ 0, /* WHERE => nothing */
1, /* NOW => ID */
0, /* RESET => nothing */ 0, /* RESET => nothing */
0, /* QUERY => nothing */ 0, /* QUERY => nothing */
0, /* SYNCDB => nothing */ 0, /* SYNCDB => nothing */
...@@ -697,13 +682,9 @@ static const YYCODETYPE yyFallback[] = { ...@@ -697,13 +682,9 @@ static const YYCODETYPE yyFallback[] = {
** + The semantic value stored at this level of the stack. This is ** + The semantic value stored at this level of the stack. This is
** the information used by the action routines in the grammar. ** the information used by the action routines in the grammar.
** It is sometimes called the "minor" token. ** 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 { 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 YYCODETYPE major; /* The major token value. This is the code
** number for the token at this stack level */ ** number for the token at this stack level */
YYMINORTYPE minor; /* The user-supplied minor token value. This YYMINORTYPE minor; /* The user-supplied minor token value. This
...@@ -714,21 +695,17 @@ typedef struct yyStackEntry yyStackEntry; ...@@ -714,21 +695,17 @@ typedef struct yyStackEntry yyStackEntry;
/* The state of the parser is completely contained in an instance of /* The state of the parser is completely contained in an instance of
** the following structure */ ** the following structure */
struct yyParser { struct yyParser {
yyStackEntry *yytos; /* Pointer to top element of the stack */ int yyidx; /* Index of top element in stack */
#ifdef YYTRACKMAXSTACKDEPTH #ifdef YYTRACKMAXSTACKDEPTH
int yyhwm; /* High-water mark of the stack */ int yyidxMax; /* Maximum value of yyidx */
#endif #endif
#ifndef YYNOERRORRECOVERY
int yyerrcnt; /* Shifts left before out of the error */ int yyerrcnt; /* Shifts left before out of the error */
#endif
ParseARG_SDECL /* A place to hold %extra_argument */ ParseARG_SDECL /* A place to hold %extra_argument */
#if YYSTACKDEPTH<=0 #if YYSTACKDEPTH<=0
int yystksz; /* Current side of the stack */ int yystksz; /* Current side of the stack */
yyStackEntry *yystack; /* The parser's stack */ yyStackEntry *yystack; /* The parser's stack */
yyStackEntry yystk0; /* First stack entry */
#else #else
yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */
yyStackEntry *yystackEnd; /* Last entry in the stack */
#endif #endif
}; };
typedef struct yyParser yyParser; typedef struct yyParser yyParser;
...@@ -765,281 +742,80 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ ...@@ -765,281 +742,80 @@ void ParseTrace(FILE *TraceFILE, char *zTracePrompt){
} }
#endif /* NDEBUG */ #endif /* NDEBUG */
#if defined(YYCOVERAGE) || !defined(NDEBUG) #ifndef NDEBUG
/* For tracing shifts, the names of all terminals and nonterminals /* For tracing shifts, the names of all terminals and nonterminals
** are required. The following table supplies these names */ ** are required. The following table supplies these names */
static const char *const yyTokenName[] = { static const char *const yyTokenName[] = {
/* 0 */ "$", "$", "ID", "BOOL", "TINYINT",
/* 1 */ "ID", "SMALLINT", "INTEGER", "BIGINT", "FLOAT",
/* 2 */ "BOOL", "DOUBLE", "STRING", "TIMESTAMP", "BINARY",
/* 3 */ "TINYINT", "NCHAR", "OR", "AND", "NOT",
/* 4 */ "SMALLINT", "EQ", "NE", "ISNULL", "NOTNULL",
/* 5 */ "INTEGER", "IS", "LIKE", "GLOB", "BETWEEN",
/* 6 */ "BIGINT", "IN", "GT", "GE", "LT",
/* 7 */ "FLOAT", "LE", "BITAND", "BITOR", "LSHIFT",
/* 8 */ "DOUBLE", "RSHIFT", "PLUS", "MINUS", "DIVIDE",
/* 9 */ "STRING", "TIMES", "STAR", "SLASH", "REM",
/* 10 */ "TIMESTAMP", "CONCAT", "UMINUS", "UPLUS", "BITNOT",
/* 11 */ "BINARY", "SHOW", "DATABASES", "TOPICS", "MNODES",
/* 12 */ "NCHAR", "DNODES", "ACCOUNTS", "USERS", "MODULES",
/* 13 */ "OR", "QUERIES", "CONNECTIONS", "STREAMS", "VARIABLES",
/* 14 */ "AND", "SCORES", "GRANTS", "VNODES", "IPTOKEN",
/* 15 */ "NOT", "DOT", "CREATE", "TABLE", "STABLE",
/* 16 */ "EQ", "DATABASE", "TABLES", "STABLES", "VGROUPS",
/* 17 */ "NE", "DROP", "TOPIC", "DNODE", "USER",
/* 18 */ "ISNULL", "ACCOUNT", "USE", "DESCRIBE", "ALTER",
/* 19 */ "NOTNULL", "PASS", "PRIVILEGE", "LOCAL", "IF",
/* 20 */ "IS", "EXISTS", "PPS", "TSERIES", "DBS",
/* 21 */ "LIKE", "STORAGE", "QTIME", "CONNS", "STATE",
/* 22 */ "GLOB", "COMMA", "KEEP", "CACHE", "REPLICA",
/* 23 */ "BETWEEN", "QUORUM", "DAYS", "MINROWS", "MAXROWS",
/* 24 */ "IN", "BLOCKS", "CTIME", "WAL", "FSYNC",
/* 25 */ "GT", "COMP", "PRECISION", "UPDATE", "CACHELAST",
/* 26 */ "GE", "PARTITIONS", "LP", "RP", "UNSIGNED",
/* 27 */ "LT", "TAGS", "USING", "AS", "NULL",
/* 28 */ "LE", "NOW", "SELECT", "UNION", "ALL",
/* 29 */ "BITAND", "DISTINCT", "FROM", "VARIABLE", "INTERVAL",
/* 30 */ "BITOR", "SESSION", "STATE_WINDOW", "FILL", "SLIDING",
/* 31 */ "LSHIFT", "ORDER", "BY", "ASC", "DESC",
/* 32 */ "RSHIFT", "GROUP", "HAVING", "LIMIT", "OFFSET",
/* 33 */ "PLUS", "SLIMIT", "SOFFSET", "WHERE", "RESET",
/* 34 */ "MINUS", "QUERY", "SYNCDB", "ADD", "COLUMN",
/* 35 */ "DIVIDE", "MODIFY", "TAG", "CHANGE", "SET",
/* 36 */ "TIMES", "KILL", "CONNECTION", "STREAM", "COLON",
/* 37 */ "STAR", "ABORT", "AFTER", "ATTACH", "BEFORE",
/* 38 */ "SLASH", "BEGIN", "CASCADE", "CLUSTER", "CONFLICT",
/* 39 */ "REM", "COPY", "DEFERRED", "DELIMITERS", "DETACH",
/* 40 */ "CONCAT", "EACH", "END", "EXPLAIN", "FAIL",
/* 41 */ "UMINUS", "FOR", "IGNORE", "IMMEDIATE", "INITIALLY",
/* 42 */ "UPLUS", "INSTEAD", "MATCH", "KEY", "OF",
/* 43 */ "BITNOT", "RAISE", "REPLACE", "RESTRICT", "ROW",
/* 44 */ "SHOW", "STATEMENT", "TRIGGER", "VIEW", "SEMI",
/* 45 */ "DATABASES", "NONE", "PREV", "LINEAR", "IMPORT",
/* 46 */ "TOPICS", "TBNAME", "JOIN", "INSERT", "INTO",
/* 47 */ "MNODES", "VALUES", "error", "program", "cmd",
/* 48 */ "DNODES", "dbPrefix", "ids", "cpxName", "ifexists",
/* 49 */ "ACCOUNTS", "alter_db_optr", "alter_topic_optr", "acct_optr", "ifnotexists",
/* 50 */ "USERS", "db_optr", "topic_optr", "pps", "tseries",
/* 51 */ "MODULES", "dbs", "streams", "storage", "qtime",
/* 52 */ "QUERIES", "users", "conns", "state", "intitemlist",
/* 53 */ "CONNECTIONS", "intitem", "keep", "cache", "replica",
/* 54 */ "STREAMS", "quorum", "days", "minrows", "maxrows",
/* 55 */ "VARIABLES", "blocks", "ctime", "wal", "fsync",
/* 56 */ "SCORES", "comp", "prec", "update", "cachelast",
/* 57 */ "GRANTS", "partitions", "typename", "signed", "create_table_args",
/* 58 */ "VNODES", "create_stable_args", "create_table_list", "create_from_stable", "columnlist",
/* 59 */ "IPTOKEN", "tagitemlist", "tagNamelist", "select", "column",
/* 60 */ "DOT", "tagitem", "selcollist", "from", "where_opt",
/* 61 */ "CREATE", "interval_opt", "session_option", "windowstate_option", "fill_opt",
/* 62 */ "TABLE", "sliding_opt", "groupby_opt", "orderby_opt", "having_opt",
/* 63 */ "STABLE", "slimit_opt", "limit_opt", "union", "sclp",
/* 64 */ "DATABASE", "distinct", "expr", "as", "tablelist",
/* 65 */ "TABLES", "sub", "tmvar", "sortlist", "sortitem",
/* 66 */ "STABLES", "item", "sortorder", "grouplist", "exprlist",
/* 67 */ "VGROUPS", "expritem",
/* 68 */ "DROP",
/* 69 */ "TOPIC",
/* 70 */ "DNODE",
/* 71 */ "USER",
/* 72 */ "ACCOUNT",
/* 73 */ "USE",
/* 74 */ "DESCRIBE",
/* 75 */ "ALTER",
/* 76 */ "PASS",
/* 77 */ "PRIVILEGE",
/* 78 */ "LOCAL",
/* 79 */ "IF",
/* 80 */ "EXISTS",
/* 81 */ "PPS",
/* 82 */ "TSERIES",
/* 83 */ "DBS",
/* 84 */ "STORAGE",
/* 85 */ "QTIME",
/* 86 */ "CONNS",
/* 87 */ "STATE",
/* 88 */ "COMMA",
/* 89 */ "KEEP",
/* 90 */ "CACHE",
/* 91 */ "REPLICA",
/* 92 */ "QUORUM",
/* 93 */ "DAYS",
/* 94 */ "MINROWS",
/* 95 */ "MAXROWS",
/* 96 */ "BLOCKS",
/* 97 */ "CTIME",
/* 98 */ "WAL",
/* 99 */ "FSYNC",
/* 100 */ "COMP",
/* 101 */ "PRECISION",
/* 102 */ "UPDATE",
/* 103 */ "CACHELAST",
/* 104 */ "PARTITIONS",
/* 105 */ "LP",
/* 106 */ "RP",
/* 107 */ "UNSIGNED",
/* 108 */ "TAGS",
/* 109 */ "USING",
/* 110 */ "AS",
/* 111 */ "NULL",
/* 112 */ "SELECT",
/* 113 */ "UNION",
/* 114 */ "ALL",
/* 115 */ "DISTINCT",
/* 116 */ "FROM",
/* 117 */ "VARIABLE",
/* 118 */ "INTERVAL",
/* 119 */ "SESSION",
/* 120 */ "STATE_WINDOW",
/* 121 */ "FILL",
/* 122 */ "SLIDING",
/* 123 */ "ORDER",
/* 124 */ "BY",
/* 125 */ "ASC",
/* 126 */ "DESC",
/* 127 */ "GROUP",
/* 128 */ "HAVING",
/* 129 */ "LIMIT",
/* 130 */ "OFFSET",
/* 131 */ "SLIMIT",
/* 132 */ "SOFFSET",
/* 133 */ "WHERE",
/* 134 */ "NOW",
/* 135 */ "RESET",
/* 136 */ "QUERY",
/* 137 */ "SYNCDB",
/* 138 */ "ADD",
/* 139 */ "COLUMN",
/* 140 */ "MODIFY",
/* 141 */ "TAG",
/* 142 */ "CHANGE",
/* 143 */ "SET",
/* 144 */ "KILL",
/* 145 */ "CONNECTION",
/* 146 */ "STREAM",
/* 147 */ "COLON",
/* 148 */ "ABORT",
/* 149 */ "AFTER",
/* 150 */ "ATTACH",
/* 151 */ "BEFORE",
/* 152 */ "BEGIN",
/* 153 */ "CASCADE",
/* 154 */ "CLUSTER",
/* 155 */ "CONFLICT",
/* 156 */ "COPY",
/* 157 */ "DEFERRED",
/* 158 */ "DELIMITERS",
/* 159 */ "DETACH",
/* 160 */ "EACH",
/* 161 */ "END",
/* 162 */ "EXPLAIN",
/* 163 */ "FAIL",
/* 164 */ "FOR",
/* 165 */ "IGNORE",
/* 166 */ "IMMEDIATE",
/* 167 */ "INITIALLY",
/* 168 */ "INSTEAD",
/* 169 */ "MATCH",
/* 170 */ "KEY",
/* 171 */ "OF",
/* 172 */ "RAISE",
/* 173 */ "REPLACE",
/* 174 */ "RESTRICT",
/* 175 */ "ROW",
/* 176 */ "STATEMENT",
/* 177 */ "TRIGGER",
/* 178 */ "VIEW",
/* 179 */ "SEMI",
/* 180 */ "NONE",
/* 181 */ "PREV",
/* 182 */ "LINEAR",
/* 183 */ "IMPORT",
/* 184 */ "TBNAME",
/* 185 */ "JOIN",
/* 186 */ "INSERT",
/* 187 */ "INTO",
/* 188 */ "VALUES",
/* 189 */ "error",
/* 190 */ "program",
/* 191 */ "cmd",
/* 192 */ "dbPrefix",
/* 193 */ "ids",
/* 194 */ "cpxName",
/* 195 */ "ifexists",
/* 196 */ "alter_db_optr",
/* 197 */ "alter_topic_optr",
/* 198 */ "acct_optr",
/* 199 */ "ifnotexists",
/* 200 */ "db_optr",
/* 201 */ "topic_optr",
/* 202 */ "pps",
/* 203 */ "tseries",
/* 204 */ "dbs",
/* 205 */ "streams",
/* 206 */ "storage",
/* 207 */ "qtime",
/* 208 */ "users",
/* 209 */ "conns",
/* 210 */ "state",
/* 211 */ "intitemlist",
/* 212 */ "intitem",
/* 213 */ "keep",
/* 214 */ "cache",
/* 215 */ "replica",
/* 216 */ "quorum",
/* 217 */ "days",
/* 218 */ "minrows",
/* 219 */ "maxrows",
/* 220 */ "blocks",
/* 221 */ "ctime",
/* 222 */ "wal",
/* 223 */ "fsync",
/* 224 */ "comp",
/* 225 */ "prec",
/* 226 */ "update",
/* 227 */ "cachelast",
/* 228 */ "partitions",
/* 229 */ "typename",
/* 230 */ "signed",
/* 231 */ "create_table_args",
/* 232 */ "create_stable_args",
/* 233 */ "create_table_list",
/* 234 */ "create_from_stable",
/* 235 */ "columnlist",
/* 236 */ "tagitemlist",
/* 237 */ "tagNamelist",
/* 238 */ "select",
/* 239 */ "column",
/* 240 */ "tagitem",
/* 241 */ "selcollist",
/* 242 */ "from",
/* 243 */ "where_opt",
/* 244 */ "interval_opt",
/* 245 */ "session_option",
/* 246 */ "windowstate_option",
/* 247 */ "fill_opt",
/* 248 */ "sliding_opt",
/* 249 */ "groupby_opt",
/* 250 */ "orderby_opt",
/* 251 */ "having_opt",
/* 252 */ "slimit_opt",
/* 253 */ "limit_opt",
/* 254 */ "union",
/* 255 */ "sclp",
/* 256 */ "distinct",
/* 257 */ "expr",
/* 258 */ "as",
/* 259 */ "tablelist",
/* 260 */ "sub",
/* 261 */ "tmvar",
/* 262 */ "sortlist",
/* 263 */ "sortitem",
/* 264 */ "item",
/* 265 */ "sortorder",
/* 266 */ "grouplist",
/* 267 */ "exprlist",
/* 268 */ "expritem",
}; };
#endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #endif /* NDEBUG */
#ifndef NDEBUG #ifndef NDEBUG
/* For tracing reduce actions, the names of all rules are required. /* For tracing reduce actions, the names of all rules are required.
...@@ -1201,207 +977,161 @@ static const char *const yyRuleName[] = { ...@@ -1201,207 +977,161 @@ static const char *const yyRuleName[] = {
/* 153 */ "tagitem ::= STRING", /* 153 */ "tagitem ::= STRING",
/* 154 */ "tagitem ::= BOOL", /* 154 */ "tagitem ::= BOOL",
/* 155 */ "tagitem ::= NULL", /* 155 */ "tagitem ::= NULL",
/* 156 */ "tagitem ::= MINUS INTEGER", /* 156 */ "tagitem ::= NOW",
/* 157 */ "tagitem ::= MINUS FLOAT", /* 157 */ "tagitem ::= MINUS INTEGER",
/* 158 */ "tagitem ::= PLUS INTEGER", /* 158 */ "tagitem ::= MINUS FLOAT",
/* 159 */ "tagitem ::= PLUS FLOAT", /* 159 */ "tagitem ::= PLUS INTEGER",
/* 160 */ "select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt", /* 160 */ "tagitem ::= PLUS FLOAT",
/* 161 */ "select ::= LP select RP", /* 161 */ "select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt",
/* 162 */ "union ::= select", /* 162 */ "select ::= LP select RP",
/* 163 */ "union ::= union UNION ALL select", /* 163 */ "union ::= select",
/* 164 */ "cmd ::= union", /* 164 */ "union ::= union UNION ALL select",
/* 165 */ "select ::= SELECT selcollist", /* 165 */ "cmd ::= union",
/* 166 */ "sclp ::= selcollist COMMA", /* 166 */ "select ::= SELECT selcollist",
/* 167 */ "sclp ::=", /* 167 */ "sclp ::= selcollist COMMA",
/* 168 */ "selcollist ::= sclp distinct expr as", /* 168 */ "sclp ::=",
/* 169 */ "selcollist ::= sclp STAR", /* 169 */ "selcollist ::= sclp distinct expr as",
/* 170 */ "as ::= AS ids", /* 170 */ "selcollist ::= sclp STAR",
/* 171 */ "as ::= ids", /* 171 */ "as ::= AS ids",
/* 172 */ "as ::=", /* 172 */ "as ::= ids",
/* 173 */ "distinct ::= DISTINCT", /* 173 */ "as ::=",
/* 174 */ "distinct ::=", /* 174 */ "distinct ::= DISTINCT",
/* 175 */ "from ::= FROM tablelist", /* 175 */ "distinct ::=",
/* 176 */ "from ::= FROM sub", /* 176 */ "from ::= FROM tablelist",
/* 177 */ "sub ::= LP union RP", /* 177 */ "from ::= FROM sub",
/* 178 */ "sub ::= LP union RP ids", /* 178 */ "sub ::= LP union RP",
/* 179 */ "sub ::= sub COMMA LP union RP ids", /* 179 */ "sub ::= LP union RP ids",
/* 180 */ "tablelist ::= ids cpxName", /* 180 */ "sub ::= sub COMMA LP union RP ids",
/* 181 */ "tablelist ::= ids cpxName ids", /* 181 */ "tablelist ::= ids cpxName",
/* 182 */ "tablelist ::= tablelist COMMA ids cpxName", /* 182 */ "tablelist ::= ids cpxName ids",
/* 183 */ "tablelist ::= tablelist COMMA ids cpxName ids", /* 183 */ "tablelist ::= tablelist COMMA ids cpxName",
/* 184 */ "tmvar ::= VARIABLE", /* 184 */ "tablelist ::= tablelist COMMA ids cpxName ids",
/* 185 */ "interval_opt ::= INTERVAL LP tmvar RP", /* 185 */ "tmvar ::= VARIABLE",
/* 186 */ "interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP", /* 186 */ "interval_opt ::= INTERVAL LP tmvar RP",
/* 187 */ "interval_opt ::=", /* 187 */ "interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP",
/* 188 */ "session_option ::=", /* 188 */ "interval_opt ::=",
/* 189 */ "session_option ::= SESSION LP ids cpxName COMMA tmvar RP", /* 189 */ "session_option ::=",
/* 190 */ "windowstate_option ::=", /* 190 */ "session_option ::= SESSION LP ids cpxName COMMA tmvar RP",
/* 191 */ "windowstate_option ::= STATE_WINDOW LP ids RP", /* 191 */ "windowstate_option ::=",
/* 192 */ "fill_opt ::=", /* 192 */ "windowstate_option ::= STATE_WINDOW LP ids RP",
/* 193 */ "fill_opt ::= FILL LP ID COMMA tagitemlist RP", /* 193 */ "fill_opt ::=",
/* 194 */ "fill_opt ::= FILL LP ID RP", /* 194 */ "fill_opt ::= FILL LP ID COMMA tagitemlist RP",
/* 195 */ "sliding_opt ::= SLIDING LP tmvar RP", /* 195 */ "fill_opt ::= FILL LP ID RP",
/* 196 */ "sliding_opt ::=", /* 196 */ "sliding_opt ::= SLIDING LP tmvar RP",
/* 197 */ "orderby_opt ::=", /* 197 */ "sliding_opt ::=",
/* 198 */ "orderby_opt ::= ORDER BY sortlist", /* 198 */ "orderby_opt ::=",
/* 199 */ "sortlist ::= sortlist COMMA item sortorder", /* 199 */ "orderby_opt ::= ORDER BY sortlist",
/* 200 */ "sortlist ::= item sortorder", /* 200 */ "sortlist ::= sortlist COMMA item sortorder",
/* 201 */ "item ::= ids cpxName", /* 201 */ "sortlist ::= item sortorder",
/* 202 */ "sortorder ::= ASC", /* 202 */ "item ::= ids cpxName",
/* 203 */ "sortorder ::= DESC", /* 203 */ "sortorder ::= ASC",
/* 204 */ "sortorder ::=", /* 204 */ "sortorder ::= DESC",
/* 205 */ "groupby_opt ::=", /* 205 */ "sortorder ::=",
/* 206 */ "groupby_opt ::= GROUP BY grouplist", /* 206 */ "groupby_opt ::=",
/* 207 */ "grouplist ::= grouplist COMMA item", /* 207 */ "groupby_opt ::= GROUP BY grouplist",
/* 208 */ "grouplist ::= item", /* 208 */ "grouplist ::= grouplist COMMA item",
/* 209 */ "having_opt ::=", /* 209 */ "grouplist ::= item",
/* 210 */ "having_opt ::= HAVING expr", /* 210 */ "having_opt ::=",
/* 211 */ "limit_opt ::=", /* 211 */ "having_opt ::= HAVING expr",
/* 212 */ "limit_opt ::= LIMIT signed", /* 212 */ "limit_opt ::=",
/* 213 */ "limit_opt ::= LIMIT signed OFFSET signed", /* 213 */ "limit_opt ::= LIMIT signed",
/* 214 */ "limit_opt ::= LIMIT signed COMMA signed", /* 214 */ "limit_opt ::= LIMIT signed OFFSET signed",
/* 215 */ "slimit_opt ::=", /* 215 */ "limit_opt ::= LIMIT signed COMMA signed",
/* 216 */ "slimit_opt ::= SLIMIT signed", /* 216 */ "slimit_opt ::=",
/* 217 */ "slimit_opt ::= SLIMIT signed SOFFSET signed", /* 217 */ "slimit_opt ::= SLIMIT signed",
/* 218 */ "slimit_opt ::= SLIMIT signed COMMA signed", /* 218 */ "slimit_opt ::= SLIMIT signed SOFFSET signed",
/* 219 */ "where_opt ::=", /* 219 */ "slimit_opt ::= SLIMIT signed COMMA signed",
/* 220 */ "where_opt ::= WHERE expr", /* 220 */ "where_opt ::=",
/* 221 */ "expr ::= LP expr RP", /* 221 */ "where_opt ::= WHERE expr",
/* 222 */ "expr ::= ID", /* 222 */ "expr ::= LP expr RP",
/* 223 */ "expr ::= ID DOT ID", /* 223 */ "expr ::= ID",
/* 224 */ "expr ::= ID DOT STAR", /* 224 */ "expr ::= ID DOT ID",
/* 225 */ "expr ::= INTEGER", /* 225 */ "expr ::= ID DOT STAR",
/* 226 */ "expr ::= MINUS INTEGER", /* 226 */ "expr ::= INTEGER",
/* 227 */ "expr ::= PLUS INTEGER", /* 227 */ "expr ::= MINUS INTEGER",
/* 228 */ "expr ::= FLOAT", /* 228 */ "expr ::= PLUS INTEGER",
/* 229 */ "expr ::= MINUS FLOAT", /* 229 */ "expr ::= FLOAT",
/* 230 */ "expr ::= PLUS FLOAT", /* 230 */ "expr ::= MINUS FLOAT",
/* 231 */ "expr ::= STRING", /* 231 */ "expr ::= PLUS FLOAT",
/* 232 */ "expr ::= NOW", /* 232 */ "expr ::= STRING",
/* 233 */ "expr ::= VARIABLE", /* 233 */ "expr ::= NOW",
/* 234 */ "expr ::= PLUS VARIABLE", /* 234 */ "expr ::= VARIABLE",
/* 235 */ "expr ::= MINUS VARIABLE", /* 235 */ "expr ::= PLUS VARIABLE",
/* 236 */ "expr ::= BOOL", /* 236 */ "expr ::= MINUS VARIABLE",
/* 237 */ "expr ::= NULL", /* 237 */ "expr ::= BOOL",
/* 238 */ "expr ::= ID LP exprlist RP", /* 238 */ "expr ::= NULL",
/* 239 */ "expr ::= ID LP STAR RP", /* 239 */ "expr ::= ID LP exprlist RP",
/* 240 */ "expr ::= expr IS NULL", /* 240 */ "expr ::= ID LP STAR RP",
/* 241 */ "expr ::= expr IS NOT NULL", /* 241 */ "expr ::= expr IS NULL",
/* 242 */ "expr ::= expr LT expr", /* 242 */ "expr ::= expr IS NOT NULL",
/* 243 */ "expr ::= expr GT expr", /* 243 */ "expr ::= expr LT expr",
/* 244 */ "expr ::= expr LE expr", /* 244 */ "expr ::= expr GT expr",
/* 245 */ "expr ::= expr GE expr", /* 245 */ "expr ::= expr LE expr",
/* 246 */ "expr ::= expr NE expr", /* 246 */ "expr ::= expr GE expr",
/* 247 */ "expr ::= expr EQ expr", /* 247 */ "expr ::= expr NE expr",
/* 248 */ "expr ::= expr BETWEEN expr AND expr", /* 248 */ "expr ::= expr EQ expr",
/* 249 */ "expr ::= expr AND expr", /* 249 */ "expr ::= expr BETWEEN expr AND expr",
/* 250 */ "expr ::= expr OR expr", /* 250 */ "expr ::= expr AND expr",
/* 251 */ "expr ::= expr PLUS expr", /* 251 */ "expr ::= expr OR expr",
/* 252 */ "expr ::= expr MINUS expr", /* 252 */ "expr ::= expr PLUS expr",
/* 253 */ "expr ::= expr STAR expr", /* 253 */ "expr ::= expr MINUS expr",
/* 254 */ "expr ::= expr SLASH expr", /* 254 */ "expr ::= expr STAR expr",
/* 255 */ "expr ::= expr REM expr", /* 255 */ "expr ::= expr SLASH expr",
/* 256 */ "expr ::= expr LIKE expr", /* 256 */ "expr ::= expr REM expr",
/* 257 */ "expr ::= expr IN LP exprlist RP", /* 257 */ "expr ::= expr LIKE expr",
/* 258 */ "exprlist ::= exprlist COMMA expritem", /* 258 */ "expr ::= expr IN LP exprlist RP",
/* 259 */ "exprlist ::= expritem", /* 259 */ "exprlist ::= exprlist COMMA expritem",
/* 260 */ "expritem ::= expr", /* 260 */ "exprlist ::= expritem",
/* 261 */ "expritem ::=", /* 261 */ "expritem ::= expr",
/* 262 */ "cmd ::= RESET QUERY CACHE", /* 262 */ "expritem ::=",
/* 263 */ "cmd ::= SYNCDB ids REPLICA", /* 263 */ "cmd ::= RESET QUERY CACHE",
/* 264 */ "cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist", /* 264 */ "cmd ::= SYNCDB ids REPLICA",
/* 265 */ "cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids", /* 265 */ "cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist",
/* 266 */ "cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist", /* 266 */ "cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids",
/* 267 */ "cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist", /* 267 */ "cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist",
/* 268 */ "cmd ::= ALTER TABLE ids cpxName DROP TAG ids", /* 268 */ "cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist",
/* 269 */ "cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids", /* 269 */ "cmd ::= ALTER TABLE ids cpxName DROP TAG ids",
/* 270 */ "cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem", /* 270 */ "cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids",
/* 271 */ "cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist", /* 271 */ "cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem",
/* 272 */ "cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist", /* 272 */ "cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist",
/* 273 */ "cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids", /* 273 */ "cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist",
/* 274 */ "cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist", /* 274 */ "cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids",
/* 275 */ "cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist", /* 275 */ "cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist",
/* 276 */ "cmd ::= ALTER STABLE ids cpxName DROP TAG ids", /* 276 */ "cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist",
/* 277 */ "cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids", /* 277 */ "cmd ::= ALTER STABLE ids cpxName DROP TAG ids",
/* 278 */ "cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem", /* 278 */ "cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids",
/* 279 */ "cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist", /* 279 */ "cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem",
/* 280 */ "cmd ::= KILL CONNECTION INTEGER", /* 280 */ "cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist",
/* 281 */ "cmd ::= KILL STREAM INTEGER COLON INTEGER", /* 281 */ "cmd ::= KILL CONNECTION INTEGER",
/* 282 */ "cmd ::= KILL QUERY INTEGER COLON INTEGER", /* 282 */ "cmd ::= KILL STREAM INTEGER COLON INTEGER",
/* 283 */ "cmd ::= KILL QUERY INTEGER COLON INTEGER",
}; };
#endif /* NDEBUG */ #endif /* NDEBUG */
#if YYSTACKDEPTH<=0 #if YYSTACKDEPTH<=0
/* /*
** Try to increase the size of the parser stack. Return the number ** Try to increase the size of the parser stack.
** of errors. Return 0 on success.
*/ */
static int yyGrowStack(yyParser *p){ static void yyGrowStack(yyParser *p){
int newSize; int newSize;
int idx;
yyStackEntry *pNew; yyStackEntry *pNew;
newSize = p->yystksz*2 + 100; 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 ){ if( pNew ){
p->yystack = pNew; p->yystack = pNew;
p->yytos = &p->yystack[idx]; p->yystksz = newSize;
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", fprintf(yyTraceFILE,"%sStack grows to %d entries!\n",
yyTracePrompt, p->yystksz, newSize); yyTracePrompt, p->yystksz);
} }
#endif #endif
p->yystksz = newSize;
} }
return pNew==0;
} }
#endif #endif
/* Datatype of the argument to the memory allocated passed as the
** second argument to ParseAlloc() below. This can be changed by
** putting an appropriate #define in the %include section of the input
** grammar.
*/
#ifndef YYMALLOCARGTYPE
# define YYMALLOCARGTYPE size_t
#endif
/* Initialize a new parser that has already been allocated.
*/
void ParseInit(void *yypParser){
yyParser *pParser = (yyParser*)yypParser;
#ifdef YYTRACKMAXSTACKDEPTH
pParser->yyhwm = 0;
#endif
#if YYSTACKDEPTH<=0
pParser->yytos = NULL;
pParser->yystack = NULL;
pParser->yystksz = 0;
if( yyGrowStack(pParser) ){
pParser->yystack = &pParser->yystk0;
pParser->yystksz = 1;
}
#endif
#ifndef YYNOERRORRECOVERY
pParser->yyerrcnt = -1;
#endif
pParser->yytos = pParser->yystack;
pParser->yystack[0].stateno = 0;
pParser->yystack[0].major = 0;
#if YYSTACKDEPTH>0
pParser->yystackEnd = &pParser->yystack[YYSTACKDEPTH-1];
#endif
}
#ifndef Parse_ENGINEALWAYSONSTACK
/* /*
** This function allocates a new parser. ** This function allocates a new parser.
** The only argument is a pointer to a function which works like ** The only argument is a pointer to a function which works like
...@@ -1414,21 +1144,27 @@ void ParseInit(void *yypParser){ ...@@ -1414,21 +1144,27 @@ void ParseInit(void *yypParser){
** A pointer to a parser. This pointer is used in subsequent calls ** A pointer to a parser. This pointer is used in subsequent calls
** to Parse and ParseFree. ** to Parse and ParseFree.
*/ */
void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ void *ParseAlloc(void *(*mallocProc)(size_t)){
yyParser *pParser; yyParser *pParser;
pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) );
if( pParser ) ParseInit(pParser); if( pParser ){
pParser->yyidx = -1;
#ifdef YYTRACKMAXSTACKDEPTH
pParser->yyidxMax = 0;
#endif
#if YYSTACKDEPTH<=0
pParser->yystack = NULL;
pParser->yystksz = 0;
yyGrowStack(pParser);
#endif
}
return pParser; return pParser;
} }
#endif /* Parse_ENGINEALWAYSONSTACK */
/* The following function deletes the "minor type" or semantic value /* The following function deletes the value associated with a
** associated with a symbol. The symbol can be either a terminal ** symbol. The symbol can be either a terminal or nonterminal.
** or nonterminal. "yymajor" is the symbol code, and "yypminor" is ** "yymajor" is the symbol code, and "yypminor" is a pointer to
** a pointer to the value to be deleted. The code used to do the ** the value.
** deletions is derived from the %destructor and/or %token_destructor
** directives of the input grammar.
*/ */
static void yy_destructor( static void yy_destructor(
yyParser *yypParser, /* The parser */ yyParser *yypParser, /* The parser */
...@@ -1444,10 +1180,9 @@ static void yy_destructor( ...@@ -1444,10 +1180,9 @@ static void yy_destructor(
** being destroyed before it is finished parsing. ** being destroyed before it is finished parsing.
** **
** Note: during a reduce, the only symbols destroyed are those ** 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. ** inside the C code.
*/ */
/********* Begin destructor definitions ***************************************/
case 211: /* intitemlist */ case 211: /* intitemlist */
case 213: /* keep */ case 213: /* keep */
case 235: /* columnlist */ case 235: /* columnlist */
...@@ -1504,7 +1239,6 @@ destroyAllSqlNode((yypminor->yy93)); ...@@ -1504,7 +1239,6 @@ destroyAllSqlNode((yypminor->yy93));
tVariantDestroy(&(yypminor->yy518)); tVariantDestroy(&(yypminor->yy518));
} }
break; break;
/********* End destructor definitions *****************************************/
default: break; /* If no destructor action specified: do nothing */ default: break; /* If no destructor action specified: do nothing */
} }
} }
...@@ -1514,53 +1248,51 @@ tVariantDestroy(&(yypminor->yy518)); ...@@ -1514,53 +1248,51 @@ tVariantDestroy(&(yypminor->yy518));
** **
** If there is a destructor routine associated with the token which ** If there is a destructor routine associated with the token which
** is popped from the stack, then call it. ** 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){ static int yy_pop_parser_stack(yyParser *pParser){
yyStackEntry *yytos; YYCODETYPE yymajor;
assert( pParser->yytos!=0 ); yyStackEntry *yytos = &pParser->yystack[pParser->yyidx];
assert( pParser->yytos > pParser->yystack );
yytos = pParser->yytos--; if( pParser->yyidx<0 ) return 0;
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE && pParser->yyidx>=0 ){
fprintf(yyTraceFILE,"%sPopping %s\n", fprintf(yyTraceFILE,"%sPopping %s\n",
yyTracePrompt, yyTracePrompt,
yyTokenName[yytos->major]); yyTokenName[yytos->major]);
} }
#endif #endif
yy_destructor(pParser, yytos->major, &yytos->minor); yymajor = yytos->major;
yy_destructor(pParser, yymajor, &yytos->minor);
pParser->yyidx--;
return yymajor;
} }
/* /*
** Clear all secondary memory allocations from the parser ** Deallocate and destroy a parser. Destructors are all called for
*/
void ParseFinalize(void *p){
yyParser *pParser = (yyParser*)p;
while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser);
#if YYSTACKDEPTH<=0
if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack);
#endif
}
#ifndef Parse_ENGINEALWAYSONSTACK
/*
** Deallocate and destroy a parser. Destructors are called for
** all stack elements before shutting the parser down. ** all stack elements before shutting the parser down.
** **
** If the YYPARSEFREENEVERNULL macro exists (for example because it ** Inputs:
** is defined in a %include section of the input grammar) then it is ** <ul>
** assumed that the input pointer is never NULL. ** <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 ParseFree(
void *p, /* The parser to be deleted */ void *p, /* The parser to be deleted */
void (*freeProc)(void*) /* Function used to reclaim memory */ void (*freeProc)(void*) /* Function used to reclaim memory */
){ ){
#ifndef YYPARSEFREENEVERNULL yyParser *pParser = (yyParser*)p;
if( p==0 ) return; if( pParser==0 ) return;
while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser);
#if YYSTACKDEPTH<=0
free(pParser->yystack);
#endif #endif
ParseFinalize(p); (*freeProc)((void*)pParser);
(*freeProc)(p);
} }
#endif /* Parse_ENGINEALWAYSONSTACK */
/* /*
** Return the peak depth of the stack for a parser. ** Return the peak depth of the stack for a parser.
...@@ -1568,70 +1300,33 @@ void ParseFree( ...@@ -1568,70 +1300,33 @@ void ParseFree(
#ifdef YYTRACKMAXSTACKDEPTH #ifdef YYTRACKMAXSTACKDEPTH
int ParseStackPeak(void *p){ int ParseStackPeak(void *p){
yyParser *pParser = (yyParser*)p; yyParser *pParser = (yyParser*)p;
return pParser->yyhwm; return pParser->yyidxMax;
}
#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;
} }
#endif #endif
/* /*
** Find the appropriate action for a parser given the terminal ** Find the appropriate action for a parser given the terminal
** look-ahead token iLookAhead. ** look-ahead token iLookAhead.
**
** If the look-ahead token is YYNOCODE, then check to see if the action is
** independent of the look-ahead. If it is, return the action, otherwise
** return YY_NO_ACTION.
*/ */
static unsigned int yy_find_shift_action( static int yy_find_shift_action(
yyParser *pParser, /* The parser */ yyParser *pParser, /* The parser */
YYCODETYPE iLookAhead /* The look-ahead token */ YYCODETYPE iLookAhead /* The look-ahead token */
){ ){
int i; int i;
int stateno = pParser->yytos->stateno; int stateno = pParser->yystack[pParser->yyidx].stateno;
if( stateno>YY_MAX_SHIFT ) return stateno; if( stateno>YY_SHIFT_COUNT
assert( stateno <= YY_SHIFT_COUNT ); || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){
#if defined(YYCOVERAGE) return yy_default[stateno];
yycoverage[stateno][iLookAhead] = 1; }
#endif
do{
i = yy_shift_ofst[stateno];
assert( i>=0 && i+YYNTOKEN<=sizeof(yy_lookahead)/sizeof(yy_lookahead[0]) );
assert( iLookAhead!=YYNOCODE ); assert( iLookAhead!=YYNOCODE );
assert( iLookAhead < YYNTOKEN );
i += iLookAhead; i += iLookAhead;
if( yy_lookahead[i]!=iLookAhead ){ if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){
if( iLookAhead>0 ){
#ifdef YYFALLBACK #ifdef YYFALLBACK
YYCODETYPE iFallback; /* Fallback token */ YYCODETYPE iFallback; /* Fallback token */
if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0]) if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0])
...@@ -1642,9 +1337,7 @@ static unsigned int yy_find_shift_action( ...@@ -1642,9 +1337,7 @@ static unsigned int yy_find_shift_action(
yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]);
} }
#endif #endif
assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */ return yy_find_shift_action(pParser, iFallback);
iLookAhead = iFallback;
continue;
} }
#endif #endif
#ifdef YYWILDCARD #ifdef YYWILDCARD
...@@ -1657,29 +1350,32 @@ static unsigned int yy_find_shift_action( ...@@ -1657,29 +1350,32 @@ static unsigned int yy_find_shift_action(
#if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT #if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT
j<YY_ACTTAB_COUNT && j<YY_ACTTAB_COUNT &&
#endif #endif
yy_lookahead[j]==YYWILDCARD && iLookAhead>0 yy_lookahead[j]==YYWILDCARD
){ ){
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE ){
fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n",
yyTracePrompt, yyTokenName[iLookAhead], yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]);
yyTokenName[YYWILDCARD]);
} }
#endif /* NDEBUG */ #endif /* NDEBUG */
return yy_action[j]; return yy_action[j];
} }
} }
#endif /* YYWILDCARD */ #endif /* YYWILDCARD */
}
return yy_default[stateno]; return yy_default[stateno];
}else{ }else{
return yy_action[i]; return yy_action[i];
} }
}while(1);
} }
/* /*
** Find the appropriate action for a parser given the non-terminal ** Find the appropriate action for a parser given the non-terminal
** look-ahead token iLookAhead. ** look-ahead token iLookAhead.
**
** If the look-ahead token is YYNOCODE, then check to see if the action is
** independent of the look-ahead. If it is, return the action, otherwise
** return YY_NO_ACTION.
*/ */
static int yy_find_reduce_action( static int yy_find_reduce_action(
int stateno, /* Current state number */ int stateno, /* Current state number */
...@@ -1694,6 +1390,7 @@ static int yy_find_reduce_action( ...@@ -1694,6 +1390,7 @@ static int yy_find_reduce_action(
assert( stateno<=YY_REDUCE_COUNT ); assert( stateno<=YY_REDUCE_COUNT );
#endif #endif
i = yy_reduce_ofst[stateno]; i = yy_reduce_ofst[stateno];
assert( i!=YY_REDUCE_USE_DFLT );
assert( iLookAhead!=YYNOCODE ); assert( iLookAhead!=YYNOCODE );
i += iLookAhead; i += iLookAhead;
#ifdef YYERRORSYMBOL #ifdef YYERRORSYMBOL
...@@ -1710,42 +1407,20 @@ static int yy_find_reduce_action( ...@@ -1710,42 +1407,20 @@ static int yy_find_reduce_action(
/* /*
** The following routine is called if the stack overflows. ** The following routine is called if the stack overflows.
*/ */
static void yyStackOverflow(yyParser *yypParser){ static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){
ParseARG_FETCH; ParseARG_FETCH;
yypParser->yyidx--;
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt);
} }
#endif #endif
while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
/* Here code is inserted which will execute if the parser /* Here code is inserted which will execute if the parser
** stack every overflows */ ** stack every overflows */
/******** Begin %stack_overflow code ******************************************/
/******** End %stack_overflow code ********************************************/
ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ 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. ** Perform a shift action.
*/ */
...@@ -1753,39 +1428,43 @@ static void yy_shift( ...@@ -1753,39 +1428,43 @@ static void yy_shift(
yyParser *yypParser, /* The parser to be shifted */ yyParser *yypParser, /* The parser to be shifted */
int yyNewState, /* The new state to shift in */ int yyNewState, /* The new state to shift in */
int yyMajor, /* The major token to shift in */ int yyMajor, /* The major token to shift in */
ParseTOKENTYPE yyMinor /* The minor token to shift in */ YYMINORTYPE *yypMinor /* Pointer to the minor token to shift in */
){ ){
yyStackEntry *yytos; yyStackEntry *yytos;
yypParser->yytos++; yypParser->yyidx++;
#ifdef YYTRACKMAXSTACKDEPTH #ifdef YYTRACKMAXSTACKDEPTH
if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ if( yypParser->yyidx>yypParser->yyidxMax ){
yypParser->yyhwm++; yypParser->yyidxMax = yypParser->yyidx;
assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) );
} }
#endif #endif
#if YYSTACKDEPTH>0 #if YYSTACKDEPTH>0
if( yypParser->yytos>yypParser->yystackEnd ){ if( yypParser->yyidx>=YYSTACKDEPTH ){
yypParser->yytos--; yyStackOverflow(yypParser, yypMinor);
yyStackOverflow(yypParser);
return; return;
} }
#else #else
if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ if( yypParser->yyidx>=yypParser->yystksz ){
if( yyGrowStack(yypParser) ){ yyGrowStack(yypParser);
yypParser->yytos--; if( yypParser->yyidx>=yypParser->yystksz ){
yyStackOverflow(yypParser); yyStackOverflow(yypParser, yypMinor);
return; return;
} }
} }
#endif #endif
if( yyNewState > YY_MAX_SHIFT ){ yytos = &yypParser->yystack[yypParser->yyidx];
yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE;
}
yytos = yypParser->yytos;
yytos->stateno = (YYACTIONTYPE)yyNewState; yytos->stateno = (YYACTIONTYPE)yyNewState;
yytos->major = (YYCODETYPE)yyMajor; yytos->major = (YYCODETYPE)yyMajor;
yytos->minor.yy0 = yyMinor; yytos->minor = *yypMinor;
yyTraceShift(yypParser, yyNewState, "Shift"); #ifndef NDEBUG
if( yyTraceFILE && yypParser->yyidx>0 ){
int i;
fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState);
fprintf(yyTraceFILE,"%sStack:",yyTracePrompt);
for(i=1; i<=yypParser->yyidx; i++)
fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]);
fprintf(yyTraceFILE,"\n");
}
#endif
} }
/* The following table contains information about every rule that /* The following table contains information about every rule that
...@@ -1793,291 +1472,292 @@ static void yy_shift( ...@@ -1793,291 +1472,292 @@ static void yy_shift(
*/ */
static const struct { static const struct {
YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */
signed char nrhs; /* Negative of the number of RHS symbols in the rule */ unsigned char nrhs; /* Number of right-hand side symbols in the rule */
} yyRuleInfo[] = { } yyRuleInfo[] = {
{ 190, -1 }, /* (0) program ::= cmd */ { 190, 1 },
{ 191, -2 }, /* (1) cmd ::= SHOW DATABASES */ { 191, 2 },
{ 191, -2 }, /* (2) cmd ::= SHOW TOPICS */ { 191, 2 },
{ 191, -2 }, /* (3) cmd ::= SHOW MNODES */ { 191, 2 },
{ 191, -2 }, /* (4) cmd ::= SHOW DNODES */ { 191, 2 },
{ 191, -2 }, /* (5) cmd ::= SHOW ACCOUNTS */ { 191, 2 },
{ 191, -2 }, /* (6) cmd ::= SHOW USERS */ { 191, 2 },
{ 191, -2 }, /* (7) cmd ::= SHOW MODULES */ { 191, 2 },
{ 191, -2 }, /* (8) cmd ::= SHOW QUERIES */ { 191, 2 },
{ 191, -2 }, /* (9) cmd ::= SHOW CONNECTIONS */ { 191, 2 },
{ 191, -2 }, /* (10) cmd ::= SHOW STREAMS */ { 191, 2 },
{ 191, -2 }, /* (11) cmd ::= SHOW VARIABLES */ { 191, 2 },
{ 191, -2 }, /* (12) cmd ::= SHOW SCORES */ { 191, 2 },
{ 191, -2 }, /* (13) cmd ::= SHOW GRANTS */ { 191, 2 },
{ 191, -2 }, /* (14) cmd ::= SHOW VNODES */ { 191, 2 },
{ 191, -3 }, /* (15) cmd ::= SHOW VNODES IPTOKEN */ { 191, 3 },
{ 192, 0 }, /* (16) dbPrefix ::= */ { 192, 0 },
{ 192, -2 }, /* (17) dbPrefix ::= ids DOT */ { 192, 2 },
{ 194, 0 }, /* (18) cpxName ::= */ { 194, 0 },
{ 194, -2 }, /* (19) cpxName ::= DOT ids */ { 194, 2 },
{ 191, -5 }, /* (20) cmd ::= SHOW CREATE TABLE ids cpxName */ { 191, 5 },
{ 191, -5 }, /* (21) cmd ::= SHOW CREATE STABLE ids cpxName */ { 191, 5 },
{ 191, -4 }, /* (22) cmd ::= SHOW CREATE DATABASE ids */ { 191, 4 },
{ 191, -3 }, /* (23) cmd ::= SHOW dbPrefix TABLES */ { 191, 3 },
{ 191, -5 }, /* (24) cmd ::= SHOW dbPrefix TABLES LIKE ids */ { 191, 5 },
{ 191, -3 }, /* (25) cmd ::= SHOW dbPrefix STABLES */ { 191, 3 },
{ 191, -5 }, /* (26) cmd ::= SHOW dbPrefix STABLES LIKE ids */ { 191, 5 },
{ 191, -3 }, /* (27) cmd ::= SHOW dbPrefix VGROUPS */ { 191, 3 },
{ 191, -4 }, /* (28) cmd ::= SHOW dbPrefix VGROUPS ids */ { 191, 4 },
{ 191, -5 }, /* (29) cmd ::= DROP TABLE ifexists ids cpxName */ { 191, 5 },
{ 191, -5 }, /* (30) cmd ::= DROP STABLE ifexists ids cpxName */ { 191, 5 },
{ 191, -4 }, /* (31) cmd ::= DROP DATABASE ifexists ids */ { 191, 4 },
{ 191, -4 }, /* (32) cmd ::= DROP TOPIC ifexists ids */ { 191, 4 },
{ 191, -3 }, /* (33) cmd ::= DROP DNODE ids */ { 191, 3 },
{ 191, -3 }, /* (34) cmd ::= DROP USER ids */ { 191, 3 },
{ 191, -3 }, /* (35) cmd ::= DROP ACCOUNT ids */ { 191, 3 },
{ 191, -2 }, /* (36) cmd ::= USE ids */ { 191, 2 },
{ 191, -3 }, /* (37) cmd ::= DESCRIBE ids cpxName */ { 191, 3 },
{ 191, -5 }, /* (38) cmd ::= ALTER USER ids PASS ids */ { 191, 5 },
{ 191, -5 }, /* (39) cmd ::= ALTER USER ids PRIVILEGE ids */ { 191, 5 },
{ 191, -4 }, /* (40) cmd ::= ALTER DNODE ids ids */ { 191, 4 },
{ 191, -5 }, /* (41) cmd ::= ALTER DNODE ids ids ids */ { 191, 5 },
{ 191, -3 }, /* (42) cmd ::= ALTER LOCAL ids */ { 191, 3 },
{ 191, -4 }, /* (43) cmd ::= ALTER LOCAL ids ids */ { 191, 4 },
{ 191, -4 }, /* (44) cmd ::= ALTER DATABASE ids alter_db_optr */ { 191, 4 },
{ 191, -4 }, /* (45) cmd ::= ALTER TOPIC ids alter_topic_optr */ { 191, 4 },
{ 191, -4 }, /* (46) cmd ::= ALTER ACCOUNT ids acct_optr */ { 191, 4 },
{ 191, -6 }, /* (47) cmd ::= ALTER ACCOUNT ids PASS ids acct_optr */ { 191, 6 },
{ 193, -1 }, /* (48) ids ::= ID */ { 193, 1 },
{ 193, -1 }, /* (49) ids ::= STRING */ { 193, 1 },
{ 195, -2 }, /* (50) ifexists ::= IF EXISTS */ { 195, 2 },
{ 195, 0 }, /* (51) ifexists ::= */ { 195, 0 },
{ 199, -3 }, /* (52) ifnotexists ::= IF NOT EXISTS */ { 199, 3 },
{ 199, 0 }, /* (53) ifnotexists ::= */ { 199, 0 },
{ 191, -3 }, /* (54) cmd ::= CREATE DNODE ids */ { 191, 3 },
{ 191, -6 }, /* (55) cmd ::= CREATE ACCOUNT ids PASS ids acct_optr */ { 191, 6 },
{ 191, -5 }, /* (56) cmd ::= CREATE DATABASE ifnotexists ids db_optr */ { 191, 5 },
{ 191, -5 }, /* (57) cmd ::= CREATE TOPIC ifnotexists ids topic_optr */ { 191, 5 },
{ 191, -5 }, /* (58) cmd ::= CREATE USER ids PASS ids */ { 191, 5 },
{ 202, 0 }, /* (59) pps ::= */ { 202, 0 },
{ 202, -2 }, /* (60) pps ::= PPS INTEGER */ { 202, 2 },
{ 203, 0 }, /* (61) tseries ::= */ { 203, 0 },
{ 203, -2 }, /* (62) tseries ::= TSERIES INTEGER */ { 203, 2 },
{ 204, 0 }, /* (63) dbs ::= */ { 204, 0 },
{ 204, -2 }, /* (64) dbs ::= DBS INTEGER */ { 204, 2 },
{ 205, 0 }, /* (65) streams ::= */ { 205, 0 },
{ 205, -2 }, /* (66) streams ::= STREAMS INTEGER */ { 205, 2 },
{ 206, 0 }, /* (67) storage ::= */ { 206, 0 },
{ 206, -2 }, /* (68) storage ::= STORAGE INTEGER */ { 206, 2 },
{ 207, 0 }, /* (69) qtime ::= */ { 207, 0 },
{ 207, -2 }, /* (70) qtime ::= QTIME INTEGER */ { 207, 2 },
{ 208, 0 }, /* (71) users ::= */ { 208, 0 },
{ 208, -2 }, /* (72) users ::= USERS INTEGER */ { 208, 2 },
{ 209, 0 }, /* (73) conns ::= */ { 209, 0 },
{ 209, -2 }, /* (74) conns ::= CONNS INTEGER */ { 209, 2 },
{ 210, 0 }, /* (75) state ::= */ { 210, 0 },
{ 210, -2 }, /* (76) state ::= STATE ids */ { 210, 2 },
{ 198, -9 }, /* (77) acct_optr ::= pps tseries storage streams qtime dbs users conns state */ { 198, 9 },
{ 211, -3 }, /* (78) intitemlist ::= intitemlist COMMA intitem */ { 211, 3 },
{ 211, -1 }, /* (79) intitemlist ::= intitem */ { 211, 1 },
{ 212, -1 }, /* (80) intitem ::= INTEGER */ { 212, 1 },
{ 213, -2 }, /* (81) keep ::= KEEP intitemlist */ { 213, 2 },
{ 214, -2 }, /* (82) cache ::= CACHE INTEGER */ { 214, 2 },
{ 215, -2 }, /* (83) replica ::= REPLICA INTEGER */ { 215, 2 },
{ 216, -2 }, /* (84) quorum ::= QUORUM INTEGER */ { 216, 2 },
{ 217, -2 }, /* (85) days ::= DAYS INTEGER */ { 217, 2 },
{ 218, -2 }, /* (86) minrows ::= MINROWS INTEGER */ { 218, 2 },
{ 219, -2 }, /* (87) maxrows ::= MAXROWS INTEGER */ { 219, 2 },
{ 220, -2 }, /* (88) blocks ::= BLOCKS INTEGER */ { 220, 2 },
{ 221, -2 }, /* (89) ctime ::= CTIME INTEGER */ { 221, 2 },
{ 222, -2 }, /* (90) wal ::= WAL INTEGER */ { 222, 2 },
{ 223, -2 }, /* (91) fsync ::= FSYNC INTEGER */ { 223, 2 },
{ 224, -2 }, /* (92) comp ::= COMP INTEGER */ { 224, 2 },
{ 225, -2 }, /* (93) prec ::= PRECISION STRING */ { 225, 2 },
{ 226, -2 }, /* (94) update ::= UPDATE INTEGER */ { 226, 2 },
{ 227, -2 }, /* (95) cachelast ::= CACHELAST INTEGER */ { 227, 2 },
{ 228, -2 }, /* (96) partitions ::= PARTITIONS INTEGER */ { 228, 2 },
{ 200, 0 }, /* (97) db_optr ::= */ { 200, 0 },
{ 200, -2 }, /* (98) db_optr ::= db_optr cache */ { 200, 2 },
{ 200, -2 }, /* (99) db_optr ::= db_optr replica */ { 200, 2 },
{ 200, -2 }, /* (100) db_optr ::= db_optr quorum */ { 200, 2 },
{ 200, -2 }, /* (101) db_optr ::= db_optr days */ { 200, 2 },
{ 200, -2 }, /* (102) db_optr ::= db_optr minrows */ { 200, 2 },
{ 200, -2 }, /* (103) db_optr ::= db_optr maxrows */ { 200, 2 },
{ 200, -2 }, /* (104) db_optr ::= db_optr blocks */ { 200, 2 },
{ 200, -2 }, /* (105) db_optr ::= db_optr ctime */ { 200, 2 },
{ 200, -2 }, /* (106) db_optr ::= db_optr wal */ { 200, 2 },
{ 200, -2 }, /* (107) db_optr ::= db_optr fsync */ { 200, 2 },
{ 200, -2 }, /* (108) db_optr ::= db_optr comp */ { 200, 2 },
{ 200, -2 }, /* (109) db_optr ::= db_optr prec */ { 200, 2 },
{ 200, -2 }, /* (110) db_optr ::= db_optr keep */ { 200, 2 },
{ 200, -2 }, /* (111) db_optr ::= db_optr update */ { 200, 2 },
{ 200, -2 }, /* (112) db_optr ::= db_optr cachelast */ { 200, 2 },
{ 201, -1 }, /* (113) topic_optr ::= db_optr */ { 201, 1 },
{ 201, -2 }, /* (114) topic_optr ::= topic_optr partitions */ { 201, 2 },
{ 196, 0 }, /* (115) alter_db_optr ::= */ { 196, 0 },
{ 196, -2 }, /* (116) alter_db_optr ::= alter_db_optr replica */ { 196, 2 },
{ 196, -2 }, /* (117) alter_db_optr ::= alter_db_optr quorum */ { 196, 2 },
{ 196, -2 }, /* (118) alter_db_optr ::= alter_db_optr keep */ { 196, 2 },
{ 196, -2 }, /* (119) alter_db_optr ::= alter_db_optr blocks */ { 196, 2 },
{ 196, -2 }, /* (120) alter_db_optr ::= alter_db_optr comp */ { 196, 2 },
{ 196, -2 }, /* (121) alter_db_optr ::= alter_db_optr wal */ { 196, 2 },
{ 196, -2 }, /* (122) alter_db_optr ::= alter_db_optr fsync */ { 196, 2 },
{ 196, -2 }, /* (123) alter_db_optr ::= alter_db_optr update */ { 196, 2 },
{ 196, -2 }, /* (124) alter_db_optr ::= alter_db_optr cachelast */ { 196, 2 },
{ 197, -1 }, /* (125) alter_topic_optr ::= alter_db_optr */ { 197, 1 },
{ 197, -2 }, /* (126) alter_topic_optr ::= alter_topic_optr partitions */ { 197, 2 },
{ 229, -1 }, /* (127) typename ::= ids */ { 229, 1 },
{ 229, -4 }, /* (128) typename ::= ids LP signed RP */ { 229, 4 },
{ 229, -2 }, /* (129) typename ::= ids UNSIGNED */ { 229, 2 },
{ 230, -1 }, /* (130) signed ::= INTEGER */ { 230, 1 },
{ 230, -2 }, /* (131) signed ::= PLUS INTEGER */ { 230, 2 },
{ 230, -2 }, /* (132) signed ::= MINUS INTEGER */ { 230, 2 },
{ 191, -3 }, /* (133) cmd ::= CREATE TABLE create_table_args */ { 191, 3 },
{ 191, -3 }, /* (134) cmd ::= CREATE TABLE create_stable_args */ { 191, 3 },
{ 191, -3 }, /* (135) cmd ::= CREATE STABLE create_stable_args */ { 191, 3 },
{ 191, -3 }, /* (136) cmd ::= CREATE TABLE create_table_list */ { 191, 3 },
{ 233, -1 }, /* (137) create_table_list ::= create_from_stable */ { 233, 1 },
{ 233, -2 }, /* (138) create_table_list ::= create_table_list create_from_stable */ { 233, 2 },
{ 231, -6 }, /* (139) create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ { 231, 6 },
{ 232, -10 }, /* (140) create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ { 232, 10 },
{ 234, -10 }, /* (141) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ { 234, 10 },
{ 234, -13 }, /* (142) create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ { 234, 13 },
{ 237, -3 }, /* (143) tagNamelist ::= tagNamelist COMMA ids */ { 237, 3 },
{ 237, -1 }, /* (144) tagNamelist ::= ids */ { 237, 1 },
{ 231, -5 }, /* (145) create_table_args ::= ifnotexists ids cpxName AS select */ { 231, 5 },
{ 235, -3 }, /* (146) columnlist ::= columnlist COMMA column */ { 235, 3 },
{ 235, -1 }, /* (147) columnlist ::= column */ { 235, 1 },
{ 239, -2 }, /* (148) column ::= ids typename */ { 239, 2 },
{ 236, -3 }, /* (149) tagitemlist ::= tagitemlist COMMA tagitem */ { 236, 3 },
{ 236, -1 }, /* (150) tagitemlist ::= tagitem */ { 236, 1 },
{ 240, -1 }, /* (151) tagitem ::= INTEGER */ { 240, 1 },
{ 240, -1 }, /* (152) tagitem ::= FLOAT */ { 240, 1 },
{ 240, -1 }, /* (153) tagitem ::= STRING */ { 240, 1 },
{ 240, -1 }, /* (154) tagitem ::= BOOL */ { 240, 1 },
{ 240, -1 }, /* (155) tagitem ::= NULL */ { 240, 1 },
{ 240, -2 }, /* (156) tagitem ::= MINUS INTEGER */ { 240, 1 },
{ 240, -2 }, /* (157) tagitem ::= MINUS FLOAT */ { 240, 2 },
{ 240, -2 }, /* (158) tagitem ::= PLUS INTEGER */ { 240, 2 },
{ 240, -2 }, /* (159) tagitem ::= PLUS FLOAT */ { 240, 2 },
{ 238, -14 }, /* (160) select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ { 240, 2 },
{ 238, -3 }, /* (161) select ::= LP select RP */ { 238, 14 },
{ 254, -1 }, /* (162) union ::= select */ { 238, 3 },
{ 254, -4 }, /* (163) union ::= union UNION ALL select */ { 254, 1 },
{ 191, -1 }, /* (164) cmd ::= union */ { 254, 4 },
{ 238, -2 }, /* (165) select ::= SELECT selcollist */ { 191, 1 },
{ 255, -2 }, /* (166) sclp ::= selcollist COMMA */ { 238, 2 },
{ 255, 0 }, /* (167) sclp ::= */ { 255, 2 },
{ 241, -4 }, /* (168) selcollist ::= sclp distinct expr as */ { 255, 0 },
{ 241, -2 }, /* (169) selcollist ::= sclp STAR */ { 241, 4 },
{ 258, -2 }, /* (170) as ::= AS ids */ { 241, 2 },
{ 258, -1 }, /* (171) as ::= ids */ { 258, 2 },
{ 258, 0 }, /* (172) as ::= */ { 258, 1 },
{ 256, -1 }, /* (173) distinct ::= DISTINCT */ { 258, 0 },
{ 256, 0 }, /* (174) distinct ::= */ { 256, 1 },
{ 242, -2 }, /* (175) from ::= FROM tablelist */ { 256, 0 },
{ 242, -2 }, /* (176) from ::= FROM sub */ { 242, 2 },
{ 260, -3 }, /* (177) sub ::= LP union RP */ { 242, 2 },
{ 260, -4 }, /* (178) sub ::= LP union RP ids */ { 260, 3 },
{ 260, -6 }, /* (179) sub ::= sub COMMA LP union RP ids */ { 260, 4 },
{ 259, -2 }, /* (180) tablelist ::= ids cpxName */ { 260, 6 },
{ 259, -3 }, /* (181) tablelist ::= ids cpxName ids */ { 259, 2 },
{ 259, -4 }, /* (182) tablelist ::= tablelist COMMA ids cpxName */ { 259, 3 },
{ 259, -5 }, /* (183) tablelist ::= tablelist COMMA ids cpxName ids */ { 259, 4 },
{ 261, -1 }, /* (184) tmvar ::= VARIABLE */ { 259, 5 },
{ 244, -4 }, /* (185) interval_opt ::= INTERVAL LP tmvar RP */ { 261, 1 },
{ 244, -6 }, /* (186) interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ { 244, 4 },
{ 244, 0 }, /* (187) interval_opt ::= */ { 244, 6 },
{ 245, 0 }, /* (188) session_option ::= */ { 244, 0 },
{ 245, -7 }, /* (189) session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ { 245, 0 },
{ 246, 0 }, /* (190) windowstate_option ::= */ { 245, 7 },
{ 246, -4 }, /* (191) windowstate_option ::= STATE_WINDOW LP ids RP */ { 246, 0 },
{ 247, 0 }, /* (192) fill_opt ::= */ { 246, 4 },
{ 247, -6 }, /* (193) fill_opt ::= FILL LP ID COMMA tagitemlist RP */ { 247, 0 },
{ 247, -4 }, /* (194) fill_opt ::= FILL LP ID RP */ { 247, 6 },
{ 248, -4 }, /* (195) sliding_opt ::= SLIDING LP tmvar RP */ { 247, 4 },
{ 248, 0 }, /* (196) sliding_opt ::= */ { 248, 4 },
{ 250, 0 }, /* (197) orderby_opt ::= */ { 248, 0 },
{ 250, -3 }, /* (198) orderby_opt ::= ORDER BY sortlist */ { 250, 0 },
{ 262, -4 }, /* (199) sortlist ::= sortlist COMMA item sortorder */ { 250, 3 },
{ 262, -2 }, /* (200) sortlist ::= item sortorder */ { 262, 4 },
{ 264, -2 }, /* (201) item ::= ids cpxName */ { 262, 2 },
{ 265, -1 }, /* (202) sortorder ::= ASC */ { 264, 2 },
{ 265, -1 }, /* (203) sortorder ::= DESC */ { 265, 1 },
{ 265, 0 }, /* (204) sortorder ::= */ { 265, 1 },
{ 249, 0 }, /* (205) groupby_opt ::= */ { 265, 0 },
{ 249, -3 }, /* (206) groupby_opt ::= GROUP BY grouplist */ { 249, 0 },
{ 266, -3 }, /* (207) grouplist ::= grouplist COMMA item */ { 249, 3 },
{ 266, -1 }, /* (208) grouplist ::= item */ { 266, 3 },
{ 251, 0 }, /* (209) having_opt ::= */ { 266, 1 },
{ 251, -2 }, /* (210) having_opt ::= HAVING expr */ { 251, 0 },
{ 253, 0 }, /* (211) limit_opt ::= */ { 251, 2 },
{ 253, -2 }, /* (212) limit_opt ::= LIMIT signed */ { 253, 0 },
{ 253, -4 }, /* (213) limit_opt ::= LIMIT signed OFFSET signed */ { 253, 2 },
{ 253, -4 }, /* (214) limit_opt ::= LIMIT signed COMMA signed */ { 253, 4 },
{ 252, 0 }, /* (215) slimit_opt ::= */ { 253, 4 },
{ 252, -2 }, /* (216) slimit_opt ::= SLIMIT signed */ { 252, 0 },
{ 252, -4 }, /* (217) slimit_opt ::= SLIMIT signed SOFFSET signed */ { 252, 2 },
{ 252, -4 }, /* (218) slimit_opt ::= SLIMIT signed COMMA signed */ { 252, 4 },
{ 243, 0 }, /* (219) where_opt ::= */ { 252, 4 },
{ 243, -2 }, /* (220) where_opt ::= WHERE expr */ { 243, 0 },
{ 257, -3 }, /* (221) expr ::= LP expr RP */ { 243, 2 },
{ 257, -1 }, /* (222) expr ::= ID */ { 257, 3 },
{ 257, -3 }, /* (223) expr ::= ID DOT ID */ { 257, 1 },
{ 257, -3 }, /* (224) expr ::= ID DOT STAR */ { 257, 3 },
{ 257, -1 }, /* (225) expr ::= INTEGER */ { 257, 3 },
{ 257, -2 }, /* (226) expr ::= MINUS INTEGER */ { 257, 1 },
{ 257, -2 }, /* (227) expr ::= PLUS INTEGER */ { 257, 2 },
{ 257, -1 }, /* (228) expr ::= FLOAT */ { 257, 2 },
{ 257, -2 }, /* (229) expr ::= MINUS FLOAT */ { 257, 1 },
{ 257, -2 }, /* (230) expr ::= PLUS FLOAT */ { 257, 2 },
{ 257, -1 }, /* (231) expr ::= STRING */ { 257, 2 },
{ 257, -1 }, /* (232) expr ::= NOW */ { 257, 1 },
{ 257, -1 }, /* (233) expr ::= VARIABLE */ { 257, 1 },
{ 257, -2 }, /* (234) expr ::= PLUS VARIABLE */ { 257, 1 },
{ 257, -2 }, /* (235) expr ::= MINUS VARIABLE */ { 257, 2 },
{ 257, -1 }, /* (236) expr ::= BOOL */ { 257, 2 },
{ 257, -1 }, /* (237) expr ::= NULL */ { 257, 1 },
{ 257, -4 }, /* (238) expr ::= ID LP exprlist RP */ { 257, 1 },
{ 257, -4 }, /* (239) expr ::= ID LP STAR RP */ { 257, 4 },
{ 257, -3 }, /* (240) expr ::= expr IS NULL */ { 257, 4 },
{ 257, -4 }, /* (241) expr ::= expr IS NOT NULL */ { 257, 3 },
{ 257, -3 }, /* (242) expr ::= expr LT expr */ { 257, 4 },
{ 257, -3 }, /* (243) expr ::= expr GT expr */ { 257, 3 },
{ 257, -3 }, /* (244) expr ::= expr LE expr */ { 257, 3 },
{ 257, -3 }, /* (245) expr ::= expr GE expr */ { 257, 3 },
{ 257, -3 }, /* (246) expr ::= expr NE expr */ { 257, 3 },
{ 257, -3 }, /* (247) expr ::= expr EQ expr */ { 257, 3 },
{ 257, -5 }, /* (248) expr ::= expr BETWEEN expr AND expr */ { 257, 3 },
{ 257, -3 }, /* (249) expr ::= expr AND expr */ { 257, 5 },
{ 257, -3 }, /* (250) expr ::= expr OR expr */ { 257, 3 },
{ 257, -3 }, /* (251) expr ::= expr PLUS expr */ { 257, 3 },
{ 257, -3 }, /* (252) expr ::= expr MINUS expr */ { 257, 3 },
{ 257, -3 }, /* (253) expr ::= expr STAR expr */ { 257, 3 },
{ 257, -3 }, /* (254) expr ::= expr SLASH expr */ { 257, 3 },
{ 257, -3 }, /* (255) expr ::= expr REM expr */ { 257, 3 },
{ 257, -3 }, /* (256) expr ::= expr LIKE expr */ { 257, 3 },
{ 257, -5 }, /* (257) expr ::= expr IN LP exprlist RP */ { 257, 3 },
{ 267, -3 }, /* (258) exprlist ::= exprlist COMMA expritem */ { 257, 5 },
{ 267, -1 }, /* (259) exprlist ::= expritem */ { 267, 3 },
{ 268, -1 }, /* (260) expritem ::= expr */ { 267, 1 },
{ 268, 0 }, /* (261) expritem ::= */ { 268, 1 },
{ 191, -3 }, /* (262) cmd ::= RESET QUERY CACHE */ { 268, 0 },
{ 191, -3 }, /* (263) cmd ::= SYNCDB ids REPLICA */ { 191, 3 },
{ 191, -7 }, /* (264) cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ { 191, 3 },
{ 191, -7 }, /* (265) cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ { 191, 7 },
{ 191, -7 }, /* (266) cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist */ { 191, 7 },
{ 191, -7 }, /* (267) cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ { 191, 7 },
{ 191, -7 }, /* (268) cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ { 191, 7 },
{ 191, -8 }, /* (269) cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ { 191, 7 },
{ 191, -9 }, /* (270) cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ { 191, 8 },
{ 191, -7 }, /* (271) cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist */ { 191, 9 },
{ 191, -7 }, /* (272) cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ { 191, 7 },
{ 191, -7 }, /* (273) cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ { 191, 7 },
{ 191, -7 }, /* (274) cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist */ { 191, 7 },
{ 191, -7 }, /* (275) cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ { 191, 7 },
{ 191, -7 }, /* (276) cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ { 191, 7 },
{ 191, -8 }, /* (277) cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ { 191, 7 },
{ 191, -9 }, /* (278) cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem */ { 191, 8 },
{ 191, -7 }, /* (279) cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist */ { 191, 9 },
{ 191, -3 }, /* (280) cmd ::= KILL CONNECTION INTEGER */ { 191, 7 },
{ 191, -5 }, /* (281) cmd ::= KILL STREAM INTEGER COLON INTEGER */ { 191, 3 },
{ 191, -5 }, /* (282) cmd ::= KILL QUERY INTEGER COLON INTEGER */ { 191, 5 },
{ 191, 5 },
}; };
static void yy_accept(yyParser*); /* Forward Declaration */ static void yy_accept(yyParser*); /* Forward Declaration */
...@@ -2085,66 +1765,43 @@ static void yy_accept(yyParser*); /* Forward Declaration */ ...@@ -2085,66 +1765,43 @@ static void yy_accept(yyParser*); /* Forward Declaration */
/* /*
** Perform a reduce action and the shift that must immediately ** Perform a reduce action and the shift that must immediately
** follow the reduce. ** follow the reduce.
**
** The yyLookahead and yyLookaheadToken parameters provide reduce actions
** access to the lookahead token (if any). The yyLookahead will be YYNOCODE
** if the lookahead token has already been consumed. As this procedure is
** only called from one place, optimizing compilers will in-line it, which
** means that the extra parameters have no performance impact.
*/ */
static void yy_reduce( static void yy_reduce(
yyParser *yypParser, /* The parser */ yyParser *yypParser, /* The parser */
unsigned int yyruleno, /* Number of the rule by which to reduce */ int yyruleno /* Number of the rule by which to reduce */
int yyLookahead, /* Lookahead token, or YYNOCODE if none */
ParseTOKENTYPE yyLookaheadToken /* Value of the lookahead token */
){ ){
int yygoto; /* The next state */ int yygoto; /* The next state */
int 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 */ yyStackEntry *yymsp; /* The top of the parser's stack */
int yysize; /* Amount to pop the stack */ int yysize; /* Amount to pop the stack */
ParseARG_FETCH; ParseARG_FETCH;
(void)yyLookahead; yymsp = &yypParser->yystack[yypParser->yyidx];
(void)yyLookaheadToken;
yymsp = yypParser->yytos;
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ if( yyTraceFILE && yyruleno>=0
yysize = yyRuleInfo[yyruleno].nrhs; && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){
if( yysize ){ fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt,
fprintf(yyTraceFILE, "%sReduce %d [%s], go to state %d.\n", yyRuleName[yyruleno]);
yyTracePrompt,
yyruleno, yyRuleName[yyruleno], yymsp[yysize].stateno);
}else{
fprintf(yyTraceFILE, "%sReduce %d [%s].\n",
yyTracePrompt, yyruleno, yyRuleName[yyruleno]);
}
} }
#endif /* NDEBUG */ #endif /* NDEBUG */
/* Check that the stack is large enough to grow by a single entry /* Silence complaints from purify about yygotominor being uninitialized
** if the RHS of the rule is empty. This ensures that there is room ** in some cases when it is copied into the stack after the following
** enough on the stack to push the LHS value */ ** switch. yygotominor is uninitialized when a rule reduces that does
if( yyRuleInfo[yyruleno].nrhs==0 ){ ** not set the value of its left-hand side nonterminal. Leaving the
#ifdef YYTRACKMAXSTACKDEPTH ** value of the nonterminal uninitialized is utterly harmless as long
if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ ** as the value is never used. So really the only thing this code
yypParser->yyhwm++; ** accomplishes is to quieten purify.
assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); **
} ** 2007-01-16: The wireshark project (www.wireshark.org) reports that
#endif ** without this code, their parser segfaults. I'm not sure what there
#if YYSTACKDEPTH>0 ** parser is doing to make this happen. This is the second bug report
if( yypParser->yytos>=yypParser->yystackEnd ){ ** from wireshark this week. Clearly they are stressing Lemon in ways
yyStackOverflow(yypParser); ** that it has not been previously stressed... (SQLite ticket #2172)
return; */
} /*memset(&yygotominor, 0, sizeof(yygotominor));*/
#else yygotominor = yyzerominor;
if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){
if( yyGrowStack(yypParser) ){
yyStackOverflow(yypParser);
return;
}
yymsp = yypParser->yytos;
}
#endif
}
switch( yyruleno ){ switch( yyruleno ){
/* Beginning here are the reduction cases. A typical example /* Beginning here are the reduction cases. A typical example
...@@ -2155,12 +1812,7 @@ static void yy_reduce( ...@@ -2155,12 +1812,7 @@ static void yy_reduce(
** #line <lineno> <thisfile> ** #line <lineno> <thisfile>
** break; ** break;
*/ */
/********** Begin reduce actions **********************************************/
YYMINORTYPE yylhsminor;
case 0: /* program ::= cmd */ case 0: /* program ::= cmd */
case 133: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==133);
case 134: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==134);
case 135: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==135);
{} {}
break; break;
case 1: /* cmd ::= SHOW DATABASES */ case 1: /* cmd ::= SHOW DATABASES */
...@@ -2209,17 +1861,16 @@ static void yy_reduce( ...@@ -2209,17 +1861,16 @@ static void yy_reduce(
{ setShowOptions(pInfo, TSDB_MGMT_TABLE_VNODES, &yymsp[0].minor.yy0, 0); } { setShowOptions(pInfo, TSDB_MGMT_TABLE_VNODES, &yymsp[0].minor.yy0, 0); }
break; break;
case 16: /* dbPrefix ::= */ case 16: /* dbPrefix ::= */
{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.type = 0;} {yygotominor.yy0.n = 0; yygotominor.yy0.type = 0;}
break; break;
case 17: /* dbPrefix ::= ids DOT */ case 17: /* dbPrefix ::= ids DOT */
{yylhsminor.yy0 = yymsp[-1].minor.yy0; } {yygotominor.yy0 = yymsp[-1].minor.yy0; }
yymsp[-1].minor.yy0 = yylhsminor.yy0;
break; break;
case 18: /* cpxName ::= */ case 18: /* cpxName ::= */
{yymsp[1].minor.yy0.n = 0; } {yygotominor.yy0.n = 0; }
break; break;
case 19: /* cpxName ::= DOT ids */ case 19: /* cpxName ::= DOT ids */
{yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n += 1; } {yygotominor.yy0 = yymsp[0].minor.yy0; yygotominor.yy0.n += 1; }
break; break;
case 20: /* cmd ::= SHOW CREATE TABLE ids cpxName */ case 20: /* cmd ::= SHOW CREATE TABLE ids cpxName */
{ {
...@@ -2340,19 +1991,16 @@ static void yy_reduce( ...@@ -2340,19 +1991,16 @@ static void yy_reduce(
break; break;
case 48: /* ids ::= ID */ case 48: /* ids ::= ID */
case 49: /* ids ::= STRING */ yytestcase(yyruleno==49); case 49: /* ids ::= STRING */ yytestcase(yyruleno==49);
{yylhsminor.yy0 = yymsp[0].minor.yy0; } {yygotominor.yy0 = yymsp[0].minor.yy0; }
yymsp[0].minor.yy0 = yylhsminor.yy0;
break; break;
case 50: /* ifexists ::= IF EXISTS */ case 50: /* ifexists ::= IF EXISTS */
{ yymsp[-1].minor.yy0.n = 1;} case 52: /* ifnotexists ::= IF NOT EXISTS */ yytestcase(yyruleno==52);
{ yygotominor.yy0.n = 1;}
break; break;
case 51: /* ifexists ::= */ case 51: /* ifexists ::= */
case 53: /* ifnotexists ::= */ yytestcase(yyruleno==53); case 53: /* ifnotexists ::= */ yytestcase(yyruleno==53);
case 174: /* distinct ::= */ yytestcase(yyruleno==174); case 175: /* distinct ::= */ yytestcase(yyruleno==175);
{ yymsp[1].minor.yy0.n = 0;} { yygotominor.yy0.n = 0;}
break;
case 52: /* ifnotexists ::= IF NOT EXISTS */
{ yymsp[-2].minor.yy0.n = 1;}
break; break;
case 54: /* cmd ::= CREATE DNODE ids */ case 54: /* cmd ::= CREATE DNODE ids */
{ setDCLSqlElems(pInfo, TSDB_SQL_CREATE_DNODE, 1, &yymsp[0].minor.yy0);} { setDCLSqlElems(pInfo, TSDB_SQL_CREATE_DNODE, 1, &yymsp[0].minor.yy0);}
...@@ -2376,7 +2024,7 @@ static void yy_reduce( ...@@ -2376,7 +2024,7 @@ static void yy_reduce(
case 71: /* users ::= */ yytestcase(yyruleno==71); case 71: /* users ::= */ yytestcase(yyruleno==71);
case 73: /* conns ::= */ yytestcase(yyruleno==73); case 73: /* conns ::= */ yytestcase(yyruleno==73);
case 75: /* state ::= */ yytestcase(yyruleno==75); case 75: /* state ::= */ yytestcase(yyruleno==75);
{ yymsp[1].minor.yy0.n = 0; } { yygotominor.yy0.n = 0; }
break; break;
case 60: /* pps ::= PPS INTEGER */ case 60: /* pps ::= PPS INTEGER */
case 62: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==62); case 62: /* tseries ::= TSERIES INTEGER */ yytestcase(yyruleno==62);
...@@ -2387,42 +2035,38 @@ static void yy_reduce( ...@@ -2387,42 +2035,38 @@ static void yy_reduce(
case 72: /* users ::= USERS INTEGER */ yytestcase(yyruleno==72); case 72: /* users ::= USERS INTEGER */ yytestcase(yyruleno==72);
case 74: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==74); case 74: /* conns ::= CONNS INTEGER */ yytestcase(yyruleno==74);
case 76: /* state ::= STATE ids */ yytestcase(yyruleno==76); case 76: /* state ::= STATE ids */ yytestcase(yyruleno==76);
{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } { yygotominor.yy0 = yymsp[0].minor.yy0; }
break; break;
case 77: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */ case 77: /* acct_optr ::= pps tseries storage streams qtime dbs users conns state */
{ {
yylhsminor.yy77.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1; yygotominor.yy77.maxUsers = (yymsp[-2].minor.yy0.n>0)?atoi(yymsp[-2].minor.yy0.z):-1;
yylhsminor.yy77.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1; yygotominor.yy77.maxDbs = (yymsp[-3].minor.yy0.n>0)?atoi(yymsp[-3].minor.yy0.z):-1;
yylhsminor.yy77.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1; yygotominor.yy77.maxTimeSeries = (yymsp[-7].minor.yy0.n>0)?atoi(yymsp[-7].minor.yy0.z):-1;
yylhsminor.yy77.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1; yygotominor.yy77.maxStreams = (yymsp[-5].minor.yy0.n>0)?atoi(yymsp[-5].minor.yy0.z):-1;
yylhsminor.yy77.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1; yygotominor.yy77.maxPointsPerSecond = (yymsp[-8].minor.yy0.n>0)?atoi(yymsp[-8].minor.yy0.z):-1;
yylhsminor.yy77.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1; yygotominor.yy77.maxStorage = (yymsp[-6].minor.yy0.n>0)?strtoll(yymsp[-6].minor.yy0.z, NULL, 10):-1;
yylhsminor.yy77.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1; yygotominor.yy77.maxQueryTime = (yymsp[-4].minor.yy0.n>0)?strtoll(yymsp[-4].minor.yy0.z, NULL, 10):-1;
yylhsminor.yy77.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1; yygotominor.yy77.maxConnections = (yymsp[-1].minor.yy0.n>0)?atoi(yymsp[-1].minor.yy0.z):-1;
yylhsminor.yy77.stat = yymsp[0].minor.yy0; yygotominor.yy77.stat = yymsp[0].minor.yy0;
} }
yymsp[-8].minor.yy77 = yylhsminor.yy77;
break; break;
case 78: /* intitemlist ::= intitemlist COMMA intitem */ case 78: /* intitemlist ::= intitemlist COMMA intitem */
case 149: /* tagitemlist ::= tagitemlist COMMA tagitem */ yytestcase(yyruleno==149); case 149: /* tagitemlist ::= tagitemlist COMMA tagitem */ yytestcase(yyruleno==149);
{ yylhsminor.yy93 = tVariantListAppend(yymsp[-2].minor.yy93, &yymsp[0].minor.yy518, -1); } { yygotominor.yy93 = tVariantListAppend(yymsp[-2].minor.yy93, &yymsp[0].minor.yy518, -1); }
yymsp[-2].minor.yy93 = yylhsminor.yy93;
break; break;
case 79: /* intitemlist ::= intitem */ case 79: /* intitemlist ::= intitem */
case 150: /* tagitemlist ::= tagitem */ yytestcase(yyruleno==150); case 150: /* tagitemlist ::= tagitem */ yytestcase(yyruleno==150);
{ yylhsminor.yy93 = tVariantListAppend(NULL, &yymsp[0].minor.yy518, -1); } { yygotominor.yy93 = tVariantListAppend(NULL, &yymsp[0].minor.yy518, -1); }
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 80: /* intitem ::= INTEGER */ case 80: /* intitem ::= INTEGER */
case 151: /* tagitem ::= INTEGER */ yytestcase(yyruleno==151); case 151: /* tagitem ::= INTEGER */ yytestcase(yyruleno==151);
case 152: /* tagitem ::= FLOAT */ yytestcase(yyruleno==152); case 152: /* tagitem ::= FLOAT */ yytestcase(yyruleno==152);
case 153: /* tagitem ::= STRING */ yytestcase(yyruleno==153); case 153: /* tagitem ::= STRING */ yytestcase(yyruleno==153);
case 154: /* tagitem ::= BOOL */ yytestcase(yyruleno==154); case 154: /* tagitem ::= BOOL */ yytestcase(yyruleno==154);
{ toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yylhsminor.yy518, &yymsp[0].minor.yy0); } { toTSDBType(yymsp[0].minor.yy0.type); tVariantCreate(&yygotominor.yy518, &yymsp[0].minor.yy0); }
yymsp[0].minor.yy518 = yylhsminor.yy518;
break; break;
case 81: /* keep ::= KEEP intitemlist */ case 81: /* keep ::= KEEP intitemlist */
{ yymsp[-1].minor.yy93 = yymsp[0].minor.yy93; } { yygotominor.yy93 = yymsp[0].minor.yy93; }
break; break;
case 82: /* cache ::= CACHE INTEGER */ case 82: /* cache ::= CACHE INTEGER */
case 83: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==83); case 83: /* replica ::= REPLICA INTEGER */ yytestcase(yyruleno==83);
...@@ -2439,129 +2083,109 @@ static void yy_reduce( ...@@ -2439,129 +2083,109 @@ static void yy_reduce(
case 94: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==94); case 94: /* update ::= UPDATE INTEGER */ yytestcase(yyruleno==94);
case 95: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==95); case 95: /* cachelast ::= CACHELAST INTEGER */ yytestcase(yyruleno==95);
case 96: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==96); case 96: /* partitions ::= PARTITIONS INTEGER */ yytestcase(yyruleno==96);
{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; } { yygotominor.yy0 = yymsp[0].minor.yy0; }
break; break;
case 97: /* db_optr ::= */ case 97: /* db_optr ::= */
{setDefaultCreateDbOption(&yymsp[1].minor.yy372); yymsp[1].minor.yy372.dbType = TSDB_DB_TYPE_DEFAULT;} {setDefaultCreateDbOption(&yygotominor.yy372); yygotominor.yy372.dbType = TSDB_DB_TYPE_DEFAULT;}
break; break;
case 98: /* db_optr ::= db_optr cache */ case 98: /* db_optr ::= db_optr cache */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.cacheBlockSize = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 99: /* db_optr ::= db_optr replica */ case 99: /* db_optr ::= db_optr replica */
case 116: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==116); case 116: /* alter_db_optr ::= alter_db_optr replica */ yytestcase(yyruleno==116);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.replica = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 100: /* db_optr ::= db_optr quorum */ case 100: /* db_optr ::= db_optr quorum */
case 117: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==117); case 117: /* alter_db_optr ::= alter_db_optr quorum */ yytestcase(yyruleno==117);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.quorum = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 101: /* db_optr ::= db_optr days */ case 101: /* db_optr ::= db_optr days */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.daysPerFile = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 102: /* db_optr ::= db_optr minrows */ case 102: /* db_optr ::= db_optr minrows */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.minRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 103: /* db_optr ::= db_optr maxrows */ case 103: /* db_optr ::= db_optr maxrows */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.maxRowsPerBlock = strtod(yymsp[0].minor.yy0.z, NULL); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 104: /* db_optr ::= db_optr blocks */ case 104: /* db_optr ::= db_optr blocks */
case 119: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==119); case 119: /* alter_db_optr ::= alter_db_optr blocks */ yytestcase(yyruleno==119);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.numOfBlocks = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 105: /* db_optr ::= db_optr ctime */ case 105: /* db_optr ::= db_optr ctime */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.commitTime = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 106: /* db_optr ::= db_optr wal */ case 106: /* db_optr ::= db_optr wal */
case 121: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==121); case 121: /* alter_db_optr ::= alter_db_optr wal */ yytestcase(yyruleno==121);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.walLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 107: /* db_optr ::= db_optr fsync */ case 107: /* db_optr ::= db_optr fsync */
case 122: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==122); case 122: /* alter_db_optr ::= alter_db_optr fsync */ yytestcase(yyruleno==122);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.fsyncPeriod = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 108: /* db_optr ::= db_optr comp */ case 108: /* db_optr ::= db_optr comp */
case 120: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==120); case 120: /* alter_db_optr ::= alter_db_optr comp */ yytestcase(yyruleno==120);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.compressionLevel = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 109: /* db_optr ::= db_optr prec */ case 109: /* db_optr ::= db_optr prec */
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.precision = yymsp[0].minor.yy0; } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.precision = yymsp[0].minor.yy0; }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 110: /* db_optr ::= db_optr keep */ case 110: /* db_optr ::= db_optr keep */
case 118: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==118); case 118: /* alter_db_optr ::= alter_db_optr keep */ yytestcase(yyruleno==118);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.keep = yymsp[0].minor.yy93; } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.keep = yymsp[0].minor.yy93; }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 111: /* db_optr ::= db_optr update */ case 111: /* db_optr ::= db_optr update */
case 123: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==123); case 123: /* alter_db_optr ::= alter_db_optr update */ yytestcase(yyruleno==123);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.update = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 112: /* db_optr ::= db_optr cachelast */ case 112: /* db_optr ::= db_optr cachelast */
case 124: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==124); case 124: /* alter_db_optr ::= alter_db_optr cachelast */ yytestcase(yyruleno==124);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.cachelast = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 113: /* topic_optr ::= db_optr */ case 113: /* topic_optr ::= db_optr */
case 125: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==125); case 125: /* alter_topic_optr ::= alter_db_optr */ yytestcase(yyruleno==125);
{ yylhsminor.yy372 = yymsp[0].minor.yy372; yylhsminor.yy372.dbType = TSDB_DB_TYPE_TOPIC; } { yygotominor.yy372 = yymsp[0].minor.yy372; yygotominor.yy372.dbType = TSDB_DB_TYPE_TOPIC; }
yymsp[0].minor.yy372 = yylhsminor.yy372;
break; break;
case 114: /* topic_optr ::= topic_optr partitions */ case 114: /* topic_optr ::= topic_optr partitions */
case 126: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==126); case 126: /* alter_topic_optr ::= alter_topic_optr partitions */ yytestcase(yyruleno==126);
{ yylhsminor.yy372 = yymsp[-1].minor.yy372; yylhsminor.yy372.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); } { yygotominor.yy372 = yymsp[-1].minor.yy372; yygotominor.yy372.partitions = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
yymsp[-1].minor.yy372 = yylhsminor.yy372;
break; break;
case 115: /* alter_db_optr ::= */ case 115: /* alter_db_optr ::= */
{ setDefaultCreateDbOption(&yymsp[1].minor.yy372); yymsp[1].minor.yy372.dbType = TSDB_DB_TYPE_DEFAULT;} { setDefaultCreateDbOption(&yygotominor.yy372); yygotominor.yy372.dbType = TSDB_DB_TYPE_DEFAULT;}
break; break;
case 127: /* typename ::= ids */ case 127: /* typename ::= ids */
{ {
yymsp[0].minor.yy0.type = 0; yymsp[0].minor.yy0.type = 0;
tSetColumnType (&yylhsminor.yy325, &yymsp[0].minor.yy0); tSetColumnType (&yygotominor.yy325, &yymsp[0].minor.yy0);
} }
yymsp[0].minor.yy325 = yylhsminor.yy325;
break; break;
case 128: /* typename ::= ids LP signed RP */ case 128: /* typename ::= ids LP signed RP */
{ {
if (yymsp[-1].minor.yy279 <= 0) { if (yymsp[-1].minor.yy279 <= 0) {
yymsp[-3].minor.yy0.type = 0; yymsp[-3].minor.yy0.type = 0;
tSetColumnType(&yylhsminor.yy325, &yymsp[-3].minor.yy0); tSetColumnType(&yygotominor.yy325, &yymsp[-3].minor.yy0);
} else { } else {
yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy279; // negative value of name length yymsp[-3].minor.yy0.type = -yymsp[-1].minor.yy279; // negative value of name length
tSetColumnType(&yylhsminor.yy325, &yymsp[-3].minor.yy0); tSetColumnType(&yygotominor.yy325, &yymsp[-3].minor.yy0);
} }
} }
yymsp[-3].minor.yy325 = yylhsminor.yy325;
break; break;
case 129: /* typename ::= ids UNSIGNED */ case 129: /* typename ::= ids UNSIGNED */
{ {
yymsp[-1].minor.yy0.type = 0; yymsp[-1].minor.yy0.type = 0;
yymsp[-1].minor.yy0.n = ((yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z); yymsp[-1].minor.yy0.n = ((yymsp[0].minor.yy0.z + yymsp[0].minor.yy0.n) - yymsp[-1].minor.yy0.z);
tSetColumnType (&yylhsminor.yy325, &yymsp[-1].minor.yy0); tSetColumnType (&yygotominor.yy325, &yymsp[-1].minor.yy0);
} }
yymsp[-1].minor.yy325 = yylhsminor.yy325;
break; break;
case 130: /* signed ::= INTEGER */ case 130: /* signed ::= INTEGER */
{ yylhsminor.yy279 = strtol(yymsp[0].minor.yy0.z, NULL, 10); } case 131: /* signed ::= PLUS INTEGER */ yytestcase(yyruleno==131);
yymsp[0].minor.yy279 = yylhsminor.yy279; { yygotominor.yy279 = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
break;
case 131: /* signed ::= PLUS INTEGER */
{ yymsp[-1].minor.yy279 = strtol(yymsp[0].minor.yy0.z, NULL, 10); }
break; break;
case 132: /* signed ::= MINUS INTEGER */ case 132: /* signed ::= MINUS INTEGER */
{ yymsp[-1].minor.yy279 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);} case 133: /* cmd ::= CREATE TABLE create_table_args */ yytestcase(yyruleno==133);
case 134: /* cmd ::= CREATE TABLE create_stable_args */ yytestcase(yyruleno==134);
case 135: /* cmd ::= CREATE STABLE create_stable_args */ yytestcase(yyruleno==135);
{ yygotominor.yy279 = -strtol(yymsp[0].minor.yy0.z, NULL, 10);}
break; break;
case 136: /* cmd ::= CREATE TABLE create_table_list */ case 136: /* cmd ::= CREATE TABLE create_table_list */
{ pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy532;} { pInfo->type = TSDB_SQL_CREATE_TABLE; pInfo->pCreateTableInfo = yymsp[0].minor.yy532;}
...@@ -2573,503 +2197,429 @@ static void yy_reduce( ...@@ -2573,503 +2197,429 @@ static void yy_reduce(
taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy528); taosArrayPush(pCreateTable->childTableInfo, &yymsp[0].minor.yy528);
pCreateTable->type = TSQL_CREATE_TABLE_FROM_STABLE; pCreateTable->type = TSQL_CREATE_TABLE_FROM_STABLE;
yylhsminor.yy532 = pCreateTable; yygotominor.yy532 = pCreateTable;
} }
yymsp[0].minor.yy532 = yylhsminor.yy532;
break; break;
case 138: /* create_table_list ::= create_table_list create_from_stable */ case 138: /* create_table_list ::= create_table_list create_from_stable */
{ {
taosArrayPush(yymsp[-1].minor.yy532->childTableInfo, &yymsp[0].minor.yy528); taosArrayPush(yymsp[-1].minor.yy532->childTableInfo, &yymsp[0].minor.yy528);
yylhsminor.yy532 = yymsp[-1].minor.yy532; yygotominor.yy532 = yymsp[-1].minor.yy532;
} }
yymsp[-1].minor.yy532 = yylhsminor.yy532;
break; break;
case 139: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */ case 139: /* create_table_args ::= ifnotexists ids cpxName LP columnlist RP */
{ {
yylhsminor.yy532 = tSetCreateTableInfo(yymsp[-1].minor.yy93, NULL, NULL, TSQL_CREATE_TABLE); yygotominor.yy532 = tSetCreateTableInfo(yymsp[-1].minor.yy93, NULL, NULL, TSQL_CREATE_TABLE);
setSqlInfo(pInfo, yylhsminor.yy532, NULL, TSDB_SQL_CREATE_TABLE); setSqlInfo(pInfo, yygotominor.yy532, NULL, TSDB_SQL_CREATE_TABLE);
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
setCreatedTableName(pInfo, &yymsp[-4].minor.yy0, &yymsp[-5].minor.yy0); setCreatedTableName(pInfo, &yymsp[-4].minor.yy0, &yymsp[-5].minor.yy0);
} }
yymsp[-5].minor.yy532 = yylhsminor.yy532;
break; break;
case 140: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */ case 140: /* create_stable_args ::= ifnotexists ids cpxName LP columnlist RP TAGS LP columnlist RP */
{ {
yylhsminor.yy532 = tSetCreateTableInfo(yymsp[-5].minor.yy93, yymsp[-1].minor.yy93, NULL, TSQL_CREATE_STABLE); yygotominor.yy532 = tSetCreateTableInfo(yymsp[-5].minor.yy93, yymsp[-1].minor.yy93, NULL, TSQL_CREATE_STABLE);
setSqlInfo(pInfo, yylhsminor.yy532, NULL, TSDB_SQL_CREATE_TABLE); setSqlInfo(pInfo, yygotominor.yy532, NULL, TSDB_SQL_CREATE_TABLE);
yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n;
setCreatedTableName(pInfo, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); setCreatedTableName(pInfo, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0);
} }
yymsp[-9].minor.yy532 = yylhsminor.yy532;
break; break;
case 141: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */ case 141: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName TAGS LP tagitemlist RP */
{ {
yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n;
yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n;
yylhsminor.yy528 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy93, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0); yygotominor.yy528 = createNewChildTableInfo(&yymsp[-5].minor.yy0, NULL, yymsp[-1].minor.yy93, &yymsp[-8].minor.yy0, &yymsp[-9].minor.yy0);
} }
yymsp[-9].minor.yy528 = yylhsminor.yy528;
break; break;
case 142: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */ case 142: /* create_from_stable ::= ifnotexists ids cpxName USING ids cpxName LP tagNamelist RP TAGS LP tagitemlist RP */
{ {
yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n; yymsp[-8].minor.yy0.n += yymsp[-7].minor.yy0.n;
yymsp[-11].minor.yy0.n += yymsp[-10].minor.yy0.n; yymsp[-11].minor.yy0.n += yymsp[-10].minor.yy0.n;
yylhsminor.yy528 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy93, yymsp[-1].minor.yy93, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0); yygotominor.yy528 = createNewChildTableInfo(&yymsp[-8].minor.yy0, yymsp[-5].minor.yy93, yymsp[-1].minor.yy93, &yymsp[-11].minor.yy0, &yymsp[-12].minor.yy0);
} }
yymsp[-12].minor.yy528 = yylhsminor.yy528;
break; break;
case 143: /* tagNamelist ::= tagNamelist COMMA ids */ case 143: /* tagNamelist ::= tagNamelist COMMA ids */
{taosArrayPush(yymsp[-2].minor.yy93, &yymsp[0].minor.yy0); yylhsminor.yy93 = yymsp[-2].minor.yy93; } {taosArrayPush(yymsp[-2].minor.yy93, &yymsp[0].minor.yy0); yygotominor.yy93 = yymsp[-2].minor.yy93; }
yymsp[-2].minor.yy93 = yylhsminor.yy93;
break; break;
case 144: /* tagNamelist ::= ids */ case 144: /* tagNamelist ::= ids */
{yylhsminor.yy93 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yylhsminor.yy93, &yymsp[0].minor.yy0);} {yygotominor.yy93 = taosArrayInit(4, sizeof(SStrToken)); taosArrayPush(yygotominor.yy93, &yymsp[0].minor.yy0);}
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 145: /* create_table_args ::= ifnotexists ids cpxName AS select */ case 145: /* create_table_args ::= ifnotexists ids cpxName AS select */
{ {
yylhsminor.yy532 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy224, TSQL_CREATE_STREAM); yygotominor.yy532 = tSetCreateTableInfo(NULL, NULL, yymsp[0].minor.yy224, TSQL_CREATE_STREAM);
setSqlInfo(pInfo, yylhsminor.yy532, NULL, TSDB_SQL_CREATE_TABLE); setSqlInfo(pInfo, yygotominor.yy532, NULL, TSDB_SQL_CREATE_TABLE);
yymsp[-3].minor.yy0.n += yymsp[-2].minor.yy0.n; yymsp[-3].minor.yy0.n += yymsp[-2].minor.yy0.n;
setCreatedTableName(pInfo, &yymsp[-3].minor.yy0, &yymsp[-4].minor.yy0); setCreatedTableName(pInfo, &yymsp[-3].minor.yy0, &yymsp[-4].minor.yy0);
} }
yymsp[-4].minor.yy532 = yylhsminor.yy532;
break; break;
case 146: /* columnlist ::= columnlist COMMA column */ case 146: /* columnlist ::= columnlist COMMA column */
{taosArrayPush(yymsp[-2].minor.yy93, &yymsp[0].minor.yy325); yylhsminor.yy93 = yymsp[-2].minor.yy93; } {taosArrayPush(yymsp[-2].minor.yy93, &yymsp[0].minor.yy325); yygotominor.yy93 = yymsp[-2].minor.yy93; }
yymsp[-2].minor.yy93 = yylhsminor.yy93;
break; break;
case 147: /* columnlist ::= column */ case 147: /* columnlist ::= column */
{yylhsminor.yy93 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yylhsminor.yy93, &yymsp[0].minor.yy325);} {yygotominor.yy93 = taosArrayInit(4, sizeof(TAOS_FIELD)); taosArrayPush(yygotominor.yy93, &yymsp[0].minor.yy325);}
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 148: /* column ::= ids typename */ case 148: /* column ::= ids typename */
{ {
tSetColumnInfo(&yylhsminor.yy325, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy325); tSetColumnInfo(&yygotominor.yy325, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy325);
} }
yymsp[-1].minor.yy325 = yylhsminor.yy325;
break; break;
case 155: /* tagitem ::= NULL */ case 155: /* tagitem ::= NULL */
{ yymsp[0].minor.yy0.type = 0; tVariantCreate(&yylhsminor.yy518, &yymsp[0].minor.yy0); } { yymsp[0].minor.yy0.type = 0; tVariantCreate(&yygotominor.yy518, &yymsp[0].minor.yy0); }
yymsp[0].minor.yy518 = yylhsminor.yy518;
break; break;
case 156: /* tagitem ::= MINUS INTEGER */ case 156: /* tagitem ::= NOW */
case 157: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==157); { yymsp[0].minor.yy0.type = TSDB_DATA_TYPE_TIMESTAMP; tVariantCreate(&yygotominor.yy518, &yymsp[0].minor.yy0);}
case 158: /* tagitem ::= PLUS INTEGER */ yytestcase(yyruleno==158); break;
case 159: /* tagitem ::= PLUS FLOAT */ yytestcase(yyruleno==159); case 157: /* tagitem ::= MINUS INTEGER */
case 158: /* tagitem ::= MINUS FLOAT */ yytestcase(yyruleno==158);
case 159: /* tagitem ::= PLUS INTEGER */ yytestcase(yyruleno==159);
case 160: /* tagitem ::= PLUS FLOAT */ yytestcase(yyruleno==160);
{ {
yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n;
yymsp[-1].minor.yy0.type = yymsp[0].minor.yy0.type; yymsp[-1].minor.yy0.type = yymsp[0].minor.yy0.type;
toTSDBType(yymsp[-1].minor.yy0.type); toTSDBType(yymsp[-1].minor.yy0.type);
tVariantCreate(&yylhsminor.yy518, &yymsp[-1].minor.yy0); tVariantCreate(&yygotominor.yy518, &yymsp[-1].minor.yy0);
} }
yymsp[-1].minor.yy518 = yylhsminor.yy518;
break; break;
case 160: /* select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */ case 161: /* select ::= SELECT selcollist from where_opt interval_opt session_option windowstate_option fill_opt sliding_opt groupby_opt orderby_opt having_opt slimit_opt limit_opt */
{ {
yylhsminor.yy224 = tSetQuerySqlNode(&yymsp[-13].minor.yy0, yymsp[-12].minor.yy93, yymsp[-11].minor.yy330, yymsp[-10].minor.yy68, yymsp[-4].minor.yy93, yymsp[-3].minor.yy93, &yymsp[-9].minor.yy42, &yymsp[-8].minor.yy15, &yymsp[-7].minor.yy274, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy93, &yymsp[0].minor.yy284, &yymsp[-1].minor.yy284, yymsp[-2].minor.yy68); yygotominor.yy224 = tSetQuerySqlNode(&yymsp[-13].minor.yy0, yymsp[-12].minor.yy93, yymsp[-11].minor.yy330, yymsp[-10].minor.yy68, yymsp[-4].minor.yy93, yymsp[-3].minor.yy93, &yymsp[-9].minor.yy42, &yymsp[-8].minor.yy15, &yymsp[-7].minor.yy274, &yymsp[-5].minor.yy0, yymsp[-6].minor.yy93, &yymsp[0].minor.yy284, &yymsp[-1].minor.yy284, yymsp[-2].minor.yy68);
} }
yymsp[-13].minor.yy224 = yylhsminor.yy224;
break; break;
case 161: /* select ::= LP select RP */ case 162: /* select ::= LP select RP */
{yymsp[-2].minor.yy224 = yymsp[-1].minor.yy224;} {yygotominor.yy224 = yymsp[-1].minor.yy224;}
break; break;
case 162: /* union ::= select */ case 163: /* union ::= select */
{ yylhsminor.yy93 = setSubclause(NULL, yymsp[0].minor.yy224); } { yygotominor.yy93 = setSubclause(NULL, yymsp[0].minor.yy224); }
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 163: /* union ::= union UNION ALL select */ case 164: /* union ::= union UNION ALL select */
{ yylhsminor.yy93 = appendSelectClause(yymsp[-3].minor.yy93, yymsp[0].minor.yy224); } { yygotominor.yy93 = appendSelectClause(yymsp[-3].minor.yy93, yymsp[0].minor.yy224); }
yymsp[-3].minor.yy93 = yylhsminor.yy93;
break; break;
case 164: /* cmd ::= union */ case 165: /* cmd ::= union */
{ setSqlInfo(pInfo, yymsp[0].minor.yy93, NULL, TSDB_SQL_SELECT); } { setSqlInfo(pInfo, yymsp[0].minor.yy93, NULL, TSDB_SQL_SELECT); }
break; break;
case 165: /* select ::= SELECT selcollist */ case 166: /* select ::= SELECT selcollist */
{ {
yylhsminor.yy224 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy93, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); yygotominor.yy224 = tSetQuerySqlNode(&yymsp[-1].minor.yy0, yymsp[0].minor.yy93, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
} }
yymsp[-1].minor.yy224 = yylhsminor.yy224;
break; break;
case 166: /* sclp ::= selcollist COMMA */ case 167: /* sclp ::= selcollist COMMA */
{yylhsminor.yy93 = yymsp[-1].minor.yy93;} {yygotominor.yy93 = yymsp[-1].minor.yy93;}
yymsp[-1].minor.yy93 = yylhsminor.yy93;
break; break;
case 167: /* sclp ::= */ case 168: /* sclp ::= */
case 197: /* orderby_opt ::= */ yytestcase(yyruleno==197); case 198: /* orderby_opt ::= */ yytestcase(yyruleno==198);
{yymsp[1].minor.yy93 = 0;} {yygotominor.yy93 = 0;}
break; break;
case 168: /* selcollist ::= sclp distinct expr as */ case 169: /* selcollist ::= sclp distinct expr as */
{ {
yylhsminor.yy93 = tSqlExprListAppend(yymsp[-3].minor.yy93, yymsp[-1].minor.yy68, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0); yygotominor.yy93 = tSqlExprListAppend(yymsp[-3].minor.yy93, yymsp[-1].minor.yy68, yymsp[-2].minor.yy0.n? &yymsp[-2].minor.yy0:0, yymsp[0].minor.yy0.n?&yymsp[0].minor.yy0:0);
} }
yymsp[-3].minor.yy93 = yylhsminor.yy93;
break; break;
case 169: /* selcollist ::= sclp STAR */ case 170: /* selcollist ::= sclp STAR */
{ {
tSqlExpr *pNode = tSqlExprCreateIdValue(NULL, TK_ALL); tSqlExpr *pNode = tSqlExprCreateIdValue(NULL, TK_ALL);
yylhsminor.yy93 = tSqlExprListAppend(yymsp[-1].minor.yy93, pNode, 0, 0); yygotominor.yy93 = tSqlExprListAppend(yymsp[-1].minor.yy93, pNode, 0, 0);
} }
yymsp[-1].minor.yy93 = yylhsminor.yy93;
break;
case 170: /* as ::= AS ids */
{ yymsp[-1].minor.yy0 = yymsp[0].minor.yy0; }
break; break;
case 171: /* as ::= ids */ case 171: /* as ::= AS ids */
{ yylhsminor.yy0 = yymsp[0].minor.yy0; } case 172: /* as ::= ids */ yytestcase(yyruleno==172);
yymsp[0].minor.yy0 = yylhsminor.yy0; { yygotominor.yy0 = yymsp[0].minor.yy0; }
break; break;
case 172: /* as ::= */ case 173: /* as ::= */
{ yymsp[1].minor.yy0.n = 0; } { yygotominor.yy0.n = 0; }
break; break;
case 173: /* distinct ::= DISTINCT */ case 174: /* distinct ::= DISTINCT */
{ yylhsminor.yy0 = yymsp[0].minor.yy0; } { yygotominor.yy0 = yymsp[0].minor.yy0; }
yymsp[0].minor.yy0 = yylhsminor.yy0;
break; break;
case 175: /* from ::= FROM tablelist */ case 176: /* from ::= FROM tablelist */
case 176: /* from ::= FROM sub */ yytestcase(yyruleno==176); case 177: /* from ::= FROM sub */ yytestcase(yyruleno==177);
{yymsp[-1].minor.yy330 = yymsp[0].minor.yy330;} {yygotominor.yy330 = yymsp[0].minor.yy330;}
break; break;
case 177: /* sub ::= LP union RP */ case 178: /* sub ::= LP union RP */
{yymsp[-2].minor.yy330 = addSubqueryElem(NULL, yymsp[-1].minor.yy93, NULL);} {yygotominor.yy330 = addSubqueryElem(NULL, yymsp[-1].minor.yy93, NULL);}
break; break;
case 178: /* sub ::= LP union RP ids */ case 179: /* sub ::= LP union RP ids */
{yymsp[-3].minor.yy330 = addSubqueryElem(NULL, yymsp[-2].minor.yy93, &yymsp[0].minor.yy0);} {yygotominor.yy330 = addSubqueryElem(NULL, yymsp[-2].minor.yy93, &yymsp[0].minor.yy0);}
break; break;
case 179: /* sub ::= sub COMMA LP union RP ids */ case 180: /* sub ::= sub COMMA LP union RP ids */
{yylhsminor.yy330 = addSubqueryElem(yymsp[-5].minor.yy330, yymsp[-2].minor.yy93, &yymsp[0].minor.yy0);} {yygotominor.yy330 = addSubqueryElem(yymsp[-5].minor.yy330, yymsp[-2].minor.yy93, &yymsp[0].minor.yy0);}
yymsp[-5].minor.yy330 = yylhsminor.yy330;
break; break;
case 180: /* tablelist ::= ids cpxName */ case 181: /* tablelist ::= ids cpxName */
{ {
yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n;
yylhsminor.yy330 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL); yygotominor.yy330 = setTableNameList(NULL, &yymsp[-1].minor.yy0, NULL);
} }
yymsp[-1].minor.yy330 = yylhsminor.yy330;
break; break;
case 181: /* tablelist ::= ids cpxName ids */ case 182: /* tablelist ::= ids cpxName ids */
{ {
yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n;
yylhsminor.yy330 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); yygotominor.yy330 = setTableNameList(NULL, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0);
} }
yymsp[-2].minor.yy330 = yylhsminor.yy330;
break; break;
case 182: /* tablelist ::= tablelist COMMA ids cpxName */ case 183: /* tablelist ::= tablelist COMMA ids cpxName */
{ {
yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n;
yylhsminor.yy330 = setTableNameList(yymsp[-3].minor.yy330, &yymsp[-1].minor.yy0, NULL); yygotominor.yy330 = setTableNameList(yymsp[-3].minor.yy330, &yymsp[-1].minor.yy0, NULL);
} }
yymsp[-3].minor.yy330 = yylhsminor.yy330;
break; break;
case 183: /* tablelist ::= tablelist COMMA ids cpxName ids */ case 184: /* tablelist ::= tablelist COMMA ids cpxName ids */
{ {
yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n; yymsp[-2].minor.yy0.n += yymsp[-1].minor.yy0.n;
yylhsminor.yy330 = setTableNameList(yymsp[-4].minor.yy330, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); yygotominor.yy330 = setTableNameList(yymsp[-4].minor.yy330, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0);
} }
yymsp[-4].minor.yy330 = yylhsminor.yy330;
break; break;
case 184: /* tmvar ::= VARIABLE */ case 185: /* tmvar ::= VARIABLE */
{yylhsminor.yy0 = yymsp[0].minor.yy0;} {yygotominor.yy0 = yymsp[0].minor.yy0;}
yymsp[0].minor.yy0 = yylhsminor.yy0;
break; break;
case 185: /* interval_opt ::= INTERVAL LP tmvar RP */ case 186: /* interval_opt ::= INTERVAL LP tmvar RP */
{yymsp[-3].minor.yy42.interval = yymsp[-1].minor.yy0; yymsp[-3].minor.yy42.offset.n = 0;} {yygotominor.yy42.interval = yymsp[-1].minor.yy0; yygotominor.yy42.offset.n = 0;}
break; break;
case 186: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */ case 187: /* interval_opt ::= INTERVAL LP tmvar COMMA tmvar RP */
{yymsp[-5].minor.yy42.interval = yymsp[-3].minor.yy0; yymsp[-5].minor.yy42.offset = yymsp[-1].minor.yy0;} {yygotominor.yy42.interval = yymsp[-3].minor.yy0; yygotominor.yy42.offset = yymsp[-1].minor.yy0;}
break; break;
case 187: /* interval_opt ::= */ case 188: /* interval_opt ::= */
{memset(&yymsp[1].minor.yy42, 0, sizeof(yymsp[1].minor.yy42));} {memset(&yygotominor.yy42, 0, sizeof(yygotominor.yy42));}
break; break;
case 188: /* session_option ::= */ case 189: /* session_option ::= */
{yymsp[1].minor.yy15.col.n = 0; yymsp[1].minor.yy15.gap.n = 0;} {yygotominor.yy15.col.n = 0; yygotominor.yy15.gap.n = 0;}
break; break;
case 189: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */ case 190: /* session_option ::= SESSION LP ids cpxName COMMA tmvar RP */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
yymsp[-6].minor.yy15.col = yymsp[-4].minor.yy0; yygotominor.yy15.col = yymsp[-4].minor.yy0;
yymsp[-6].minor.yy15.gap = yymsp[-1].minor.yy0; yygotominor.yy15.gap = yymsp[-1].minor.yy0;
} }
break; break;
case 190: /* windowstate_option ::= */ case 191: /* windowstate_option ::= */
{ yymsp[1].minor.yy274.col.n = 0; yymsp[1].minor.yy274.col.z = NULL;} { yygotominor.yy274.col.n = 0; yygotominor.yy274.col.z = NULL;}
break; break;
case 191: /* windowstate_option ::= STATE_WINDOW LP ids RP */ case 192: /* windowstate_option ::= STATE_WINDOW LP ids RP */
{ yymsp[-3].minor.yy274.col = yymsp[-1].minor.yy0; } { yygotominor.yy274.col = yymsp[-1].minor.yy0; }
break; break;
case 192: /* fill_opt ::= */ case 193: /* fill_opt ::= */
{ yymsp[1].minor.yy93 = 0; } { yygotominor.yy93 = 0; }
break; break;
case 193: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */ case 194: /* fill_opt ::= FILL LP ID COMMA tagitemlist RP */
{ {
tVariant A = {0}; tVariant A = {0};
toTSDBType(yymsp[-3].minor.yy0.type); toTSDBType(yymsp[-3].minor.yy0.type);
tVariantCreate(&A, &yymsp[-3].minor.yy0); tVariantCreate(&A, &yymsp[-3].minor.yy0);
tVariantListInsert(yymsp[-1].minor.yy93, &A, -1, 0); tVariantListInsert(yymsp[-1].minor.yy93, &A, -1, 0);
yymsp[-5].minor.yy93 = yymsp[-1].minor.yy93; yygotominor.yy93 = yymsp[-1].minor.yy93;
} }
break; break;
case 194: /* fill_opt ::= FILL LP ID RP */ case 195: /* fill_opt ::= FILL LP ID RP */
{ {
toTSDBType(yymsp[-1].minor.yy0.type); toTSDBType(yymsp[-1].minor.yy0.type);
yymsp[-3].minor.yy93 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1); yygotominor.yy93 = tVariantListAppendToken(NULL, &yymsp[-1].minor.yy0, -1);
} }
break; break;
case 195: /* sliding_opt ::= SLIDING LP tmvar RP */ case 196: /* sliding_opt ::= SLIDING LP tmvar RP */
{yymsp[-3].minor.yy0 = yymsp[-1].minor.yy0; } {yygotominor.yy0 = yymsp[-1].minor.yy0; }
break; break;
case 196: /* sliding_opt ::= */ case 197: /* sliding_opt ::= */
{yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = NULL; yymsp[1].minor.yy0.type = 0; } {yygotominor.yy0.n = 0; yygotominor.yy0.z = NULL; yygotominor.yy0.type = 0; }
break; break;
case 198: /* orderby_opt ::= ORDER BY sortlist */ case 199: /* orderby_opt ::= ORDER BY sortlist */
{yymsp[-2].minor.yy93 = yymsp[0].minor.yy93;} {yygotominor.yy93 = yymsp[0].minor.yy93;}
break; break;
case 199: /* sortlist ::= sortlist COMMA item sortorder */ case 200: /* sortlist ::= sortlist COMMA item sortorder */
{ {
yylhsminor.yy93 = tVariantListAppend(yymsp[-3].minor.yy93, &yymsp[-1].minor.yy518, yymsp[0].minor.yy150); yygotominor.yy93 = tVariantListAppend(yymsp[-3].minor.yy93, &yymsp[-1].minor.yy518, yymsp[0].minor.yy150);
} }
yymsp[-3].minor.yy93 = yylhsminor.yy93;
break; break;
case 200: /* sortlist ::= item sortorder */ case 201: /* sortlist ::= item sortorder */
{ {
yylhsminor.yy93 = tVariantListAppend(NULL, &yymsp[-1].minor.yy518, yymsp[0].minor.yy150); yygotominor.yy93 = tVariantListAppend(NULL, &yymsp[-1].minor.yy518, yymsp[0].minor.yy150);
} }
yymsp[-1].minor.yy93 = yylhsminor.yy93;
break; break;
case 201: /* item ::= ids cpxName */ case 202: /* item ::= ids cpxName */
{ {
toTSDBType(yymsp[-1].minor.yy0.type); toTSDBType(yymsp[-1].minor.yy0.type);
yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n;
tVariantCreate(&yylhsminor.yy518, &yymsp[-1].minor.yy0); tVariantCreate(&yygotominor.yy518, &yymsp[-1].minor.yy0);
} }
yymsp[-1].minor.yy518 = yylhsminor.yy518;
break;
case 202: /* sortorder ::= ASC */
{ yymsp[0].minor.yy150 = TSDB_ORDER_ASC; }
break; break;
case 203: /* sortorder ::= DESC */ case 203: /* sortorder ::= ASC */
{ yymsp[0].minor.yy150 = TSDB_ORDER_DESC;} case 205: /* sortorder ::= */ yytestcase(yyruleno==205);
{ yygotominor.yy150 = TSDB_ORDER_ASC; }
break; break;
case 204: /* sortorder ::= */ case 204: /* sortorder ::= DESC */
{ yymsp[1].minor.yy150 = TSDB_ORDER_ASC; } { yygotominor.yy150 = TSDB_ORDER_DESC;}
break; break;
case 205: /* groupby_opt ::= */ case 206: /* groupby_opt ::= */
{ yymsp[1].minor.yy93 = 0;} { yygotominor.yy93 = 0;}
break; break;
case 206: /* groupby_opt ::= GROUP BY grouplist */ case 207: /* groupby_opt ::= GROUP BY grouplist */
{ yymsp[-2].minor.yy93 = yymsp[0].minor.yy93;} { yygotominor.yy93 = yymsp[0].minor.yy93;}
break; break;
case 207: /* grouplist ::= grouplist COMMA item */ case 208: /* grouplist ::= grouplist COMMA item */
{ {
yylhsminor.yy93 = tVariantListAppend(yymsp[-2].minor.yy93, &yymsp[0].minor.yy518, -1); yygotominor.yy93 = tVariantListAppend(yymsp[-2].minor.yy93, &yymsp[0].minor.yy518, -1);
} }
yymsp[-2].minor.yy93 = yylhsminor.yy93;
break; break;
case 208: /* grouplist ::= item */ case 209: /* grouplist ::= item */
{ {
yylhsminor.yy93 = tVariantListAppend(NULL, &yymsp[0].minor.yy518, -1); yygotominor.yy93 = tVariantListAppend(NULL, &yymsp[0].minor.yy518, -1);
} }
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 209: /* having_opt ::= */ case 210: /* having_opt ::= */
case 219: /* where_opt ::= */ yytestcase(yyruleno==219); case 220: /* where_opt ::= */ yytestcase(yyruleno==220);
case 261: /* expritem ::= */ yytestcase(yyruleno==261); case 262: /* expritem ::= */ yytestcase(yyruleno==262);
{yymsp[1].minor.yy68 = 0;} {yygotominor.yy68 = 0;}
break; break;
case 210: /* having_opt ::= HAVING expr */ case 211: /* having_opt ::= HAVING expr */
case 220: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==220); case 221: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==221);
{yymsp[-1].minor.yy68 = yymsp[0].minor.yy68;} case 261: /* expritem ::= expr */ yytestcase(yyruleno==261);
{yygotominor.yy68 = yymsp[0].minor.yy68;}
break; break;
case 211: /* limit_opt ::= */ case 212: /* limit_opt ::= */
case 215: /* slimit_opt ::= */ yytestcase(yyruleno==215); case 216: /* slimit_opt ::= */ yytestcase(yyruleno==216);
{yymsp[1].minor.yy284.limit = -1; yymsp[1].minor.yy284.offset = 0;} {yygotominor.yy284.limit = -1; yygotominor.yy284.offset = 0;}
break; break;
case 212: /* limit_opt ::= LIMIT signed */ case 213: /* limit_opt ::= LIMIT signed */
case 216: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==216); case 217: /* slimit_opt ::= SLIMIT signed */ yytestcase(yyruleno==217);
{yymsp[-1].minor.yy284.limit = yymsp[0].minor.yy279; yymsp[-1].minor.yy284.offset = 0;} {yygotominor.yy284.limit = yymsp[0].minor.yy279; yygotominor.yy284.offset = 0;}
break; break;
case 213: /* limit_opt ::= LIMIT signed OFFSET signed */ case 214: /* limit_opt ::= LIMIT signed OFFSET signed */
{ yymsp[-3].minor.yy284.limit = yymsp[-2].minor.yy279; yymsp[-3].minor.yy284.offset = yymsp[0].minor.yy279;} { yygotominor.yy284.limit = yymsp[-2].minor.yy279; yygotominor.yy284.offset = yymsp[0].minor.yy279;}
break; break;
case 214: /* limit_opt ::= LIMIT signed COMMA signed */ case 215: /* limit_opt ::= LIMIT signed COMMA signed */
{ yymsp[-3].minor.yy284.limit = yymsp[0].minor.yy279; yymsp[-3].minor.yy284.offset = yymsp[-2].minor.yy279;} { yygotominor.yy284.limit = yymsp[0].minor.yy279; yygotominor.yy284.offset = yymsp[-2].minor.yy279;}
break; break;
case 217: /* slimit_opt ::= SLIMIT signed SOFFSET signed */ case 218: /* slimit_opt ::= SLIMIT signed SOFFSET signed */
{yymsp[-3].minor.yy284.limit = yymsp[-2].minor.yy279; yymsp[-3].minor.yy284.offset = yymsp[0].minor.yy279;} {yygotominor.yy284.limit = yymsp[-2].minor.yy279; yygotominor.yy284.offset = yymsp[0].minor.yy279;}
break; break;
case 218: /* slimit_opt ::= SLIMIT signed COMMA signed */ case 219: /* slimit_opt ::= SLIMIT signed COMMA signed */
{yymsp[-3].minor.yy284.limit = yymsp[0].minor.yy279; yymsp[-3].minor.yy284.offset = yymsp[-2].minor.yy279;} {yygotominor.yy284.limit = yymsp[0].minor.yy279; yygotominor.yy284.offset = yymsp[-2].minor.yy279;}
break; break;
case 221: /* expr ::= LP expr RP */ case 222: /* expr ::= LP expr RP */
{yylhsminor.yy68 = yymsp[-1].minor.yy68; yylhsminor.yy68->token.z = yymsp[-2].minor.yy0.z; yylhsminor.yy68->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);} {yygotominor.yy68 = yymsp[-1].minor.yy68; yygotominor.yy68->token.z = yymsp[-2].minor.yy0.z; yygotominor.yy68->token.n = (yymsp[0].minor.yy0.z - yymsp[-2].minor.yy0.z + 1);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 222: /* expr ::= ID */ case 223: /* expr ::= ID */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_ID);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 223: /* expr ::= ID DOT ID */ case 224: /* expr ::= ID DOT ID */
{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);} { yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ID);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 224: /* expr ::= ID DOT STAR */ case 225: /* expr ::= ID DOT STAR */
{ yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);} { yymsp[-2].minor.yy0.n += (1+yymsp[0].minor.yy0.n); yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[-2].minor.yy0, TK_ALL);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 225: /* expr ::= INTEGER */ case 226: /* expr ::= INTEGER */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_INTEGER);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 226: /* expr ::= MINUS INTEGER */ case 227: /* expr ::= MINUS INTEGER */
case 227: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==227); case 228: /* expr ::= PLUS INTEGER */ yytestcase(yyruleno==228);
{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);} { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_INTEGER; yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_INTEGER);}
yymsp[-1].minor.yy68 = yylhsminor.yy68;
break; break;
case 228: /* expr ::= FLOAT */ case 229: /* expr ::= FLOAT */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_FLOAT);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 229: /* expr ::= MINUS FLOAT */ case 230: /* expr ::= MINUS FLOAT */
case 230: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==230); case 231: /* expr ::= PLUS FLOAT */ yytestcase(yyruleno==231);
{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);} { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_FLOAT; yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_FLOAT);}
yymsp[-1].minor.yy68 = yylhsminor.yy68;
break; break;
case 231: /* expr ::= STRING */ case 232: /* expr ::= STRING */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_STRING);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 232: /* expr ::= NOW */ case 233: /* expr ::= NOW */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); } { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NOW); }
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 233: /* expr ::= VARIABLE */ case 234: /* expr ::= VARIABLE */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_VARIABLE);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 234: /* expr ::= PLUS VARIABLE */ case 235: /* expr ::= PLUS VARIABLE */
case 235: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==235); case 236: /* expr ::= MINUS VARIABLE */ yytestcase(yyruleno==236);
{ yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);} { yymsp[-1].minor.yy0.n += yymsp[0].minor.yy0.n; yymsp[-1].minor.yy0.type = TK_VARIABLE; yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[-1].minor.yy0, TK_VARIABLE);}
yymsp[-1].minor.yy68 = yylhsminor.yy68;
break; break;
case 236: /* expr ::= BOOL */ case 237: /* expr ::= BOOL */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_BOOL);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 237: /* expr ::= NULL */ case 238: /* expr ::= NULL */
{ yylhsminor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);} { yygotominor.yy68 = tSqlExprCreateIdValue(&yymsp[0].minor.yy0, TK_NULL);}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break; break;
case 238: /* expr ::= ID LP exprlist RP */ case 239: /* expr ::= ID LP exprlist RP */
{ yylhsminor.yy68 = tSqlExprCreateFunction(yymsp[-1].minor.yy93, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } { yygotominor.yy68 = tSqlExprCreateFunction(yymsp[-1].minor.yy93, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); }
yymsp[-3].minor.yy68 = yylhsminor.yy68;
break; break;
case 239: /* expr ::= ID LP STAR RP */ case 240: /* expr ::= ID LP STAR RP */
{ yylhsminor.yy68 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); } { yygotominor.yy68 = tSqlExprCreateFunction(NULL, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0, yymsp[-3].minor.yy0.type); }
yymsp[-3].minor.yy68 = yylhsminor.yy68;
break; break;
case 240: /* expr ::= expr IS NULL */ case 241: /* expr ::= expr IS NULL */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, NULL, TK_ISNULL);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, NULL, TK_ISNULL);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 241: /* expr ::= expr IS NOT NULL */ case 242: /* expr ::= expr IS NOT NULL */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-3].minor.yy68, NULL, TK_NOTNULL);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-3].minor.yy68, NULL, TK_NOTNULL);}
yymsp[-3].minor.yy68 = yylhsminor.yy68;
break; break;
case 242: /* expr ::= expr LT expr */ case 243: /* expr ::= expr LT expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LT);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LT);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 243: /* expr ::= expr GT expr */ case 244: /* expr ::= expr GT expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_GT);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_GT);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 244: /* expr ::= expr LE expr */ case 245: /* expr ::= expr LE expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LE);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LE);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 245: /* expr ::= expr GE expr */ case 246: /* expr ::= expr GE expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_GE);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_GE);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 246: /* expr ::= expr NE expr */ case 247: /* expr ::= expr NE expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_NE);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_NE);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 247: /* expr ::= expr EQ expr */ case 248: /* expr ::= expr EQ expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_EQ);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_EQ);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 248: /* expr ::= expr BETWEEN expr AND expr */ case 249: /* expr ::= expr BETWEEN expr AND expr */
{ tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy68); yylhsminor.yy68 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy68, yymsp[-2].minor.yy68, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy68, TK_LE), TK_AND);} { tSqlExpr* X2 = tSqlExprClone(yymsp[-4].minor.yy68); yygotominor.yy68 = tSqlExprCreate(tSqlExprCreate(yymsp[-4].minor.yy68, yymsp[-2].minor.yy68, TK_GE), tSqlExprCreate(X2, yymsp[0].minor.yy68, TK_LE), TK_AND);}
yymsp[-4].minor.yy68 = yylhsminor.yy68;
break; break;
case 249: /* expr ::= expr AND expr */ case 250: /* expr ::= expr AND expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_AND);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_AND);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 250: /* expr ::= expr OR expr */ case 251: /* expr ::= expr OR expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_OR); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_OR); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 251: /* expr ::= expr PLUS expr */ case 252: /* expr ::= expr PLUS expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_PLUS); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_PLUS); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 252: /* expr ::= expr MINUS expr */ case 253: /* expr ::= expr MINUS expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_MINUS); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_MINUS); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 253: /* expr ::= expr STAR expr */ case 254: /* expr ::= expr STAR expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_STAR); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_STAR); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 254: /* expr ::= expr SLASH expr */ case 255: /* expr ::= expr SLASH expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_DIVIDE);} {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_DIVIDE);}
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 255: /* expr ::= expr REM expr */ case 256: /* expr ::= expr REM expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_REM); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_REM); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 256: /* expr ::= expr LIKE expr */ case 257: /* expr ::= expr LIKE expr */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LIKE); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-2].minor.yy68, yymsp[0].minor.yy68, TK_LIKE); }
yymsp[-2].minor.yy68 = yylhsminor.yy68;
break; break;
case 257: /* expr ::= expr IN LP exprlist RP */ case 258: /* expr ::= expr IN LP exprlist RP */
{yylhsminor.yy68 = tSqlExprCreate(yymsp[-4].minor.yy68, (tSqlExpr*)yymsp[-1].minor.yy93, TK_IN); } {yygotominor.yy68 = tSqlExprCreate(yymsp[-4].minor.yy68, (tSqlExpr*)yymsp[-1].minor.yy93, TK_IN); }
yymsp[-4].minor.yy68 = yylhsminor.yy68;
break; break;
case 258: /* exprlist ::= exprlist COMMA expritem */ case 259: /* exprlist ::= exprlist COMMA expritem */
{yylhsminor.yy93 = tSqlExprListAppend(yymsp[-2].minor.yy93,yymsp[0].minor.yy68,0, 0);} {yygotominor.yy93 = tSqlExprListAppend(yymsp[-2].minor.yy93,yymsp[0].minor.yy68,0, 0);}
yymsp[-2].minor.yy93 = yylhsminor.yy93;
break; break;
case 259: /* exprlist ::= expritem */ case 260: /* exprlist ::= expritem */
{yylhsminor.yy93 = tSqlExprListAppend(0,yymsp[0].minor.yy68,0, 0);} {yygotominor.yy93 = tSqlExprListAppend(0,yymsp[0].minor.yy68,0, 0);}
yymsp[0].minor.yy93 = yylhsminor.yy93;
break; break;
case 260: /* expritem ::= expr */ case 263: /* cmd ::= RESET QUERY CACHE */
{yylhsminor.yy68 = yymsp[0].minor.yy68;}
yymsp[0].minor.yy68 = yylhsminor.yy68;
break;
case 262: /* cmd ::= RESET QUERY CACHE */
{ setDCLSqlElems(pInfo, TSDB_SQL_RESET_CACHE, 0);} { setDCLSqlElems(pInfo, TSDB_SQL_RESET_CACHE, 0);}
break; break;
case 263: /* cmd ::= SYNCDB ids REPLICA */ case 264: /* cmd ::= SYNCDB ids REPLICA */
{ setDCLSqlElems(pInfo, TSDB_SQL_SYNC_DB_REPLICA, 1, &yymsp[-1].minor.yy0);} { setDCLSqlElems(pInfo, TSDB_SQL_SYNC_DB_REPLICA, 1, &yymsp[-1].minor.yy0);}
break; break;
case 264: /* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */ case 265: /* cmd ::= ALTER TABLE ids cpxName ADD COLUMN columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, -1); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, -1);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 265: /* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */ case 266: /* cmd ::= ALTER TABLE ids cpxName DROP COLUMN ids */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
...@@ -3080,21 +2630,21 @@ static void yy_reduce( ...@@ -3080,21 +2630,21 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 266: /* cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist */ case 267: /* cmd ::= ALTER TABLE ids cpxName MODIFY COLUMN columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_CHANGE_COLUMN, -1); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_CHANGE_COLUMN, -1);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 267: /* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */ case 268: /* cmd ::= ALTER TABLE ids cpxName ADD TAG columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, -1); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, -1);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 268: /* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */ case 269: /* cmd ::= ALTER TABLE ids cpxName DROP TAG ids */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
...@@ -3105,7 +2655,7 @@ static void yy_reduce( ...@@ -3105,7 +2655,7 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 269: /* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */ case 270: /* cmd ::= ALTER TABLE ids cpxName CHANGE TAG ids ids */
{ {
yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n;
...@@ -3119,7 +2669,7 @@ static void yy_reduce( ...@@ -3119,7 +2669,7 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 270: /* cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */ case 271: /* cmd ::= ALTER TABLE ids cpxName SET TAG ids EQ tagitem */
{ {
yymsp[-6].minor.yy0.n += yymsp[-5].minor.yy0.n; yymsp[-6].minor.yy0.n += yymsp[-5].minor.yy0.n;
...@@ -3131,21 +2681,21 @@ static void yy_reduce( ...@@ -3131,21 +2681,21 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 271: /* cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist */ case 272: /* cmd ::= ALTER TABLE ids cpxName MODIFY TAG columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN, -1); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN, -1);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 272: /* cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */ case 273: /* cmd ::= ALTER STABLE ids cpxName ADD COLUMN columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, TSDB_SUPER_TABLE); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_COLUMN, TSDB_SUPER_TABLE);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 273: /* cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */ case 274: /* cmd ::= ALTER STABLE ids cpxName DROP COLUMN ids */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
...@@ -3156,21 +2706,21 @@ static void yy_reduce( ...@@ -3156,21 +2706,21 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 274: /* cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist */ case 275: /* cmd ::= ALTER STABLE ids cpxName MODIFY COLUMN columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_CHANGE_COLUMN, TSDB_SUPER_TABLE); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_CHANGE_COLUMN, TSDB_SUPER_TABLE);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 275: /* cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */ case 276: /* cmd ::= ALTER STABLE ids cpxName ADD TAG columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, TSDB_SUPER_TABLE); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_ADD_TAG_COLUMN, TSDB_SUPER_TABLE);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 276: /* cmd ::= ALTER STABLE ids cpxName DROP TAG ids */ case 277: /* cmd ::= ALTER STABLE ids cpxName DROP TAG ids */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
...@@ -3181,7 +2731,7 @@ static void yy_reduce( ...@@ -3181,7 +2731,7 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 277: /* cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */ case 278: /* cmd ::= ALTER STABLE ids cpxName CHANGE TAG ids ids */
{ {
yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n; yymsp[-5].minor.yy0.n += yymsp[-4].minor.yy0.n;
...@@ -3195,7 +2745,7 @@ static void yy_reduce( ...@@ -3195,7 +2745,7 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 278: /* cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem */ case 279: /* cmd ::= ALTER STABLE ids cpxName SET TAG ids EQ tagitem */
{ {
yymsp[-6].minor.yy0.n += yymsp[-5].minor.yy0.n; yymsp[-6].minor.yy0.n += yymsp[-5].minor.yy0.n;
...@@ -3207,43 +2757,50 @@ static void yy_reduce( ...@@ -3207,43 +2757,50 @@ static void yy_reduce(
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 279: /* cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist */ case 280: /* cmd ::= ALTER STABLE ids cpxName MODIFY TAG columnlist */
{ {
yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n; yymsp[-4].minor.yy0.n += yymsp[-3].minor.yy0.n;
SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN, TSDB_SUPER_TABLE); SAlterTableInfo* pAlterTable = tSetAlterTableInfo(&yymsp[-4].minor.yy0, yymsp[0].minor.yy93, NULL, TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN, TSDB_SUPER_TABLE);
setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE); setSqlInfo(pInfo, pAlterTable, NULL, TSDB_SQL_ALTER_TABLE);
} }
break; break;
case 280: /* cmd ::= KILL CONNECTION INTEGER */ case 281: /* cmd ::= KILL CONNECTION INTEGER */
{setKillSql(pInfo, TSDB_SQL_KILL_CONNECTION, &yymsp[0].minor.yy0);} {setKillSql(pInfo, TSDB_SQL_KILL_CONNECTION, &yymsp[0].minor.yy0);}
break; break;
case 281: /* cmd ::= KILL STREAM INTEGER COLON INTEGER */ case 282: /* 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);} {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; break;
case 282: /* cmd ::= KILL QUERY INTEGER COLON INTEGER */ case 283: /* 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);} {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; break;
default: default:
break; break;
/********** End reduce actions ************************************************/
}; };
assert( yyruleno<sizeof(yyRuleInfo)/sizeof(yyRuleInfo[0]) );
yygoto = yyRuleInfo[yyruleno].lhs; yygoto = yyRuleInfo[yyruleno].lhs;
yysize = yyRuleInfo[yyruleno].nrhs; yysize = yyRuleInfo[yyruleno].nrhs;
yyact = yy_find_reduce_action(yymsp[yysize].stateno,(YYCODETYPE)yygoto); yypParser->yyidx -= yysize;
yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto);
/* There are no SHIFTREDUCE actions on nonterminals because the table if( yyact < YYNSTATE ){
** generator has simplified them to pure REDUCE actions. */ #ifdef NDEBUG
assert( !(yyact>YY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); /* 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
/* It is not possible for a REDUCE to be followed by an error */ ** onto the stack here, and skip the stack overflow test in yy_shift().
assert( yyact!=YY_ERROR_ACTION ); ** That gives a significant speed improvement. */
if( yysize ){
yymsp += yysize+1; yypParser->yyidx++;
yypParser->yytos = yymsp; yymsp -= yysize-1;
yymsp->stateno = (YYACTIONTYPE)yyact; yymsp->stateno = (YYACTIONTYPE)yyact;
yymsp->major = (YYCODETYPE)yygoto; yymsp->major = (YYCODETYPE)yygoto;
yyTraceShift(yypParser, yyact, "... then shift"); yymsp->minor = yygotominor;
}else
#endif
{
yy_shift(yypParser,yyact,yygoto,&yygotominor);
}
}else{
assert( yyact == YYNSTATE + YYNRULE + 1 );
yy_accept(yypParser);
}
} }
/* /*
...@@ -3259,11 +2816,9 @@ static void yy_parse_failed( ...@@ -3259,11 +2816,9 @@ static void yy_parse_failed(
fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt);
} }
#endif #endif
while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
/* Here code is inserted which will be executed whenever the /* Here code is inserted which will be executed whenever the
** parser fails */ ** parser fails */
/************ Begin %parse_failure code ***************************************/
/************ End %parse_failure code *****************************************/
ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
} }
#endif /* YYNOERRORRECOVERY */ #endif /* YYNOERRORRECOVERY */
...@@ -3274,11 +2829,10 @@ static void yy_parse_failed( ...@@ -3274,11 +2829,10 @@ static void yy_parse_failed(
static void yy_syntax_error( static void yy_syntax_error(
yyParser *yypParser, /* The parser */ yyParser *yypParser, /* The parser */
int yymajor, /* The major type of the error token */ 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; ParseARG_FETCH;
#define TOKEN yyminor #define TOKEN (yyminor.yy0)
/************ Begin %syntax_error code ****************************************/
pInfo->valid = false; pInfo->valid = false;
int32_t outputBufLen = tListLen(pInfo->msg); int32_t outputBufLen = tListLen(pInfo->msg);
...@@ -3301,7 +2855,6 @@ static void yy_syntax_error( ...@@ -3301,7 +2855,6 @@ static void yy_syntax_error(
} }
assert(len <= outputBufLen); assert(len <= outputBufLen);
/************ End %syntax_error code ******************************************/
ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
} }
...@@ -3317,15 +2870,10 @@ static void yy_accept( ...@@ -3317,15 +2870,10 @@ static void yy_accept(
fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt);
} }
#endif #endif
#ifndef YYNOERRORRECOVERY while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
yypParser->yyerrcnt = -1;
#endif
assert( yypParser->yytos==yypParser->yystack );
/* Here code is inserted which will be executed whenever the /* Here code is inserted which will be executed whenever the
** parser accepts */ ** parser accepts */
/*********** Begin %parse_accept code *****************************************/
/*********** End %parse_accept code *******************************************/
ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
} }
...@@ -3355,52 +2903,50 @@ void Parse( ...@@ -3355,52 +2903,50 @@ void Parse(
ParseARG_PDECL /* Optional %extra_argument parameter */ ParseARG_PDECL /* Optional %extra_argument parameter */
){ ){
YYMINORTYPE yyminorunion; YYMINORTYPE yyminorunion;
unsigned int yyact; /* The parser action. */ int yyact; /* The parser action. */
#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
int yyendofinput; /* True if we are at the end of input */ int yyendofinput; /* True if we are at the end of input */
#endif
#ifdef YYERRORSYMBOL #ifdef YYERRORSYMBOL
int yyerrorhit = 0; /* True if yymajor has invoked an error */ int yyerrorhit = 0; /* True if yymajor has invoked an error */
#endif #endif
yyParser *yypParser; /* The parser */ yyParser *yypParser; /* The parser */
/* (re)initialize the parser, if necessary */
yypParser = (yyParser*)yyp; yypParser = (yyParser*)yyp;
assert( yypParser->yytos!=0 ); if( yypParser->yyidx<0 ){
#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) #if YYSTACKDEPTH<=0
yyendofinput = (yymajor==0); if( yypParser->yystksz <=0 ){
/*memset(&yyminorunion, 0, sizeof(yyminorunion));*/
yyminorunion = yyzerominor;
yyStackOverflow(yypParser, &yyminorunion);
return;
}
#endif #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; ParseARG_STORE;
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE ){
int stateno = yypParser->yytos->stateno; fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]);
if( stateno < YY_MIN_REDUCE ){
fprintf(yyTraceFILE,"%sInput '%s' in state %d\n",
yyTracePrompt,yyTokenName[yymajor],stateno);
}else{
fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n",
yyTracePrompt,yyTokenName[yymajor],stateno-YY_MIN_REDUCE);
}
} }
#endif #endif
do{ do{
yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor);
if( yyact >= YY_MIN_REDUCE ){ if( yyact<YYNSTATE ){
yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor,yyminor); assert( !yyendofinput ); /* Impossible to shift the $ token */
}else if( yyact <= YY_MAX_SHIFTREDUCE ){ yy_shift(yypParser,yyact,yymajor,&yyminorunion);
yy_shift(yypParser,yyact,yymajor,yyminor);
#ifndef YYNOERRORRECOVERY
yypParser->yyerrcnt--; yypParser->yyerrcnt--;
#endif
yymajor = YYNOCODE; yymajor = YYNOCODE;
}else if( yyact==YY_ACCEPT_ACTION ){ }else if( yyact < YYNSTATE + YYNRULE ){
yypParser->yytos--; yy_reduce(yypParser,yyact-YYNSTATE);
yy_accept(yypParser);
return;
}else{ }else{
assert( yyact == YY_ERROR_ACTION ); assert( yyact == YY_ERROR_ACTION );
yyminorunion.yy0 = yyminor;
#ifdef YYERRORSYMBOL #ifdef YYERRORSYMBOL
int yymx; int yymx;
#endif #endif
...@@ -3430,9 +2976,9 @@ void Parse( ...@@ -3430,9 +2976,9 @@ void Parse(
** **
*/ */
if( yypParser->yyerrcnt<0 ){ if( yypParser->yyerrcnt<0 ){
yy_syntax_error(yypParser,yymajor,yyminor); yy_syntax_error(yypParser,yymajor,yyminorunion);
} }
yymx = yypParser->yytos->major; yymx = yypParser->yystack[yypParser->yyidx].major;
if( yymx==YYERRORSYMBOL || yyerrorhit ){ if( yymx==YYERRORSYMBOL || yyerrorhit ){
#ifndef NDEBUG #ifndef NDEBUG
if( yyTraceFILE ){ if( yyTraceFILE ){
...@@ -3440,26 +2986,26 @@ void Parse( ...@@ -3440,26 +2986,26 @@ void Parse(
yyTracePrompt,yyTokenName[yymajor]); yyTracePrompt,yyTokenName[yymajor]);
} }
#endif #endif
yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion);
yymajor = YYNOCODE; yymajor = YYNOCODE;
}else{ }else{
while( yypParser->yytos >= yypParser->yystack while(
&& yymx != YYERRORSYMBOL yypParser->yyidx >= 0 &&
&& (yyact = yy_find_reduce_action( yymx != YYERRORSYMBOL &&
yypParser->yytos->stateno, (yyact = yy_find_reduce_action(
YYERRORSYMBOL)) >= YY_MIN_REDUCE yypParser->yystack[yypParser->yyidx].stateno,
YYERRORSYMBOL)) >= YYNSTATE
){ ){
yy_pop_parser_stack(yypParser); yy_pop_parser_stack(yypParser);
} }
if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ if( yypParser->yyidx < 0 || yymajor==0 ){
yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
yy_parse_failed(yypParser); yy_parse_failed(yypParser);
#ifndef YYNOERRORRECOVERY
yypParser->yyerrcnt = -1;
#endif
yymajor = YYNOCODE; yymajor = YYNOCODE;
}else if( yymx!=YYERRORSYMBOL ){ }else if( yymx!=YYERRORSYMBOL ){
yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); YYMINORTYPE u2;
u2.YYERRSYMDT = 0;
yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2);
} }
} }
yypParser->yyerrcnt = 3; yypParser->yyerrcnt = 3;
...@@ -3472,7 +3018,7 @@ void Parse( ...@@ -3472,7 +3018,7 @@ void Parse(
** Applications can set this macro (for example inside %include) if ** Applications can set this macro (for example inside %include) if
** they intend to abandon the parse upon the first syntax error seen. ** 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); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
yymajor = YYNOCODE; yymajor = YYNOCODE;
...@@ -3487,31 +3033,16 @@ void Parse( ...@@ -3487,31 +3033,16 @@ void Parse(
** three input tokens have been successfully shifted. ** three input tokens have been successfully shifted.
*/ */
if( yypParser->yyerrcnt<=0 ){ if( yypParser->yyerrcnt<=0 ){
yy_syntax_error(yypParser,yymajor, yyminor); yy_syntax_error(yypParser,yymajor,yyminorunion);
} }
yypParser->yyerrcnt = 3; yypParser->yyerrcnt = 3;
yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
if( yyendofinput ){ if( yyendofinput ){
yy_parse_failed(yypParser); yy_parse_failed(yypParser);
#ifndef YYNOERRORRECOVERY
yypParser->yyerrcnt = -1;
#endif
} }
yymajor = YYNOCODE; yymajor = YYNOCODE;
#endif #endif
} }
}while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack ); }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 );
#ifndef NDEBUG
if( yyTraceFILE ){
yyStackEntry *i;
char cDiv = '[';
fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt);
for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){
fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]);
cDiv = ' ';
}
fprintf(yyTraceFILE,"]\n");
}
#endif
return; return;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册