/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- sqlite3ParserTrace
- yyGrowStack
- sqlite3ParserAlloc
- yy_destructor
- yy_pop_parser_stack
- sqlite3ParserFree
- yy_find_shift_action
- yy_find_reduce_action
- yyStackOverflow
- yy_shift
- yy_reduce
- yy_parse_failed
- yy_syntax_error
- yy_accept
- sqlite3Parser
/* Driver template for the LEMON parser generator.
** The author disclaims copyright to this source code.
*/
/* First off, code is include which follows the "include" declaration
** in the input file. */
#include <stdio.h>
#line 56 "ext/pdo_sqlite/sqlite/src/parse.y"
#include "sqliteInt.h"
#include "parse.h"
/*
** An instance of this structure holds information about the
** LIMIT clause of a SELECT statement.
*/
struct LimitVal {
Expr *pLimit; /* The LIMIT expression. NULL if there is no limit */
Expr *pOffset; /* The OFFSET expression. NULL if there is none */
};
/*
** An instance of this structure is used to store the LIKE,
** GLOB, NOT LIKE, and NOT GLOB operators.
*/
struct LikeOp {
Token eOperator; /* "like" or "glob" or "regexp" */
int not; /* True if the NOT keyword is present */
};
/*
** An instance of the following structure describes the event of a
** TRIGGER. "a" is the event type, one of TK_UPDATE, TK_INSERT,
** TK_DELETE, or TK_INSTEAD. If the event is of the form
**
** UPDATE ON (a,b,c)
**
** Then the "b" IdList records the list "a,b,c".
*/
struct TrigEvent { int a; IdList * b; };
/*
** An instance of this structure holds the ATTACH key and the key type.
*/
struct AttachKey { int type; Token key; };
#line 48 "ext/pdo_sqlite/sqlite/src/parse.c"
/* Next is all token values, in a form suitable for use by makeheaders.
** This section will be null unless lemon is run with the -m switch.
*/
/*
** These constants (all generated automatically by the parser generator)
** specify the various kinds of tokens (terminals) that the parser
** understands.
**
** Each symbol here is a terminal symbol in the grammar.
*/
/* Make sure the INTERFACE macro is defined.
*/
#ifndef INTERFACE
# define INTERFACE 1
#endif
/* The next thing included is series of defines which control
** various aspects of the generated parser.
** YYCODETYPE is the data type used for storing terminal
** and nonterminal numbers. "unsigned char" is
** used if there are fewer than 250 terminals
** and nonterminals. "int" is used otherwise.
** YYNOCODE is a number of type YYCODETYPE which corresponds
** to no legal terminal or nonterminal number. This
** number is used to fill in empty slots of the hash
** table.
** YYFALLBACK If defined, this indicates that one or more tokens
** have fall-back values which should be used if the
** original value of the token will not parse.
** YYACTIONTYPE is the data type used for storing terminal
** and nonterminal numbers. "unsigned char" is
** used if there are fewer than 250 rules and
** states combined. "int" is used otherwise.
** sqlite3ParserTOKENTYPE is the data type used for minor tokens given
** directly to the parser from the tokenizer.
** YYMINORTYPE is the data type used for all minor tokens.
** This is typically a union of many types, one of
** which is sqlite3ParserTOKENTYPE. The entry in the union
** for base tokens is called "yy0".
** YYSTACKDEPTH is the maximum depth of the parser's stack. If
** zero the stack is dynamically sized using realloc()
** sqlite3ParserARG_SDECL A static variable declaration for the %extra_argument
** sqlite3ParserARG_PDECL A parameter declaration for the %extra_argument
** sqlite3ParserARG_STORE Code to store %extra_argument into yypParser
** sqlite3ParserARG_FETCH Code to extract %extra_argument from yypParser
** YYNSTATE the combined number of states.
** YYNRULE the number of rules in the grammar
** YYERRORSYMBOL is the code number of the error symbol. If not
** defined, then do no error processing.
*/
#define YYCODETYPE unsigned char
#define YYNOCODE 248
#define YYACTIONTYPE unsigned short int
#define YYWILDCARD 59
#define sqlite3ParserTOKENTYPE Token
typedef union {
sqlite3ParserTOKENTYPE yy0;
int yy46;
struct LikeOp yy72;
Expr* yy172;
ExprList* yy174;
Select* yy219;
struct LimitVal yy234;
TriggerStep* yy243;
struct TrigEvent yy370;
SrcList* yy373;
Expr * yy386;
struct {int value; int mask;} yy405;
Token yy410;
IdList* yy432;
int yy495;
} YYMINORTYPE;
#ifndef YYSTACKDEPTH
#define YYSTACKDEPTH 100
#endif
#define sqlite3ParserARG_SDECL Parse *pParse;
#define sqlite3ParserARG_PDECL ,Parse *pParse
#define sqlite3ParserARG_FETCH Parse *pParse = yypParser->pParse
#define sqlite3ParserARG_STORE yypParser->pParse = pParse
#define YYNSTATE 586
#define YYNRULE 311
#define YYERRORSYMBOL 138
#define YYERRSYMDT yy495
#define YYFALLBACK 1
#define YY_NO_ACTION (YYNSTATE+YYNRULE+2)
#define YY_ACCEPT_ACTION (YYNSTATE+YYNRULE+1)
#define YY_ERROR_ACTION (YYNSTATE+YYNRULE)
/* Next are that tables used to determine what action to take based on the
** current state and lookahead token. These tables are used to implement
** functions that take a state number and lookahead value and return an
** action integer.
**
** Suppose the action integer is N. Then the action is determined as
** follows
**
** 0 <= N < YYNSTATE Shift N. That is, push the lookahead
** token onto the stack and goto state N.
**
** YYNSTATE <= N < YYNSTATE+YYNRULE Reduce by rule N-YYNSTATE.
**
** N == YYNSTATE+YYNRULE A syntax error has occurred.
**
** N == YYNSTATE+YYNRULE+1 The parser accepts its input.
**
** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused
** slots in the yy_action[] table.
**
** The action table is constructed as a single large table named yy_action[].
** Given state S and lookahead X, the action is computed as
**
** yy_action[ yy_shift_ofst[S] + X ]
**
** If the index value yy_shift_ofst[S]+X is out of range or if the value
** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X or if yy_shift_ofst[S]
** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table
** and that yy_default[S] should be used instead.
**
** The formula above is for computing the action when the lookahead is
** a terminal symbol. If the lookahead is a non-terminal (as occurs after
** a reduce action) then the yy_reduce_ofst[] array is used in place of
** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of
** YY_SHIFT_USE_DFLT.
**
** The following are the tables generated in this section:
**
** yy_action[] A single table containing all actions.
** yy_lookahead[] A table containing the lookahead for each entry in
** yy_action. Used to detect hash collisions.
** yy_shift_ofst[] For each state, the offset into yy_action for
** shifting terminals.
** yy_reduce_ofst[] For each state, the offset into yy_action for
** shifting non-terminals after a reduce.
** yy_default[] Default action for each state.
*/
static const YYACTIONTYPE yy_action[] = {
/* 0 */ 289, 898, 121, 585, 405, 169, 2, 435, 61, 61,
/* 10 */ 61, 61, 517, 63, 63, 63, 63, 64, 64, 65,
/* 20 */ 65, 65, 66, 230, 387, 384, 420, 426, 68, 63,
/* 30 */ 63, 63, 63, 64, 64, 65, 65, 65, 66, 230,
/* 40 */ 443, 208, 392, 447, 60, 59, 294, 430, 431, 427,
/* 50 */ 427, 62, 62, 61, 61, 61, 61, 205, 63, 63,
/* 60 */ 63, 63, 64, 64, 65, 65, 65, 66, 230, 289,
/* 70 */ 368, 316, 435, 487, 205, 80, 67, 415, 69, 151,
/* 80 */ 63, 63, 63, 63, 64, 64, 65, 65, 65, 66,
/* 90 */ 230, 515, 162, 410, 35, 420, 426, 443, 571, 58,
/* 100 */ 64, 64, 65, 65, 65, 66, 230, 393, 394, 417,
/* 110 */ 417, 417, 289, 60, 59, 294, 430, 431, 427, 427,
/* 120 */ 62, 62, 61, 61, 61, 61, 302, 63, 63, 63,
/* 130 */ 63, 64, 64, 65, 65, 65, 66, 230, 420, 426,
/* 140 */ 92, 65, 65, 65, 66, 230, 392, 456, 472, 67,
/* 150 */ 56, 69, 151, 169, 406, 435, 60, 59, 294, 430,
/* 160 */ 431, 427, 427, 62, 62, 61, 61, 61, 61, 247,
/* 170 */ 63, 63, 63, 63, 64, 64, 65, 65, 65, 66,
/* 180 */ 230, 289, 569, 522, 292, 620, 111, 478, 515, 447,
/* 190 */ 230, 316, 403, 21, 67, 460, 69, 151, 66, 230,
/* 200 */ 568, 443, 208, 67, 224, 69, 151, 420, 426, 146,
/* 210 */ 147, 393, 394, 410, 41, 386, 148, 531, 2, 487,
/* 220 */ 435, 566, 232, 415, 289, 60, 59, 294, 430, 431,
/* 230 */ 427, 427, 62, 62, 61, 61, 61, 61, 316, 63,
/* 240 */ 63, 63, 63, 64, 64, 65, 65, 65, 66, 230,
/* 250 */ 420, 426, 486, 330, 211, 417, 417, 417, 359, 270,
/* 260 */ 410, 41, 378, 207, 362, 542, 245, 289, 60, 59,
/* 270 */ 294, 430, 431, 427, 427, 62, 62, 61, 61, 61,
/* 280 */ 61, 392, 63, 63, 63, 63, 64, 64, 65, 65,
/* 290 */ 65, 66, 230, 420, 426, 260, 299, 273, 522, 271,
/* 300 */ 522, 210, 370, 319, 223, 433, 433, 532, 21, 576,
/* 310 */ 21, 60, 59, 294, 430, 431, 427, 427, 62, 62,
/* 320 */ 61, 61, 61, 61, 191, 63, 63, 63, 63, 64,
/* 330 */ 64, 65, 65, 65, 66, 230, 261, 316, 239, 76,
/* 340 */ 289, 544, 299, 149, 482, 150, 393, 394, 178, 240,
/* 350 */ 569, 341, 344, 345, 404, 520, 445, 322, 165, 410,
/* 360 */ 28, 540, 346, 517, 248, 539, 420, 426, 568, 567,
/* 370 */ 161, 115, 238, 339, 243, 340, 173, 358, 272, 411,
/* 380 */ 821, 488, 79, 249, 60, 59, 294, 430, 431, 427,
/* 390 */ 427, 62, 62, 61, 61, 61, 61, 530, 63, 63,
/* 400 */ 63, 63, 64, 64, 65, 65, 65, 66, 230, 289,
/* 410 */ 248, 178, 465, 485, 341, 344, 345, 115, 238, 339,
/* 420 */ 243, 340, 173, 82, 316, 346, 316, 491, 492, 249,
/* 430 */ 565, 207, 152, 523, 489, 420, 426, 178, 529, 503,
/* 440 */ 341, 344, 345, 407, 472, 528, 410, 35, 410, 35,
/* 450 */ 171, 346, 198, 60, 59, 294, 430, 431, 427, 427,
/* 460 */ 62, 62, 61, 61, 61, 61, 411, 63, 63, 63,
/* 470 */ 63, 64, 64, 65, 65, 65, 66, 230, 289, 548,
/* 480 */ 579, 288, 502, 234, 411, 316, 411, 316, 296, 283,
/* 490 */ 298, 316, 445, 521, 165, 476, 172, 157, 421, 422,
/* 500 */ 457, 335, 457, 144, 420, 426, 366, 410, 35, 410,
/* 510 */ 36, 435, 1, 410, 49, 327, 392, 547, 193, 424,
/* 520 */ 425, 156, 60, 59, 294, 430, 431, 427, 427, 62,
/* 530 */ 62, 61, 61, 61, 61, 333, 63, 63, 63, 63,
/* 540 */ 64, 64, 65, 65, 65, 66, 230, 289, 423, 332,
/* 550 */ 452, 252, 411, 295, 438, 439, 297, 316, 349, 307,
/* 560 */ 231, 457, 453, 321, 438, 439, 392, 369, 266, 265,
/* 570 */ 189, 217, 392, 420, 426, 454, 435, 493, 205, 410,
/* 580 */ 49, 393, 394, 583, 889, 174, 889, 494, 545, 492,
/* 590 */ 392, 60, 59, 294, 430, 431, 427, 427, 62, 62,
/* 600 */ 61, 61, 61, 61, 411, 63, 63, 63, 63, 64,
/* 610 */ 64, 65, 65, 65, 66, 230, 289, 207, 586, 387,
/* 620 */ 384, 91, 10, 580, 336, 308, 392, 207, 367, 480,
/* 630 */ 316, 393, 394, 583, 888, 219, 888, 393, 394, 476,
/* 640 */ 291, 233, 420, 426, 481, 249, 410, 3, 434, 260,
/* 650 */ 317, 363, 410, 29, 448, 393, 394, 468, 260, 289,
/* 660 */ 60, 59, 294, 430, 431, 427, 427, 62, 62, 61,
/* 670 */ 61, 61, 61, 580, 63, 63, 63, 63, 64, 64,
/* 680 */ 65, 65, 65, 66, 230, 420, 426, 391, 312, 388,
/* 690 */ 555, 393, 394, 75, 204, 77, 395, 396, 397, 557,
/* 700 */ 357, 197, 289, 60, 59, 294, 430, 431, 427, 427,
/* 710 */ 62, 62, 61, 61, 61, 61, 316, 63, 63, 63,
/* 720 */ 63, 64, 64, 65, 65, 65, 66, 230, 420, 426,
/* 730 */ 319, 116, 433, 433, 319, 411, 433, 433, 410, 24,
/* 740 */ 319, 515, 433, 433, 515, 289, 60, 70, 294, 430,
/* 750 */ 431, 427, 427, 62, 62, 61, 61, 61, 61, 375,
/* 760 */ 63, 63, 63, 63, 64, 64, 65, 65, 65, 66,
/* 770 */ 230, 420, 426, 538, 356, 538, 216, 260, 472, 303,
/* 780 */ 175, 176, 177, 254, 476, 515, 260, 383, 289, 5,
/* 790 */ 59, 294, 430, 431, 427, 427, 62, 62, 61, 61,
/* 800 */ 61, 61, 316, 63, 63, 63, 63, 64, 64, 65,
/* 810 */ 65, 65, 66, 230, 420, 426, 392, 236, 380, 247,
/* 820 */ 304, 258, 247, 256, 410, 33, 260, 558, 125, 467,
/* 830 */ 515, 416, 168, 157, 294, 430, 431, 427, 427, 62,
/* 840 */ 62, 61, 61, 61, 61, 306, 63, 63, 63, 63,
/* 850 */ 64, 64, 65, 65, 65, 66, 230, 72, 323, 452,
/* 860 */ 4, 153, 22, 247, 293, 305, 435, 559, 316, 382,
/* 870 */ 316, 453, 320, 72, 323, 316, 4, 366, 316, 180,
/* 880 */ 293, 393, 394, 20, 454, 141, 326, 316, 320, 325,
/* 890 */ 410, 53, 410, 52, 316, 411, 155, 410, 96, 447,
/* 900 */ 410, 94, 316, 500, 316, 325, 328, 469, 247, 410,
/* 910 */ 99, 444, 260, 411, 318, 447, 410, 100, 316, 74,
/* 920 */ 73, 467, 183, 260, 410, 110, 410, 112, 72, 314,
/* 930 */ 315, 435, 337, 415, 458, 74, 73, 479, 316, 377,
/* 940 */ 410, 17, 218, 19, 72, 314, 315, 72, 323, 415,
/* 950 */ 4, 205, 316, 274, 293, 316, 411, 466, 205, 409,
/* 960 */ 410, 97, 320, 408, 374, 417, 417, 417, 418, 419,
/* 970 */ 12, 376, 316, 206, 410, 34, 174, 410, 95, 325,
/* 980 */ 55, 417, 417, 417, 418, 419, 12, 310, 120, 447,
/* 990 */ 428, 159, 9, 260, 410, 25, 220, 221, 222, 102,
/* 1000 */ 441, 441, 316, 471, 409, 316, 475, 316, 408, 74,
/* 1010 */ 73, 436, 202, 23, 278, 455, 244, 13, 72, 314,
/* 1020 */ 315, 279, 316, 415, 410, 54, 316, 410, 113, 410,
/* 1030 */ 114, 291, 581, 200, 276, 547, 462, 497, 498, 199,
/* 1040 */ 316, 504, 201, 463, 410, 26, 316, 524, 410, 37,
/* 1050 */ 316, 474, 316, 170, 253, 417, 417, 417, 418, 419,
/* 1060 */ 12, 505, 410, 38, 510, 483, 316, 13, 410, 27,
/* 1070 */ 508, 582, 410, 39, 410, 40, 316, 255, 507, 506,
/* 1080 */ 512, 316, 125, 316, 511, 373, 275, 265, 410, 42,
/* 1090 */ 509, 290, 316, 251, 316, 125, 205, 257, 410, 43,
/* 1100 */ 316, 259, 316, 410, 44, 410, 30, 348, 316, 125,
/* 1110 */ 316, 353, 186, 316, 410, 31, 410, 45, 316, 543,
/* 1120 */ 379, 125, 410, 46, 410, 47, 316, 551, 264, 170,
/* 1130 */ 410, 48, 410, 32, 401, 410, 11, 552, 440, 89,
/* 1140 */ 410, 50, 301, 562, 578, 89, 287, 361, 410, 51,
/* 1150 */ 364, 365, 267, 268, 269, 554, 143, 564, 277, 324,
/* 1160 */ 280, 281, 575, 225, 442, 461, 464, 503, 241, 513,
/* 1170 */ 516, 550, 343, 160, 561, 390, 8, 313, 398, 399,
/* 1180 */ 400, 412, 82, 226, 331, 329, 81, 406, 57, 78,
/* 1190 */ 209, 167, 83, 459, 122, 414, 227, 334, 228, 338,
/* 1200 */ 300, 500, 103, 496, 246, 519, 514, 490, 495, 242,
/* 1210 */ 214, 518, 499, 229, 501, 413, 350, 533, 284, 525,
/* 1220 */ 526, 527, 235, 181, 473, 237, 285, 477, 182, 354,
/* 1230 */ 352, 184, 86, 185, 118, 535, 187, 546, 360, 190,
/* 1240 */ 129, 553, 139, 371, 372, 130, 215, 309, 560, 131,
/* 1250 */ 132, 133, 572, 577, 135, 573, 98, 574, 389, 262,
/* 1260 */ 402, 621, 536, 213, 101, 622, 432, 163, 164, 429,
/* 1270 */ 138, 71, 449, 437, 446, 140, 470, 154, 6, 450,
/* 1280 */ 7, 158, 166, 451, 14, 123, 13, 124, 484, 212,
/* 1290 */ 84, 342, 104, 105, 90, 250, 85, 117, 106, 347,
/* 1300 */ 179, 240, 351, 142, 534, 126, 18, 170, 93, 263,
/* 1310 */ 188, 107, 355, 286, 109, 127, 549, 541, 128, 119,
/* 1320 */ 537, 192, 15, 194, 195, 136, 196, 134, 556, 563,
/* 1330 */ 311, 137, 16, 108, 570, 203, 145, 385, 381, 282,
/* 1340 */ 584, 899, 899, 899, 899, 899, 87, 899, 88,
};
static const YYCODETYPE yy_lookahead[] = {
/* 0 */ 16, 139, 140, 141, 168, 21, 144, 23, 69, 70,
/* 10 */ 71, 72, 176, 74, 75, 76, 77, 78, 79, 80,
/* 20 */ 81, 82, 83, 84, 1, 2, 42, 43, 73, 74,
/* 30 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
/* 40 */ 78, 79, 23, 58, 60, 61, 62, 63, 64, 65,
/* 50 */ 66, 67, 68, 69, 70, 71, 72, 110, 74, 75,
/* 60 */ 76, 77, 78, 79, 80, 81, 82, 83, 84, 16,
/* 70 */ 123, 147, 88, 88, 110, 22, 216, 92, 218, 219,
/* 80 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
/* 90 */ 84, 147, 19, 169, 170, 42, 43, 78, 238, 46,
/* 100 */ 78, 79, 80, 81, 82, 83, 84, 88, 89, 124,
/* 110 */ 125, 126, 16, 60, 61, 62, 63, 64, 65, 66,
/* 120 */ 67, 68, 69, 70, 71, 72, 182, 74, 75, 76,
/* 130 */ 77, 78, 79, 80, 81, 82, 83, 84, 42, 43,
/* 140 */ 44, 80, 81, 82, 83, 84, 23, 223, 161, 216,
/* 150 */ 19, 218, 219, 21, 23, 23, 60, 61, 62, 63,
/* 160 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 225,
/* 170 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
/* 180 */ 84, 16, 147, 147, 150, 112, 21, 200, 147, 58,
/* 190 */ 84, 147, 156, 157, 216, 217, 218, 219, 83, 84,
/* 200 */ 165, 78, 79, 216, 190, 218, 219, 42, 43, 78,
/* 210 */ 79, 88, 89, 169, 170, 141, 180, 181, 144, 88,
/* 220 */ 88, 98, 147, 92, 16, 60, 61, 62, 63, 64,
/* 230 */ 65, 66, 67, 68, 69, 70, 71, 72, 147, 74,
/* 240 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
/* 250 */ 42, 43, 169, 209, 210, 124, 125, 126, 224, 14,
/* 260 */ 169, 170, 227, 228, 230, 18, 225, 16, 60, 61,
/* 270 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
/* 280 */ 72, 23, 74, 75, 76, 77, 78, 79, 80, 81,
/* 290 */ 82, 83, 84, 42, 43, 147, 16, 52, 147, 54,
/* 300 */ 147, 210, 55, 106, 153, 108, 109, 156, 157, 156,
/* 310 */ 157, 60, 61, 62, 63, 64, 65, 66, 67, 68,
/* 320 */ 69, 70, 71, 72, 22, 74, 75, 76, 77, 78,
/* 330 */ 79, 80, 81, 82, 83, 84, 188, 147, 92, 131,
/* 340 */ 16, 94, 16, 22, 20, 155, 88, 89, 90, 103,
/* 350 */ 147, 93, 94, 95, 167, 168, 161, 162, 163, 169,
/* 360 */ 170, 25, 104, 176, 84, 29, 42, 43, 165, 166,
/* 370 */ 90, 91, 92, 93, 94, 95, 96, 41, 133, 189,
/* 380 */ 133, 169, 131, 103, 60, 61, 62, 63, 64, 65,
/* 390 */ 66, 67, 68, 69, 70, 71, 72, 181, 74, 75,
/* 400 */ 76, 77, 78, 79, 80, 81, 82, 83, 84, 16,
/* 410 */ 84, 90, 22, 20, 93, 94, 95, 91, 92, 93,
/* 420 */ 94, 95, 96, 121, 147, 104, 147, 185, 186, 103,
/* 430 */ 227, 228, 155, 181, 160, 42, 43, 90, 176, 177,
/* 440 */ 93, 94, 95, 169, 161, 183, 169, 170, 169, 170,
/* 450 */ 155, 104, 155, 60, 61, 62, 63, 64, 65, 66,
/* 460 */ 67, 68, 69, 70, 71, 72, 189, 74, 75, 76,
/* 470 */ 77, 78, 79, 80, 81, 82, 83, 84, 16, 11,
/* 480 */ 244, 245, 20, 200, 189, 147, 189, 147, 211, 158,
/* 490 */ 211, 147, 161, 162, 163, 147, 201, 202, 42, 43,
/* 500 */ 223, 206, 223, 113, 42, 43, 147, 169, 170, 169,
/* 510 */ 170, 23, 19, 169, 170, 186, 23, 49, 155, 63,
/* 520 */ 64, 147, 60, 61, 62, 63, 64, 65, 66, 67,
/* 530 */ 68, 69, 70, 71, 72, 147, 74, 75, 76, 77,
/* 540 */ 78, 79, 80, 81, 82, 83, 84, 16, 92, 211,
/* 550 */ 12, 20, 189, 164, 165, 166, 208, 147, 16, 215,
/* 560 */ 220, 223, 24, 164, 165, 166, 23, 99, 100, 101,
/* 570 */ 155, 212, 23, 42, 43, 37, 88, 39, 110, 169,
/* 580 */ 170, 88, 89, 19, 20, 43, 22, 49, 185, 186,
/* 590 */ 23, 60, 61, 62, 63, 64, 65, 66, 67, 68,
/* 600 */ 69, 70, 71, 72, 189, 74, 75, 76, 77, 78,
/* 610 */ 79, 80, 81, 82, 83, 84, 16, 228, 0, 1,
/* 620 */ 2, 21, 19, 59, 147, 215, 23, 228, 213, 80,
/* 630 */ 147, 88, 89, 19, 20, 145, 22, 88, 89, 147,
/* 640 */ 98, 147, 42, 43, 20, 103, 169, 170, 20, 147,
/* 650 */ 147, 236, 169, 170, 20, 88, 89, 114, 147, 16,
/* 660 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
/* 670 */ 70, 71, 72, 59, 74, 75, 76, 77, 78, 79,
/* 680 */ 80, 81, 82, 83, 84, 42, 43, 147, 142, 143,
/* 690 */ 188, 88, 89, 130, 148, 132, 7, 8, 9, 188,
/* 700 */ 208, 155, 16, 60, 61, 62, 63, 64, 65, 66,
/* 710 */ 67, 68, 69, 70, 71, 72, 147, 74, 75, 76,
/* 720 */ 77, 78, 79, 80, 81, 82, 83, 84, 42, 43,
/* 730 */ 106, 147, 108, 109, 106, 189, 108, 109, 169, 170,
/* 740 */ 106, 147, 108, 109, 147, 16, 60, 61, 62, 63,
/* 750 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 213,
/* 760 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
/* 770 */ 84, 42, 43, 99, 100, 101, 182, 147, 161, 182,
/* 780 */ 99, 100, 101, 14, 147, 147, 147, 241, 16, 191,
/* 790 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
/* 800 */ 71, 72, 147, 74, 75, 76, 77, 78, 79, 80,
/* 810 */ 81, 82, 83, 84, 42, 43, 23, 200, 188, 225,
/* 820 */ 182, 52, 225, 54, 169, 170, 147, 188, 22, 22,
/* 830 */ 147, 147, 201, 202, 62, 63, 64, 65, 66, 67,
/* 840 */ 68, 69, 70, 71, 72, 208, 74, 75, 76, 77,
/* 850 */ 78, 79, 80, 81, 82, 83, 84, 16, 17, 12,
/* 860 */ 19, 155, 19, 225, 23, 182, 23, 188, 147, 239,
/* 870 */ 147, 24, 31, 16, 17, 147, 19, 147, 147, 155,
/* 880 */ 23, 88, 89, 19, 37, 21, 39, 147, 31, 48,
/* 890 */ 169, 170, 169, 170, 147, 189, 89, 169, 170, 58,
/* 900 */ 169, 170, 147, 97, 147, 48, 147, 114, 225, 169,
/* 910 */ 170, 161, 147, 189, 16, 58, 169, 170, 147, 78,
/* 920 */ 79, 114, 155, 147, 169, 170, 169, 170, 87, 88,
/* 930 */ 89, 88, 80, 92, 147, 78, 79, 80, 147, 91,
/* 940 */ 169, 170, 212, 19, 87, 88, 89, 16, 17, 92,
/* 950 */ 19, 110, 147, 188, 23, 147, 189, 203, 110, 107,
/* 960 */ 169, 170, 31, 111, 188, 124, 125, 126, 127, 128,
/* 970 */ 129, 123, 147, 192, 169, 170, 43, 169, 170, 48,
/* 980 */ 199, 124, 125, 126, 127, 128, 129, 242, 243, 58,
/* 990 */ 92, 5, 68, 147, 169, 170, 10, 11, 12, 13,
/* 1000 */ 124, 125, 147, 147, 107, 147, 147, 147, 111, 78,
/* 1010 */ 79, 20, 26, 22, 28, 20, 147, 22, 87, 88,
/* 1020 */ 89, 35, 147, 92, 169, 170, 147, 169, 170, 169,
/* 1030 */ 170, 98, 20, 47, 188, 49, 27, 7, 8, 53,
/* 1040 */ 147, 147, 56, 34, 169, 170, 147, 147, 169, 170,
/* 1050 */ 147, 20, 147, 22, 147, 124, 125, 126, 127, 128,
/* 1060 */ 129, 178, 169, 170, 178, 20, 147, 22, 169, 170,
/* 1070 */ 30, 59, 169, 170, 169, 170, 147, 147, 91, 92,
/* 1080 */ 20, 147, 22, 147, 178, 99, 100, 101, 169, 170,
/* 1090 */ 50, 105, 147, 20, 147, 22, 110, 147, 169, 170,
/* 1100 */ 147, 147, 147, 169, 170, 169, 170, 20, 147, 22,
/* 1110 */ 147, 233, 232, 147, 169, 170, 169, 170, 147, 20,
/* 1120 */ 134, 22, 169, 170, 169, 170, 147, 20, 147, 22,
/* 1130 */ 169, 170, 169, 170, 149, 169, 170, 20, 229, 22,
/* 1140 */ 169, 170, 102, 20, 20, 22, 22, 147, 169, 170,
/* 1150 */ 147, 147, 147, 147, 147, 147, 191, 147, 147, 222,
/* 1160 */ 147, 147, 147, 193, 229, 172, 172, 177, 172, 172,
/* 1170 */ 172, 194, 173, 6, 194, 146, 22, 154, 146, 146,
/* 1180 */ 146, 189, 121, 194, 118, 116, 119, 23, 120, 130,
/* 1190 */ 221, 112, 98, 152, 152, 160, 195, 115, 196, 98,
/* 1200 */ 40, 97, 19, 179, 84, 179, 160, 171, 171, 171,
/* 1210 */ 226, 160, 173, 197, 171, 198, 15, 152, 174, 171,
/* 1220 */ 171, 171, 204, 151, 205, 204, 174, 205, 151, 38,
/* 1230 */ 152, 151, 130, 152, 60, 152, 151, 184, 152, 184,
/* 1240 */ 19, 194, 214, 152, 15, 187, 226, 152, 194, 187,
/* 1250 */ 187, 187, 33, 137, 184, 152, 159, 152, 1, 234,
/* 1260 */ 20, 112, 235, 175, 175, 112, 107, 112, 112, 92,
/* 1270 */ 214, 19, 11, 20, 20, 19, 114, 19, 117, 20,
/* 1280 */ 117, 112, 22, 20, 22, 19, 22, 20, 20, 44,
/* 1290 */ 19, 44, 19, 19, 237, 20, 19, 32, 19, 44,
/* 1300 */ 96, 103, 16, 21, 17, 98, 231, 22, 237, 133,
/* 1310 */ 98, 19, 36, 5, 240, 45, 1, 45, 102, 243,
/* 1320 */ 51, 122, 19, 113, 14, 102, 115, 113, 17, 123,
/* 1330 */ 246, 122, 19, 14, 20, 135, 19, 3, 57, 136,
/* 1340 */ 4, 247, 247, 247, 247, 247, 68, 247, 68,
};
#define YY_SHIFT_USE_DFLT (-62)
#define YY_SHIFT_MAX 385
static const short yy_shift_ofst[] = {
/* 0 */ 23, 841, 986, -16, 841, 931, 931, 931, 258, 123,
/* 10 */ -36, 96, 931, 931, 931, 931, 931, -45, 468, 19,
/* 20 */ 567, 488, -38, -38, 53, 165, 208, 251, 324, 393,
/* 30 */ 462, 531, 600, 643, 686, 643, 643, 643, 643, 643,
/* 40 */ 643, 643, 643, 643, 643, 643, 643, 643, 643, 643,
/* 50 */ 643, 643, 729, 772, 772, 857, 931, 931, 931, 931,
/* 60 */ 931, 931, 931, 931, 931, 931, 931, 931, 931, 931,
/* 70 */ 931, 931, 931, 931, 931, 931, 931, 931, 931, 931,
/* 80 */ 931, 931, 931, 931, 931, 931, 931, 931, 931, 931,
/* 90 */ 931, 931, 931, 931, -61, -61, 6, 6, 280, 22,
/* 100 */ 61, 542, 247, 567, 567, 567, 567, 567, 567, 567,
/* 110 */ 115, 488, 106, -62, -62, 131, 326, 538, 538, 564,
/* 120 */ 614, 618, 132, 567, 132, 567, 567, 567, 567, 567,
/* 130 */ 567, 567, 567, 567, 567, 567, 567, 567, 848, -53,
/* 140 */ -36, -36, -36, -62, -62, -62, -15, -15, 321, 347,
/* 150 */ 624, 493, 628, 634, 847, 543, 793, 603, 549, 689,
/* 160 */ 567, 567, 852, 567, 567, 843, 567, 567, 807, 567,
/* 170 */ 567, 197, 807, 567, 567, 1040, 1040, 1040, 567, 567,
/* 180 */ 197, 567, 567, 197, 567, 336, 674, 567, 567, 197,
/* 190 */ 567, 567, 567, 197, 567, 567, 567, 197, 197, 567,
/* 200 */ 567, 567, 567, 567, 864, 897, 390, 876, 876, 563,
/* 210 */ 1009, 1009, 1009, 933, 1009, 1009, 806, 302, 302, 1167,
/* 220 */ 1167, 1167, 1167, 1154, -36, 1061, 1066, 1067, 1069, 1068,
/* 230 */ 1164, 1059, 1079, 1079, 1094, 1082, 1094, 1082, 1101, 1101,
/* 240 */ 1160, 1101, 1104, 1101, 1183, 1120, 1164, 1120, 1164, 1160,
/* 250 */ 1101, 1101, 1101, 1183, 1201, 1079, 1201, 1079, 1201, 1079,
/* 260 */ 1079, 1191, 1102, 1201, 1079, 1174, 1174, 1221, 1061, 1079,
/* 270 */ 1229, 1229, 1229, 1229, 1061, 1174, 1221, 1079, 1219, 1219,
/* 280 */ 1079, 1079, 1116, -62, -62, -62, -62, -62, -62, 456,
/* 290 */ 245, 681, 769, 73, 898, 991, 995, 1031, 1045, 246,
/* 300 */ 1030, 987, 1060, 1073, 1087, 1099, 1107, 1117, 1123, 924,
/* 310 */ 1124, 1012, 1257, 1240, 1149, 1153, 1155, 1156, 1177, 1159,
/* 320 */ 1252, 1253, 1254, 1256, 1261, 1258, 1259, 1260, 1263, 1161,
/* 330 */ 1262, 1163, 1264, 1162, 1266, 1267, 1169, 1268, 1265, 1245,
/* 340 */ 1271, 1247, 1273, 1275, 1274, 1277, 1255, 1279, 1204, 1198,
/* 350 */ 1286, 1287, 1282, 1207, 1276, 1269, 1270, 1285, 1272, 1176,
/* 360 */ 1212, 1292, 1308, 1315, 1216, 1278, 1280, 1199, 1303, 1210,
/* 370 */ 1310, 1211, 1311, 1214, 1223, 1209, 1313, 1206, 1314, 1319,
/* 380 */ 1281, 1200, 1203, 1317, 1334, 1336,
};
#define YY_REDUCE_USE_DFLT (-165)
#define YY_REDUCE_MAX 288
static const short yy_reduce_ofst[] = {
/* 0 */ -138, 277, 546, -13, 190, 279, 44, 338, 36, 203,
/* 10 */ 295, -140, 340, -76, 91, 344, 410, -22, 415, 35,
/* 20 */ 151, 331, 389, 399, -67, -67, -67, -67, -67, -67,
/* 30 */ -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
/* 40 */ -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
/* 50 */ -67, -67, -67, -67, -67, 477, 483, 569, 655, 721,
/* 60 */ 723, 728, 731, 740, 747, 755, 757, 771, 791, 805,
/* 70 */ 808, 825, 855, 858, 860, 875, 879, 893, 899, 903,
/* 80 */ 905, 919, 929, 934, 936, 945, 947, 953, 955, 961,
/* 90 */ 963, 966, 971, 979, -67, -67, -67, -67, 187, -67,
/* 100 */ -67, 262, 34, -56, 594, 597, 638, 683, 630, 153,
/* 110 */ -67, 195, -67, -67, -67, 274, -164, 242, 403, 236,
/* 120 */ 236, 74, 283, 348, 617, 41, 148, 492, 359, 637,
/* 130 */ 502, 511, 639, 679, 765, 776, 730, 846, 297, 363,
/* 140 */ 706, 724, 767, 781, 631, 745, 83, 212, 216, 252,
/* 150 */ 14, 75, 14, 14, 329, 374, 388, 494, 503, 490,
/* 160 */ 540, 584, 598, 503, 684, 750, 759, 787, 754, 856,
/* 170 */ 859, 14, 754, 869, 894, 883, 886, 906, 900, 907,
/* 180 */ 14, 930, 950, 14, 954, 880, 878, 981, 1000, 14,
/* 190 */ 1003, 1004, 1005, 14, 1006, 1007, 1008, 14, 14, 1010,
/* 200 */ 1011, 1013, 1014, 1015, 985, 965, 970, 909, 935, 937,
/* 210 */ 993, 994, 996, 990, 997, 998, 999, 977, 980, 1029,
/* 220 */ 1032, 1033, 1034, 1023, 992, 989, 1001, 1002, 1016, 1017,
/* 230 */ 1035, 969, 1041, 1042, 1018, 1019, 1021, 1022, 1036, 1037,
/* 240 */ 1024, 1038, 1039, 1043, 1044, 984, 1046, 1020, 1051, 1026,
/* 250 */ 1048, 1049, 1050, 1052, 1072, 1065, 1077, 1078, 1080, 1081,
/* 260 */ 1083, 1025, 1027, 1085, 1086, 1053, 1055, 1028, 1047, 1091,
/* 270 */ 1058, 1062, 1063, 1064, 1054, 1070, 1056, 1095, 1057, 1071,
/* 280 */ 1103, 1105, 1074, 1097, 1088, 1089, 1075, 1076, 1084,
};
static const YYACTIONTYPE yy_default[] = {
/* 0 */ 592, 818, 897, 707, 897, 818, 897, 818, 897, 843,
/* 10 */ 711, 872, 814, 818, 897, 897, 897, 789, 897, 843,
/* 20 */ 897, 623, 843, 843, 740, 897, 897, 897, 897, 897,
/* 30 */ 897, 897, 897, 741, 897, 817, 813, 809, 811, 810,
/* 40 */ 742, 731, 738, 745, 723, 856, 747, 748, 754, 755,
/* 50 */ 873, 871, 777, 776, 795, 897, 897, 897, 897, 897,
/* 60 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 70 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 80 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 90 */ 897, 897, 897, 897, 779, 800, 778, 788, 616, 780,
/* 100 */ 781, 676, 611, 897, 897, 897, 897, 897, 897, 897,
/* 110 */ 782, 897, 783, 796, 797, 897, 897, 897, 897, 897,
/* 120 */ 897, 592, 707, 897, 707, 897, 897, 897, 897, 897,
/* 130 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 140 */ 897, 897, 897, 701, 711, 890, 897, 897, 667, 897,
/* 150 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 599,
/* 160 */ 597, 897, 699, 897, 897, 625, 897, 897, 709, 897,
/* 170 */ 897, 714, 715, 897, 897, 897, 897, 897, 897, 897,
/* 180 */ 613, 897, 897, 688, 897, 849, 897, 897, 897, 863,
/* 190 */ 897, 897, 897, 861, 897, 897, 897, 690, 750, 830,
/* 200 */ 897, 876, 878, 897, 897, 699, 708, 897, 897, 812,
/* 210 */ 734, 734, 734, 646, 734, 734, 649, 744, 744, 596,
/* 220 */ 596, 596, 596, 666, 897, 744, 735, 737, 727, 739,
/* 230 */ 897, 897, 716, 716, 724, 726, 724, 726, 678, 678,
/* 240 */ 663, 678, 649, 678, 822, 827, 897, 827, 897, 663,
/* 250 */ 678, 678, 678, 822, 608, 716, 608, 716, 608, 716,
/* 260 */ 716, 853, 855, 608, 716, 680, 680, 756, 744, 716,
/* 270 */ 687, 687, 687, 687, 744, 680, 756, 716, 875, 875,
/* 280 */ 716, 716, 883, 633, 651, 651, 858, 890, 895, 897,
/* 290 */ 897, 897, 897, 763, 897, 897, 897, 897, 897, 897,
/* 300 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 836,
/* 310 */ 897, 897, 897, 897, 768, 764, 897, 765, 897, 693,
/* 320 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 330 */ 728, 897, 736, 897, 897, 897, 897, 897, 897, 897,
/* 340 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 350 */ 897, 897, 897, 897, 897, 897, 851, 852, 897, 897,
/* 360 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 370 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897,
/* 380 */ 882, 897, 897, 885, 593, 897, 587, 590, 589, 591,
/* 390 */ 595, 598, 620, 621, 622, 600, 601, 602, 603, 604,
/* 400 */ 605, 606, 612, 614, 632, 634, 618, 636, 697, 698,
/* 410 */ 760, 691, 692, 696, 771, 762, 766, 767, 769, 770,
/* 420 */ 784, 785, 787, 793, 799, 802, 786, 791, 792, 794,
/* 430 */ 798, 801, 694, 695, 805, 619, 626, 627, 630, 631,
/* 440 */ 839, 841, 840, 842, 629, 628, 772, 775, 807, 808,
/* 450 */ 864, 865, 866, 867, 868, 803, 815, 816, 717, 806,
/* 460 */ 790, 729, 732, 733, 730, 700, 710, 719, 720, 721,
/* 470 */ 722, 705, 706, 712, 725, 758, 759, 713, 702, 703,
/* 480 */ 704, 804, 761, 773, 774, 637, 638, 768, 639, 640,
/* 490 */ 641, 679, 682, 683, 684, 642, 661, 664, 665, 643,
/* 500 */ 650, 644, 645, 652, 653, 654, 657, 658, 659, 660,
/* 510 */ 655, 656, 823, 824, 828, 826, 825, 647, 648, 662,
/* 520 */ 635, 624, 617, 668, 671, 672, 673, 674, 675, 677,
/* 530 */ 669, 670, 615, 607, 609, 718, 845, 854, 850, 846,
/* 540 */ 847, 848, 610, 819, 820, 681, 752, 753, 844, 857,
/* 550 */ 859, 757, 860, 862, 887, 685, 686, 689, 829, 869,
/* 560 */ 743, 746, 749, 751, 831, 832, 833, 834, 837, 838,
/* 570 */ 835, 870, 874, 877, 879, 880, 881, 884, 886, 891,
/* 580 */ 892, 893, 896, 894, 594, 588,
};
#define YY_SZ_ACTTAB (int)(sizeof(yy_action)/sizeof(yy_action[0]))
/* The next table maps tokens into fallback tokens. If a construct
** like the following:
**
** %fallback ID X Y Z.
**
** appears in the grammer, then ID becomes a fallback token for X, Y,
** and Z. Whenever one of the tokens X, Y, or Z is input to the parser
** but it does not parse, the type of the token is changed to ID and
** the parse is retried before an error is thrown.
*/
#ifdef YYFALLBACK
static const YYCODETYPE yyFallback[] = {
0, /* $ => nothing */
0, /* SEMI => nothing */
23, /* EXPLAIN => ID */
23, /* QUERY => ID */
23, /* PLAN => ID */
23, /* BEGIN => ID */
0, /* TRANSACTION => nothing */
23, /* DEFERRED => ID */
23, /* IMMEDIATE => ID */
23, /* EXCLUSIVE => ID */
0, /* COMMIT => nothing */
23, /* END => ID */
0, /* ROLLBACK => nothing */
0, /* CREATE => nothing */
0, /* TABLE => nothing */
23, /* IF => ID */
0, /* NOT => nothing */
0, /* EXISTS => nothing */
23, /* TEMP => ID */
0, /* LP => nothing */
0, /* RP => nothing */
0, /* AS => nothing */
0, /* COMMA => nothing */
0, /* ID => nothing */
23, /* ABORT => ID */
23, /* AFTER => ID */
23, /* ANALYZE => ID */
23, /* ASC => ID */
23, /* ATTACH => ID */
23, /* BEFORE => ID */
23, /* CASCADE => ID */
23, /* CAST => ID */
23, /* CONFLICT => ID */
23, /* DATABASE => ID */
23, /* DESC => ID */
23, /* DETACH => ID */
23, /* EACH => ID */
23, /* FAIL => ID */
23, /* FOR => ID */
23, /* IGNORE => ID */
23, /* INITIALLY => ID */
23, /* INSTEAD => ID */
23, /* LIKE_KW => ID */
23, /* MATCH => ID */
23, /* KEY => ID */
23, /* OF => ID */
23, /* OFFSET => ID */
23, /* PRAGMA => ID */
23, /* RAISE => ID */
23, /* REPLACE => ID */
23, /* RESTRICT => ID */
23, /* ROW => ID */
23, /* TRIGGER => ID */
23, /* VACUUM => ID */
23, /* VIEW => ID */
23, /* VIRTUAL => ID */
23, /* REINDEX => ID */
23, /* RENAME => ID */
23, /* CTIME_KW => ID */
0, /* ANY => nothing */
0, /* OR => nothing */
0, /* AND => nothing */
0, /* IS => nothing */
0, /* BETWEEN => nothing */
0, /* IN => nothing */
0, /* ISNULL => nothing */
0, /* NOTNULL => nothing */
0, /* NE => nothing */
0, /* EQ => nothing */
0, /* GT => nothing */
0, /* LE => nothing */
0, /* LT => nothing */
0, /* GE => nothing */
0, /* ESCAPE => nothing */
0, /* BITAND => nothing */
0, /* BITOR => nothing */
0, /* LSHIFT => nothing */
0, /* RSHIFT => nothing */
0, /* PLUS => nothing */
0, /* MINUS => nothing */
0, /* STAR => nothing */
0, /* SLASH => nothing */
0, /* REM => nothing */
0, /* CONCAT => nothing */
0, /* COLLATE => nothing */
0, /* UMINUS => nothing */
0, /* UPLUS => nothing */
0, /* BITNOT => nothing */
0, /* STRING => nothing */
0, /* JOIN_KW => nothing */
0, /* CONSTRAINT => nothing */
0, /* DEFAULT => nothing */
0, /* NULL => nothing */
0, /* PRIMARY => nothing */
0, /* UNIQUE => nothing */
0, /* CHECK => nothing */
0, /* REFERENCES => nothing */
0, /* AUTOINCR => nothing */
0, /* ON => nothing */
0, /* DELETE => nothing */
0, /* UPDATE => nothing */
0, /* INSERT => nothing */
0, /* SET => nothing */
0, /* DEFERRABLE => nothing */
0, /* FOREIGN => nothing */
0, /* DROP => nothing */
0, /* UNION => nothing */
0, /* ALL => nothing */
0, /* EXCEPT => nothing */
0, /* INTERSECT => nothing */
0, /* SELECT => nothing */
0, /* DISTINCT => nothing */
0, /* DOT => nothing */
0, /* FROM => nothing */
0, /* JOIN => nothing */
0, /* USING => nothing */
0, /* ORDER => nothing */
0, /* BY => nothing */
0, /* GROUP => nothing */
0, /* HAVING => nothing */
0, /* LIMIT => nothing */
0, /* WHERE => nothing */
0, /* INTO => nothing */
0, /* VALUES => nothing */
0, /* INTEGER => nothing */
0, /* FLOAT => nothing */
0, /* BLOB => nothing */
0, /* REGISTER => nothing */
0, /* VARIABLE => nothing */
0, /* CASE => nothing */
0, /* WHEN => nothing */
0, /* THEN => nothing */
0, /* ELSE => nothing */
0, /* INDEX => nothing */
0, /* ALTER => nothing */
0, /* TO => nothing */
0, /* ADD => nothing */
0, /* COLUMNKW => nothing */
};
#endif /* YYFALLBACK */
/* The following structure represents a single element of the
** parser's stack. Information stored includes:
**
** + The state number for the parser at this level of the stack.
**
** + The value of the token stored at this level of the stack.
** (In other words, the "major" token.)
**
** + The semantic value stored at this level of the stack. This is
** the information used by the action routines in the grammar.
** It is sometimes called the "minor" token.
*/
struct yyStackEntry {
int stateno; /* The state-number */
int major; /* The major token value. This is the code
** number for the token at this stack level */
YYMINORTYPE minor; /* The user-supplied minor token value. This
** is the value of the token */
};
typedef struct yyStackEntry yyStackEntry;
/* The state of the parser is completely contained in an instance of
** the following structure */
struct yyParser {
int yyidx; /* Index of top element in stack */
int yyerrcnt; /* Shifts left before out of the error */
sqlite3ParserARG_SDECL /* A place to hold %extra_argument */
#if YYSTACKDEPTH<=0
int yystksz; /* Current side of the stack */
yyStackEntry *yystack; /* The parser's stack */
#else
yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */
#endif
};
typedef struct yyParser yyParser;
#ifndef NDEBUG
#include <stdio.h>
static FILE *yyTraceFILE = 0;
static char *yyTracePrompt = 0;
#endif /* NDEBUG */
#ifndef NDEBUG
/*
** Turn parser tracing on by giving a stream to which to write the trace
** and a prompt to preface each trace message. Tracing is turned off
** by making either argument NULL
**
** Inputs:
** <ul>
** <li> A FILE* to which trace output should be written.
** If NULL, then tracing is turned off.
** <li> A prefix string written at the beginning of every
** line of trace output. If NULL, then tracing is
** turned off.
** </ul>
**
** Outputs:
** None.
*/
void sqlite3ParserTrace(FILE *TraceFILE, char *zTracePrompt){
yyTraceFILE = TraceFILE;
yyTracePrompt = zTracePrompt;
if( yyTraceFILE==0 ) yyTracePrompt = 0;
else if( yyTracePrompt==0 ) yyTraceFILE = 0;
}
#endif /* NDEBUG */
#ifndef NDEBUG
/* For tracing shifts, the names of all terminals and nonterminals
** are required. The following table supplies these names */
static const char *const yyTokenName[] = {
"$", "SEMI", "EXPLAIN", "QUERY",
"PLAN", "BEGIN", "TRANSACTION", "DEFERRED",
"IMMEDIATE", "EXCLUSIVE", "COMMIT", "END",
"ROLLBACK", "CREATE", "TABLE", "IF",
"NOT", "EXISTS", "TEMP", "LP",
"RP", "AS", "COMMA", "ID",
"ABORT", "AFTER", "ANALYZE", "ASC",
"ATTACH", "BEFORE", "CASCADE", "CAST",
"CONFLICT", "DATABASE", "DESC", "DETACH",
"EACH", "FAIL", "FOR", "IGNORE",
"INITIALLY", "INSTEAD", "LIKE_KW", "MATCH",
"KEY", "OF", "OFFSET", "PRAGMA",
"RAISE", "REPLACE", "RESTRICT", "ROW",
"TRIGGER", "VACUUM", "VIEW", "VIRTUAL",
"REINDEX", "RENAME", "CTIME_KW", "ANY",
"OR", "AND", "IS", "BETWEEN",
"IN", "ISNULL", "NOTNULL", "NE",
"EQ", "GT", "LE", "LT",
"GE", "ESCAPE", "BITAND", "BITOR",
"LSHIFT", "RSHIFT", "PLUS", "MINUS",
"STAR", "SLASH", "REM", "CONCAT",
"COLLATE", "UMINUS", "UPLUS", "BITNOT",
"STRING", "JOIN_KW", "CONSTRAINT", "DEFAULT",
"NULL", "PRIMARY", "UNIQUE", "CHECK",
"REFERENCES", "AUTOINCR", "ON", "DELETE",
"UPDATE", "INSERT", "SET", "DEFERRABLE",
"FOREIGN", "DROP", "UNION", "ALL",
"EXCEPT", "INTERSECT", "SELECT", "DISTINCT",
"DOT", "FROM", "JOIN", "USING",
"ORDER", "BY", "GROUP", "HAVING",
"LIMIT", "WHERE", "INTO", "VALUES",
"INTEGER", "FLOAT", "BLOB", "REGISTER",
"VARIABLE", "CASE", "WHEN", "THEN",
"ELSE", "INDEX", "ALTER", "TO",
"ADD", "COLUMNKW", "error", "input",
"cmdlist", "ecmd", "cmdx", "cmd",
"explain", "transtype", "trans_opt", "nm",
"create_table", "create_table_args", "temp", "ifnotexists",
"dbnm", "columnlist", "conslist_opt", "select",
"column", "columnid", "type", "carglist",
"id", "ids", "typetoken", "typename",
"signed", "plus_num", "minus_num", "carg",
"ccons", "term", "expr", "onconf",
"sortorder", "autoinc", "idxlist_opt", "refargs",
"defer_subclause", "refarg", "refact", "init_deferred_pred_opt",
"conslist", "tcons", "idxlist", "defer_subclause_opt",
"orconf", "resolvetype", "raisetype", "ifexists",
"fullname", "oneselect", "multiselect_op", "distinct",
"selcollist", "from", "where_opt", "groupby_opt",
"having_opt", "orderby_opt", "limit_opt", "sclp",
"as", "seltablist", "stl_prefix", "joinop",
"on_opt", "using_opt", "seltablist_paren", "joinop2",
"inscollist", "sortlist", "sortitem", "exprlist",
"setlist", "insert_cmd", "inscollist_opt", "itemlist",
"likeop", "escape", "between_op", "in_op",
"case_operand", "case_exprlist", "case_else", "expritem",
"uniqueflag", "idxitem", "collate", "nmnum",
"plus_opt", "number", "trigger_decl", "trigger_cmd_list",
"trigger_time", "trigger_event", "foreach_clause", "when_clause",
"trigger_cmd", "database_kw_opt", "key_opt", "add_column_fullname",
"kwcolumn_opt", "create_vtab", "vtabarglist", "vtabarg",
"vtabargtoken", "lp", "anylist",
};
#endif /* NDEBUG */
#ifndef NDEBUG
/* For tracing reduce actions, the names of all rules are required.
*/
static const char *const yyRuleName[] = {
/* 0 */ "input ::= cmdlist",
/* 1 */ "cmdlist ::= cmdlist ecmd",
/* 2 */ "cmdlist ::= ecmd",
/* 3 */ "cmdx ::= cmd",
/* 4 */ "ecmd ::= SEMI",
/* 5 */ "ecmd ::= explain cmdx SEMI",
/* 6 */ "explain ::=",
/* 7 */ "explain ::= EXPLAIN",
/* 8 */ "explain ::= EXPLAIN QUERY PLAN",
/* 9 */ "cmd ::= BEGIN transtype trans_opt",
/* 10 */ "trans_opt ::=",
/* 11 */ "trans_opt ::= TRANSACTION",
/* 12 */ "trans_opt ::= TRANSACTION nm",
/* 13 */ "transtype ::=",
/* 14 */ "transtype ::= DEFERRED",
/* 15 */ "transtype ::= IMMEDIATE",
/* 16 */ "transtype ::= EXCLUSIVE",
/* 17 */ "cmd ::= COMMIT trans_opt",
/* 18 */ "cmd ::= END trans_opt",
/* 19 */ "cmd ::= ROLLBACK trans_opt",
/* 20 */ "cmd ::= create_table create_table_args",
/* 21 */ "create_table ::= CREATE temp TABLE ifnotexists nm dbnm",
/* 22 */ "ifnotexists ::=",
/* 23 */ "ifnotexists ::= IF NOT EXISTS",
/* 24 */ "temp ::= TEMP",
/* 25 */ "temp ::=",
/* 26 */ "create_table_args ::= LP columnlist conslist_opt RP",
/* 27 */ "create_table_args ::= AS select",
/* 28 */ "columnlist ::= columnlist COMMA column",
/* 29 */ "columnlist ::= column",
/* 30 */ "column ::= columnid type carglist",
/* 31 */ "columnid ::= nm",
/* 32 */ "id ::= ID",
/* 33 */ "ids ::= ID|STRING",
/* 34 */ "nm ::= ID",
/* 35 */ "nm ::= STRING",
/* 36 */ "nm ::= JOIN_KW",
/* 37 */ "type ::=",
/* 38 */ "type ::= typetoken",
/* 39 */ "typetoken ::= typename",
/* 40 */ "typetoken ::= typename LP signed RP",
/* 41 */ "typetoken ::= typename LP signed COMMA signed RP",
/* 42 */ "typename ::= ids",
/* 43 */ "typename ::= typename ids",
/* 44 */ "signed ::= plus_num",
/* 45 */ "signed ::= minus_num",
/* 46 */ "carglist ::= carglist carg",
/* 47 */ "carglist ::=",
/* 48 */ "carg ::= CONSTRAINT nm ccons",
/* 49 */ "carg ::= ccons",
/* 50 */ "ccons ::= DEFAULT term",
/* 51 */ "ccons ::= DEFAULT LP expr RP",
/* 52 */ "ccons ::= DEFAULT PLUS term",
/* 53 */ "ccons ::= DEFAULT MINUS term",
/* 54 */ "ccons ::= DEFAULT id",
/* 55 */ "ccons ::= NULL onconf",
/* 56 */ "ccons ::= NOT NULL onconf",
/* 57 */ "ccons ::= PRIMARY KEY sortorder onconf autoinc",
/* 58 */ "ccons ::= UNIQUE onconf",
/* 59 */ "ccons ::= CHECK LP expr RP",
/* 60 */ "ccons ::= REFERENCES nm idxlist_opt refargs",
/* 61 */ "ccons ::= defer_subclause",
/* 62 */ "ccons ::= COLLATE id",
/* 63 */ "autoinc ::=",
/* 64 */ "autoinc ::= AUTOINCR",
/* 65 */ "refargs ::=",
/* 66 */ "refargs ::= refargs refarg",
/* 67 */ "refarg ::= MATCH nm",
/* 68 */ "refarg ::= ON DELETE refact",
/* 69 */ "refarg ::= ON UPDATE refact",
/* 70 */ "refarg ::= ON INSERT refact",
/* 71 */ "refact ::= SET NULL",
/* 72 */ "refact ::= SET DEFAULT",
/* 73 */ "refact ::= CASCADE",
/* 74 */ "refact ::= RESTRICT",
/* 75 */ "defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt",
/* 76 */ "defer_subclause ::= DEFERRABLE init_deferred_pred_opt",
/* 77 */ "init_deferred_pred_opt ::=",
/* 78 */ "init_deferred_pred_opt ::= INITIALLY DEFERRED",
/* 79 */ "init_deferred_pred_opt ::= INITIALLY IMMEDIATE",
/* 80 */ "conslist_opt ::=",
/* 81 */ "conslist_opt ::= COMMA conslist",
/* 82 */ "conslist ::= conslist COMMA tcons",
/* 83 */ "conslist ::= conslist tcons",
/* 84 */ "conslist ::= tcons",
/* 85 */ "tcons ::= CONSTRAINT nm",
/* 86 */ "tcons ::= PRIMARY KEY LP idxlist autoinc RP onconf",
/* 87 */ "tcons ::= UNIQUE LP idxlist RP onconf",
/* 88 */ "tcons ::= CHECK LP expr RP onconf",
/* 89 */ "tcons ::= FOREIGN KEY LP idxlist RP REFERENCES nm idxlist_opt refargs defer_subclause_opt",
/* 90 */ "defer_subclause_opt ::=",
/* 91 */ "defer_subclause_opt ::= defer_subclause",
/* 92 */ "onconf ::=",
/* 93 */ "onconf ::= ON CONFLICT resolvetype",
/* 94 */ "orconf ::=",
/* 95 */ "orconf ::= OR resolvetype",
/* 96 */ "resolvetype ::= raisetype",
/* 97 */ "resolvetype ::= IGNORE",
/* 98 */ "resolvetype ::= REPLACE",
/* 99 */ "cmd ::= DROP TABLE ifexists fullname",
/* 100 */ "ifexists ::= IF EXISTS",
/* 101 */ "ifexists ::=",
/* 102 */ "cmd ::= CREATE temp VIEW ifnotexists nm dbnm AS select",
/* 103 */ "cmd ::= DROP VIEW ifexists fullname",
/* 104 */ "cmd ::= select",
/* 105 */ "select ::= oneselect",
/* 106 */ "select ::= select multiselect_op oneselect",
/* 107 */ "multiselect_op ::= UNION",
/* 108 */ "multiselect_op ::= UNION ALL",
/* 109 */ "multiselect_op ::= EXCEPT|INTERSECT",
/* 110 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt",
/* 111 */ "distinct ::= DISTINCT",
/* 112 */ "distinct ::= ALL",
/* 113 */ "distinct ::=",
/* 114 */ "sclp ::= selcollist COMMA",
/* 115 */ "sclp ::=",
/* 116 */ "selcollist ::= sclp expr as",
/* 117 */ "selcollist ::= sclp STAR",
/* 118 */ "selcollist ::= sclp nm DOT STAR",
/* 119 */ "as ::= AS nm",
/* 120 */ "as ::= ids",
/* 121 */ "as ::=",
/* 122 */ "from ::=",
/* 123 */ "from ::= FROM seltablist",
/* 124 */ "stl_prefix ::= seltablist joinop",
/* 125 */ "stl_prefix ::=",
/* 126 */ "seltablist ::= stl_prefix nm dbnm as on_opt using_opt",
/* 127 */ "seltablist ::= stl_prefix LP seltablist_paren RP as on_opt using_opt",
/* 128 */ "seltablist_paren ::= select",
/* 129 */ "seltablist_paren ::= seltablist",
/* 130 */ "dbnm ::=",
/* 131 */ "dbnm ::= DOT nm",
/* 132 */ "fullname ::= nm dbnm",
/* 133 */ "joinop ::= COMMA|JOIN",
/* 134 */ "joinop ::= JOIN_KW JOIN",
/* 135 */ "joinop ::= JOIN_KW nm JOIN",
/* 136 */ "joinop ::= JOIN_KW nm nm JOIN",
/* 137 */ "on_opt ::= ON expr",
/* 138 */ "on_opt ::=",
/* 139 */ "using_opt ::= USING LP inscollist RP",
/* 140 */ "using_opt ::=",
/* 141 */ "orderby_opt ::=",
/* 142 */ "orderby_opt ::= ORDER BY sortlist",
/* 143 */ "sortlist ::= sortlist COMMA sortitem sortorder",
/* 144 */ "sortlist ::= sortitem sortorder",
/* 145 */ "sortitem ::= expr",
/* 146 */ "sortorder ::= ASC",
/* 147 */ "sortorder ::= DESC",
/* 148 */ "sortorder ::=",
/* 149 */ "groupby_opt ::=",
/* 150 */ "groupby_opt ::= GROUP BY exprlist",
/* 151 */ "having_opt ::=",
/* 152 */ "having_opt ::= HAVING expr",
/* 153 */ "limit_opt ::=",
/* 154 */ "limit_opt ::= LIMIT expr",
/* 155 */ "limit_opt ::= LIMIT expr OFFSET expr",
/* 156 */ "limit_opt ::= LIMIT expr COMMA expr",
/* 157 */ "cmd ::= DELETE FROM fullname where_opt",
/* 158 */ "where_opt ::=",
/* 159 */ "where_opt ::= WHERE expr",
/* 160 */ "cmd ::= UPDATE orconf fullname SET setlist where_opt",
/* 161 */ "setlist ::= setlist COMMA nm EQ expr",
/* 162 */ "setlist ::= nm EQ expr",
/* 163 */ "cmd ::= insert_cmd INTO fullname inscollist_opt VALUES LP itemlist RP",
/* 164 */ "cmd ::= insert_cmd INTO fullname inscollist_opt select",
/* 165 */ "cmd ::= insert_cmd INTO fullname inscollist_opt DEFAULT VALUES",
/* 166 */ "insert_cmd ::= INSERT orconf",
/* 167 */ "insert_cmd ::= REPLACE",
/* 168 */ "itemlist ::= itemlist COMMA expr",
/* 169 */ "itemlist ::= expr",
/* 170 */ "inscollist_opt ::=",
/* 171 */ "inscollist_opt ::= LP inscollist RP",
/* 172 */ "inscollist ::= inscollist COMMA nm",
/* 173 */ "inscollist ::= nm",
/* 174 */ "expr ::= term",
/* 175 */ "expr ::= LP expr RP",
/* 176 */ "term ::= NULL",
/* 177 */ "expr ::= ID",
/* 178 */ "expr ::= JOIN_KW",
/* 179 */ "expr ::= nm DOT nm",
/* 180 */ "expr ::= nm DOT nm DOT nm",
/* 181 */ "term ::= INTEGER|FLOAT|BLOB",
/* 182 */ "term ::= STRING",
/* 183 */ "expr ::= REGISTER",
/* 184 */ "expr ::= VARIABLE",
/* 185 */ "expr ::= expr COLLATE id",
/* 186 */ "expr ::= CAST LP expr AS typetoken RP",
/* 187 */ "expr ::= ID LP distinct exprlist RP",
/* 188 */ "expr ::= ID LP STAR RP",
/* 189 */ "term ::= CTIME_KW",
/* 190 */ "expr ::= expr AND expr",
/* 191 */ "expr ::= expr OR expr",
/* 192 */ "expr ::= expr LT|GT|GE|LE expr",
/* 193 */ "expr ::= expr EQ|NE expr",
/* 194 */ "expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr",
/* 195 */ "expr ::= expr PLUS|MINUS expr",
/* 196 */ "expr ::= expr STAR|SLASH|REM expr",
/* 197 */ "expr ::= expr CONCAT expr",
/* 198 */ "likeop ::= LIKE_KW",
/* 199 */ "likeop ::= NOT LIKE_KW",
/* 200 */ "likeop ::= MATCH",
/* 201 */ "likeop ::= NOT MATCH",
/* 202 */ "escape ::= ESCAPE expr",
/* 203 */ "escape ::=",
/* 204 */ "expr ::= expr likeop expr escape",
/* 205 */ "expr ::= expr ISNULL|NOTNULL",
/* 206 */ "expr ::= expr IS NULL",
/* 207 */ "expr ::= expr NOT NULL",
/* 208 */ "expr ::= expr IS NOT NULL",
/* 209 */ "expr ::= NOT|BITNOT expr",
/* 210 */ "expr ::= MINUS expr",
/* 211 */ "expr ::= PLUS expr",
/* 212 */ "between_op ::= BETWEEN",
/* 213 */ "between_op ::= NOT BETWEEN",
/* 214 */ "expr ::= expr between_op expr AND expr",
/* 215 */ "in_op ::= IN",
/* 216 */ "in_op ::= NOT IN",
/* 217 */ "expr ::= expr in_op LP exprlist RP",
/* 218 */ "expr ::= LP select RP",
/* 219 */ "expr ::= expr in_op LP select RP",
/* 220 */ "expr ::= expr in_op nm dbnm",
/* 221 */ "expr ::= EXISTS LP select RP",
/* 222 */ "expr ::= CASE case_operand case_exprlist case_else END",
/* 223 */ "case_exprlist ::= case_exprlist WHEN expr THEN expr",
/* 224 */ "case_exprlist ::= WHEN expr THEN expr",
/* 225 */ "case_else ::= ELSE expr",
/* 226 */ "case_else ::=",
/* 227 */ "case_operand ::= expr",
/* 228 */ "case_operand ::=",
/* 229 */ "exprlist ::= exprlist COMMA expritem",
/* 230 */ "exprlist ::= expritem",
/* 231 */ "expritem ::= expr",
/* 232 */ "expritem ::=",
/* 233 */ "cmd ::= CREATE uniqueflag INDEX ifnotexists nm dbnm ON nm LP idxlist RP",
/* 234 */ "uniqueflag ::= UNIQUE",
/* 235 */ "uniqueflag ::=",
/* 236 */ "idxlist_opt ::=",
/* 237 */ "idxlist_opt ::= LP idxlist RP",
/* 238 */ "idxlist ::= idxlist COMMA idxitem collate sortorder",
/* 239 */ "idxlist ::= idxitem collate sortorder",
/* 240 */ "idxitem ::= nm",
/* 241 */ "collate ::=",
/* 242 */ "collate ::= COLLATE id",
/* 243 */ "cmd ::= DROP INDEX ifexists fullname",
/* 244 */ "cmd ::= VACUUM",
/* 245 */ "cmd ::= VACUUM nm",
/* 246 */ "cmd ::= PRAGMA nm dbnm EQ nmnum",
/* 247 */ "cmd ::= PRAGMA nm dbnm EQ ON",
/* 248 */ "cmd ::= PRAGMA nm dbnm EQ minus_num",
/* 249 */ "cmd ::= PRAGMA nm dbnm LP nmnum RP",
/* 250 */ "cmd ::= PRAGMA nm dbnm",
/* 251 */ "nmnum ::= plus_num",
/* 252 */ "nmnum ::= nm",
/* 253 */ "plus_num ::= plus_opt number",
/* 254 */ "minus_num ::= MINUS number",
/* 255 */ "number ::= INTEGER|FLOAT",
/* 256 */ "plus_opt ::= PLUS",
/* 257 */ "plus_opt ::=",
/* 258 */ "cmd ::= CREATE trigger_decl BEGIN trigger_cmd_list END",
/* 259 */ "trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause",
/* 260 */ "trigger_time ::= BEFORE",
/* 261 */ "trigger_time ::= AFTER",
/* 262 */ "trigger_time ::= INSTEAD OF",
/* 263 */ "trigger_time ::=",
/* 264 */ "trigger_event ::= DELETE|INSERT",
/* 265 */ "trigger_event ::= UPDATE",
/* 266 */ "trigger_event ::= UPDATE OF inscollist",
/* 267 */ "foreach_clause ::=",
/* 268 */ "foreach_clause ::= FOR EACH ROW",
/* 269 */ "when_clause ::=",
/* 270 */ "when_clause ::= WHEN expr",
/* 271 */ "trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI",
/* 272 */ "trigger_cmd_list ::=",
/* 273 */ "trigger_cmd ::= UPDATE orconf nm SET setlist where_opt",
/* 274 */ "trigger_cmd ::= insert_cmd INTO nm inscollist_opt VALUES LP itemlist RP",
/* 275 */ "trigger_cmd ::= insert_cmd INTO nm inscollist_opt select",
/* 276 */ "trigger_cmd ::= DELETE FROM nm where_opt",
/* 277 */ "trigger_cmd ::= select",
/* 278 */ "expr ::= RAISE LP IGNORE RP",
/* 279 */ "expr ::= RAISE LP raisetype COMMA nm RP",
/* 280 */ "raisetype ::= ROLLBACK",
/* 281 */ "raisetype ::= ABORT",
/* 282 */ "raisetype ::= FAIL",
/* 283 */ "cmd ::= DROP TRIGGER ifexists fullname",
/* 284 */ "cmd ::= ATTACH database_kw_opt expr AS expr key_opt",
/* 285 */ "cmd ::= DETACH database_kw_opt expr",
/* 286 */ "key_opt ::=",
/* 287 */ "key_opt ::= KEY expr",
/* 288 */ "database_kw_opt ::= DATABASE",
/* 289 */ "database_kw_opt ::=",
/* 290 */ "cmd ::= REINDEX",
/* 291 */ "cmd ::= REINDEX nm dbnm",
/* 292 */ "cmd ::= ANALYZE",
/* 293 */ "cmd ::= ANALYZE nm dbnm",
/* 294 */ "cmd ::= ALTER TABLE fullname RENAME TO nm",
/* 295 */ "cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt column",
/* 296 */ "add_column_fullname ::= fullname",
/* 297 */ "kwcolumn_opt ::=",
/* 298 */ "kwcolumn_opt ::= COLUMNKW",
/* 299 */ "cmd ::= create_vtab",
/* 300 */ "cmd ::= create_vtab LP vtabarglist RP",
/* 301 */ "create_vtab ::= CREATE VIRTUAL TABLE nm dbnm USING nm",
/* 302 */ "vtabarglist ::= vtabarg",
/* 303 */ "vtabarglist ::= vtabarglist COMMA vtabarg",
/* 304 */ "vtabarg ::=",
/* 305 */ "vtabarg ::= vtabarg vtabargtoken",
/* 306 */ "vtabargtoken ::= ANY",
/* 307 */ "vtabargtoken ::= lp anylist RP",
/* 308 */ "lp ::= LP",
/* 309 */ "anylist ::=",
/* 310 */ "anylist ::= anylist ANY",
};
#endif /* NDEBUG */
#if YYSTACKDEPTH<=0
/*
** Try to increase the size of the parser stack.
*/
static void yyGrowStack(yyParser *p){
int newSize;
yyStackEntry *pNew;
newSize = p->yystksz*2 + 100;
pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));
if( pNew ){
p->yystack = pNew;
p->yystksz = newSize;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sStack grows to %d entries!\n",
yyTracePrompt, p->yystksz);
}
#endif
}
}
#endif
/*
** This function allocates a new parser.
** The only argument is a pointer to a function which works like
** malloc.
**
** Inputs:
** A pointer to the function used to allocate memory.
**
** Outputs:
** A pointer to a parser. This pointer is used in subsequent calls
** to sqlite3Parser and sqlite3ParserFree.
*/
void *sqlite3ParserAlloc(void *(*mallocProc)(size_t)){
yyParser *pParser;
pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) );
if( pParser ){
pParser->yyidx = -1;
#if YYSTACKDEPTH<=0
yyGrowStack(pParser);
#endif
}
return pParser;
}
/* The following function deletes the value associated with a
** symbol. The symbol can be either a terminal or nonterminal.
** "yymajor" is the symbol code, and "yypminor" is a pointer to
** the value.
*/
static void yy_destructor(YYCODETYPE yymajor, YYMINORTYPE *yypminor){
switch( yymajor ){
/* Here is inserted the actions which take place when a
** terminal or non-terminal is destroyed. This can happen
** when the symbol is popped from the stack during a
** reduce or during error processing or when a parser is
** being destroyed before it is finished parsing.
**
** Note: during a reduce, the only symbols destroyed are those
** which appear on the RHS of the rule, but which are not used
** inside the C code.
*/
case 155:
case 189:
case 206:
#line 374 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3SelectDelete((yypminor->yy219));}
#line 1274 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 169:
case 170:
case 194:
case 196:
case 204:
case 210:
case 217:
case 220:
case 222:
case 223:
case 235:
#line 623 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3ExprDelete((yypminor->yy172));}
#line 1289 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 174:
case 182:
case 192:
case 195:
case 197:
case 199:
case 209:
case 211:
case 212:
case 215:
case 221:
#line 863 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3ExprListDelete((yypminor->yy174));}
#line 1304 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 188:
case 193:
case 201:
case 202:
#line 487 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3SrcListDelete((yypminor->yy373));}
#line 1312 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 205:
case 208:
case 214:
#line 504 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3IdListDelete((yypminor->yy432));}
#line 1319 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 231:
case 236:
#line 964 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3DeleteTriggerStep((yypminor->yy243));}
#line 1325 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 233:
#line 950 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3IdListDelete((yypminor->yy370).b);}
#line 1330 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 238:
#line 1037 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3ExprDelete((yypminor->yy386));}
#line 1335 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
default: break; /* If no destructor action specified: do nothing */
}
}
/*
** Pop the parser's stack once.
**
** If there is a destructor routine associated with the token which
** is popped from the stack, then call it.
**
** Return the major token number for the symbol popped.
*/
static int yy_pop_parser_stack(yyParser *pParser){
YYCODETYPE yymajor;
yyStackEntry *yytos = &pParser->yystack[pParser->yyidx];
if( pParser->yyidx<0 ) return 0;
#ifndef NDEBUG
if( yyTraceFILE && pParser->yyidx>=0 ){
fprintf(yyTraceFILE,"%sPopping %s\n",
yyTracePrompt,
yyTokenName[yytos->major]);
}
#endif
yymajor = yytos->major;
yy_destructor( yymajor, &yytos->minor);
pParser->yyidx--;
return yymajor;
}
/*
** Deallocate and destroy a parser. Destructors are all called for
** all stack elements before shutting the parser down.
**
** Inputs:
** <ul>
** <li> A pointer to the parser. This should be a pointer
** obtained from sqlite3ParserAlloc.
** <li> A pointer to a function used to reclaim memory obtained
** from malloc.
** </ul>
*/
void sqlite3ParserFree(
void *p, /* The parser to be deleted */
void (*freeProc)(void*) /* Function used to reclaim memory */
){
yyParser *pParser = (yyParser*)p;
if( pParser==0 ) return;
while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser);
#if YYSTACKDEPTH<=0
free(pParser->yystack);
#endif
(*freeProc)((void*)pParser);
}
/*
** Find the appropriate action for a parser given the terminal
** look-ahead token iLookAhead.
**
** If the look-ahead token is YYNOCODE, then check to see if the action is
** independent of the look-ahead. If it is, return the action, otherwise
** return YY_NO_ACTION.
*/
static int yy_find_shift_action(
yyParser *pParser, /* The parser */
YYCODETYPE iLookAhead /* The look-ahead token */
){
int i;
int stateno = pParser->yystack[pParser->yyidx].stateno;
if( stateno>YY_SHIFT_MAX || (i = yy_shift_ofst[stateno])==YY_SHIFT_USE_DFLT ){
return yy_default[stateno];
}
if( iLookAhead==YYNOCODE ){
return YY_NO_ACTION;
}
i += iLookAhead;
if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){
if( iLookAhead>0 ){
#ifdef YYFALLBACK
int iFallback; /* Fallback token */
if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0])
&& (iFallback = yyFallback[iLookAhead])!=0 ){
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE, "%sFALLBACK %s => %s\n",
yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]);
}
#endif
return yy_find_shift_action(pParser, iFallback);
}
#endif
#ifdef YYWILDCARD
{
int j = i - iLookAhead + YYWILDCARD;
if( j>=0 && j<YY_SZ_ACTTAB && yy_lookahead[j]==YYWILDCARD ){
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n",
yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]);
}
#endif /* NDEBUG */
return yy_action[j];
}
}
#endif /* YYWILDCARD */
}
return yy_default[stateno];
}else{
return yy_action[i];
}
}
/*
** Find the appropriate action for a parser given the non-terminal
** look-ahead token iLookAhead.
**
** If the look-ahead token is YYNOCODE, then check to see if the action is
** independent of the look-ahead. If it is, return the action, otherwise
** return YY_NO_ACTION.
*/
static int yy_find_reduce_action(
int stateno, /* Current state number */
YYCODETYPE iLookAhead /* The look-ahead token */
){
int i;
/* int stateno = pParser->yystack[pParser->yyidx].stateno; */
if( stateno>YY_REDUCE_MAX ||
(i = yy_reduce_ofst[stateno])==YY_REDUCE_USE_DFLT ){
return yy_default[stateno];
}
if( iLookAhead==YYNOCODE ){
return YY_NO_ACTION;
}
i += iLookAhead;
if( i<0 || i>=YY_SZ_ACTTAB || yy_lookahead[i]!=iLookAhead ){
return yy_default[stateno];
}else{
return yy_action[i];
}
}
/*
** The following routine is called if the stack overflows.
*/
static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){
sqlite3ParserARG_FETCH;
yypParser->yyidx--;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt);
}
#endif
while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
/* Here code is inserted which will execute if the parser
** stack every overflows */
#line 44 "ext/pdo_sqlite/sqlite/src/parse.y"
sqlite3ErrorMsg(pParse, "parser stack overflow");
pParse->parseError = 1;
#line 1499 "ext/pdo_sqlite/sqlite/src/parse.c"
sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument var */
}
/*
** Perform a shift action.
*/
static void yy_shift(
yyParser *yypParser, /* The parser to be shifted */
int yyNewState, /* The new state to shift in */
int yyMajor, /* The major token to shift in */
YYMINORTYPE *yypMinor /* Pointer ot the minor token to shift in */
){
yyStackEntry *yytos;
yypParser->yyidx++;
#if YYSTACKDEPTH>0
if( yypParser->yyidx>=YYSTACKDEPTH ){
yyStackOverflow(yypParser, yypMinor);
return;
}
#else
if( yypParser->yyidx>=yypParser->yystksz ){
yyGrowStack(yypParser);
if( yypParser->yyidx>=yypParser->yystksz ){
yyStackOverflow(yypParser, yypMinor);
return;
}
}
#endif
yytos = &yypParser->yystack[yypParser->yyidx];
yytos->stateno = yyNewState;
yytos->major = yyMajor;
yytos->minor = *yypMinor;
#ifndef NDEBUG
if( yyTraceFILE && yypParser->yyidx>0 ){
int i;
fprintf(yyTraceFILE,"%sShift %d\n",yyTracePrompt,yyNewState);
fprintf(yyTraceFILE,"%sStack:",yyTracePrompt);
for(i=1; i<=yypParser->yyidx; i++)
fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]);
fprintf(yyTraceFILE,"\n");
}
#endif
}
/* The following table contains information about every rule that
** is used during the reduce.
*/
static const struct {
YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */
unsigned char nrhs; /* Number of right-hand side symbols in the rule */
} yyRuleInfo[] = {
{ 139, 1 },
{ 140, 2 },
{ 140, 1 },
{ 142, 1 },
{ 141, 1 },
{ 141, 3 },
{ 144, 0 },
{ 144, 1 },
{ 144, 3 },
{ 143, 3 },
{ 146, 0 },
{ 146, 1 },
{ 146, 2 },
{ 145, 0 },
{ 145, 1 },
{ 145, 1 },
{ 145, 1 },
{ 143, 2 },
{ 143, 2 },
{ 143, 2 },
{ 143, 2 },
{ 148, 6 },
{ 151, 0 },
{ 151, 3 },
{ 150, 1 },
{ 150, 0 },
{ 149, 4 },
{ 149, 2 },
{ 153, 3 },
{ 153, 1 },
{ 156, 3 },
{ 157, 1 },
{ 160, 1 },
{ 161, 1 },
{ 147, 1 },
{ 147, 1 },
{ 147, 1 },
{ 158, 0 },
{ 158, 1 },
{ 162, 1 },
{ 162, 4 },
{ 162, 6 },
{ 163, 1 },
{ 163, 2 },
{ 164, 1 },
{ 164, 1 },
{ 159, 2 },
{ 159, 0 },
{ 167, 3 },
{ 167, 1 },
{ 168, 2 },
{ 168, 4 },
{ 168, 3 },
{ 168, 3 },
{ 168, 2 },
{ 168, 2 },
{ 168, 3 },
{ 168, 5 },
{ 168, 2 },
{ 168, 4 },
{ 168, 4 },
{ 168, 1 },
{ 168, 2 },
{ 173, 0 },
{ 173, 1 },
{ 175, 0 },
{ 175, 2 },
{ 177, 2 },
{ 177, 3 },
{ 177, 3 },
{ 177, 3 },
{ 178, 2 },
{ 178, 2 },
{ 178, 1 },
{ 178, 1 },
{ 176, 3 },
{ 176, 2 },
{ 179, 0 },
{ 179, 2 },
{ 179, 2 },
{ 154, 0 },
{ 154, 2 },
{ 180, 3 },
{ 180, 2 },
{ 180, 1 },
{ 181, 2 },
{ 181, 7 },
{ 181, 5 },
{ 181, 5 },
{ 181, 10 },
{ 183, 0 },
{ 183, 1 },
{ 171, 0 },
{ 171, 3 },
{ 184, 0 },
{ 184, 2 },
{ 185, 1 },
{ 185, 1 },
{ 185, 1 },
{ 143, 4 },
{ 187, 2 },
{ 187, 0 },
{ 143, 8 },
{ 143, 4 },
{ 143, 1 },
{ 155, 1 },
{ 155, 3 },
{ 190, 1 },
{ 190, 2 },
{ 190, 1 },
{ 189, 9 },
{ 191, 1 },
{ 191, 1 },
{ 191, 0 },
{ 199, 2 },
{ 199, 0 },
{ 192, 3 },
{ 192, 2 },
{ 192, 4 },
{ 200, 2 },
{ 200, 1 },
{ 200, 0 },
{ 193, 0 },
{ 193, 2 },
{ 202, 2 },
{ 202, 0 },
{ 201, 6 },
{ 201, 7 },
{ 206, 1 },
{ 206, 1 },
{ 152, 0 },
{ 152, 2 },
{ 188, 2 },
{ 203, 1 },
{ 203, 2 },
{ 203, 3 },
{ 203, 4 },
{ 204, 2 },
{ 204, 0 },
{ 205, 4 },
{ 205, 0 },
{ 197, 0 },
{ 197, 3 },
{ 209, 4 },
{ 209, 2 },
{ 210, 1 },
{ 172, 1 },
{ 172, 1 },
{ 172, 0 },
{ 195, 0 },
{ 195, 3 },
{ 196, 0 },
{ 196, 2 },
{ 198, 0 },
{ 198, 2 },
{ 198, 4 },
{ 198, 4 },
{ 143, 4 },
{ 194, 0 },
{ 194, 2 },
{ 143, 6 },
{ 212, 5 },
{ 212, 3 },
{ 143, 8 },
{ 143, 5 },
{ 143, 6 },
{ 213, 2 },
{ 213, 1 },
{ 215, 3 },
{ 215, 1 },
{ 214, 0 },
{ 214, 3 },
{ 208, 3 },
{ 208, 1 },
{ 170, 1 },
{ 170, 3 },
{ 169, 1 },
{ 170, 1 },
{ 170, 1 },
{ 170, 3 },
{ 170, 5 },
{ 169, 1 },
{ 169, 1 },
{ 170, 1 },
{ 170, 1 },
{ 170, 3 },
{ 170, 6 },
{ 170, 5 },
{ 170, 4 },
{ 169, 1 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 170, 3 },
{ 216, 1 },
{ 216, 2 },
{ 216, 1 },
{ 216, 2 },
{ 217, 2 },
{ 217, 0 },
{ 170, 4 },
{ 170, 2 },
{ 170, 3 },
{ 170, 3 },
{ 170, 4 },
{ 170, 2 },
{ 170, 2 },
{ 170, 2 },
{ 218, 1 },
{ 218, 2 },
{ 170, 5 },
{ 219, 1 },
{ 219, 2 },
{ 170, 5 },
{ 170, 3 },
{ 170, 5 },
{ 170, 4 },
{ 170, 4 },
{ 170, 5 },
{ 221, 5 },
{ 221, 4 },
{ 222, 2 },
{ 222, 0 },
{ 220, 1 },
{ 220, 0 },
{ 211, 3 },
{ 211, 1 },
{ 223, 1 },
{ 223, 0 },
{ 143, 11 },
{ 224, 1 },
{ 224, 0 },
{ 174, 0 },
{ 174, 3 },
{ 182, 5 },
{ 182, 3 },
{ 225, 1 },
{ 226, 0 },
{ 226, 2 },
{ 143, 4 },
{ 143, 1 },
{ 143, 2 },
{ 143, 5 },
{ 143, 5 },
{ 143, 5 },
{ 143, 6 },
{ 143, 3 },
{ 227, 1 },
{ 227, 1 },
{ 165, 2 },
{ 166, 2 },
{ 229, 1 },
{ 228, 1 },
{ 228, 0 },
{ 143, 5 },
{ 230, 11 },
{ 232, 1 },
{ 232, 1 },
{ 232, 2 },
{ 232, 0 },
{ 233, 1 },
{ 233, 1 },
{ 233, 3 },
{ 234, 0 },
{ 234, 3 },
{ 235, 0 },
{ 235, 2 },
{ 231, 3 },
{ 231, 0 },
{ 236, 6 },
{ 236, 8 },
{ 236, 5 },
{ 236, 4 },
{ 236, 1 },
{ 170, 4 },
{ 170, 6 },
{ 186, 1 },
{ 186, 1 },
{ 186, 1 },
{ 143, 4 },
{ 143, 6 },
{ 143, 3 },
{ 238, 0 },
{ 238, 2 },
{ 237, 1 },
{ 237, 0 },
{ 143, 1 },
{ 143, 3 },
{ 143, 1 },
{ 143, 3 },
{ 143, 6 },
{ 143, 6 },
{ 239, 1 },
{ 240, 0 },
{ 240, 1 },
{ 143, 1 },
{ 143, 4 },
{ 241, 7 },
{ 242, 1 },
{ 242, 3 },
{ 243, 0 },
{ 243, 2 },
{ 244, 1 },
{ 244, 3 },
{ 245, 1 },
{ 246, 0 },
{ 246, 2 },
};
static void yy_accept(yyParser*); /* Forward Declaration */
/*
** Perform a reduce action and the shift that must immediately
** follow the reduce.
*/
static void yy_reduce(
yyParser *yypParser, /* The parser */
int yyruleno /* Number of the rule by which to reduce */
){
int yygoto; /* The next state */
int yyact; /* The next action */
YYMINORTYPE yygotominor; /* The LHS of the rule reduced */
yyStackEntry *yymsp; /* The top of the parser's stack */
int yysize; /* Amount to pop the stack */
sqlite3ParserARG_FETCH;
yymsp = &yypParser->yystack[yypParser->yyidx];
#ifndef NDEBUG
if( yyTraceFILE && yyruleno>=0
&& yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){
fprintf(yyTraceFILE, "%sReduce [%s].\n", yyTracePrompt,
yyRuleName[yyruleno]);
}
#endif /* NDEBUG */
/* Silence complaints from purify about yygotominor being uninitialized
** in some cases when it is copied into the stack after the following
** switch. yygotominor is uninitialized when a rule reduces that does
** not set the value of its left-hand side nonterminal. Leaving the
** value of the nonterminal uninitialized is utterly harmless as long
** as the value is never used. So really the only thing this code
** accomplishes is to quieten purify.
**
** 2007-01-16: The wireshark project (www.wireshark.org) reports that
** without this code, their parser segfaults. I'm not sure what there
** parser is doing to make this happen. This is the second bug report
** from wireshark this week. Clearly they are stressing Lemon in ways
** that it has not been previously stressed... (SQLite ticket #2172)
*/
memset(&yygotominor, 0, sizeof(yygotominor));
switch( yyruleno ){
/* Beginning here are the reduction cases. A typical example
** follows:
** case 0:
** #line <lineno> <grammarfile>
** { ... } // User supplied code
** #line <lineno> <thisfile>
** break;
*/
case 0:
case 1:
case 2:
case 4:
case 5:
case 10:
case 11:
case 12:
case 20:
case 28:
case 29:
case 37:
case 44:
case 45:
case 46:
case 47:
case 48:
case 49:
case 55:
case 82:
case 83:
case 84:
case 85:
case 256:
case 257:
case 267:
case 268:
case 288:
case 289:
case 297:
case 298:
case 302:
case 303:
case 305:
case 309:
#line 97 "ext/pdo_sqlite/sqlite/src/parse.y"
{
}
#line 1953 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 3:
#line 100 "ext/pdo_sqlite/sqlite/src/parse.y"
{ sqlite3FinishCoding(pParse); }
#line 1958 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 6:
#line 103 "ext/pdo_sqlite/sqlite/src/parse.y"
{ sqlite3BeginParse(pParse, 0); }
#line 1963 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 7:
#line 105 "ext/pdo_sqlite/sqlite/src/parse.y"
{ sqlite3BeginParse(pParse, 1); }
#line 1968 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 8:
#line 106 "ext/pdo_sqlite/sqlite/src/parse.y"
{ sqlite3BeginParse(pParse, 2); }
#line 1973 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 9:
#line 112 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3BeginTransaction(pParse, yymsp[-1].minor.yy46);}
#line 1978 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 13:
#line 117 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = TK_DEFERRED;}
#line 1983 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 14:
case 15:
case 16:
case 107:
case 109:
#line 118 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = yymsp[0].major;}
#line 1992 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 17:
case 18:
#line 121 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3CommitTransaction(pParse);}
#line 1998 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 19:
#line 123 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3RollbackTransaction(pParse);}
#line 2003 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 21:
#line 128 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3StartTable(pParse,&yymsp[-1].minor.yy410,&yymsp[0].minor.yy410,yymsp[-4].minor.yy46,0,0,yymsp[-2].minor.yy46);
}
#line 2010 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 22:
case 25:
case 63:
case 77:
case 79:
case 90:
case 101:
case 112:
case 113:
case 212:
case 215:
#line 132 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = 0;}
#line 2025 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 23:
case 24:
case 64:
case 78:
case 100:
case 111:
case 213:
case 216:
#line 133 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = 1;}
#line 2037 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 26:
#line 139 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3EndTable(pParse,&yymsp[-1].minor.yy410,&yymsp[0].minor.yy0,0);
}
#line 2044 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 27:
#line 142 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3EndTable(pParse,0,0,yymsp[0].minor.yy219);
sqlite3SelectDelete(yymsp[0].minor.yy219);
}
#line 2052 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 30:
#line 154 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy410.z = yymsp[-2].minor.yy410.z;
yygotominor.yy410.n = (pParse->sLastToken.z-yymsp[-2].minor.yy410.z) + pParse->sLastToken.n;
}
#line 2060 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 31:
#line 158 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3AddColumn(pParse,&yymsp[0].minor.yy410);
yygotominor.yy410 = yymsp[0].minor.yy410;
}
#line 2068 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 32:
case 33:
case 34:
case 35:
case 36:
case 255:
#line 168 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410 = yymsp[0].minor.yy0;}
#line 2078 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 38:
#line 229 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddColumnType(pParse,&yymsp[0].minor.yy410);}
#line 2083 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 39:
case 42:
case 119:
case 120:
case 131:
case 240:
case 242:
case 251:
case 252:
case 253:
case 254:
#line 230 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410 = yymsp[0].minor.yy410;}
#line 2098 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 40:
#line 231 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy410.z = yymsp[-3].minor.yy410.z;
yygotominor.yy410.n = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-3].minor.yy410.z;
}
#line 2106 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 41:
#line 235 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy410.z = yymsp[-5].minor.yy410.z;
yygotominor.yy410.n = &yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-5].minor.yy410.z;
}
#line 2114 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 43:
#line 241 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410.z=yymsp[-1].minor.yy410.z; yygotominor.yy410.n=yymsp[0].minor.yy410.n+(yymsp[0].minor.yy410.z-yymsp[-1].minor.yy410.z);}
#line 2119 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 50:
case 52:
#line 252 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddDefaultValue(pParse,yymsp[0].minor.yy172);}
#line 2125 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 51:
#line 253 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddDefaultValue(pParse,yymsp[-1].minor.yy172);}
#line 2130 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 53:
#line 255 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *p = sqlite3Expr(TK_UMINUS, yymsp[0].minor.yy172, 0, 0);
sqlite3AddDefaultValue(pParse,p);
}
#line 2138 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 54:
#line 259 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *p = sqlite3Expr(TK_STRING, 0, 0, &yymsp[0].minor.yy410);
sqlite3AddDefaultValue(pParse,p);
}
#line 2146 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 56:
#line 268 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddNotNull(pParse, yymsp[0].minor.yy46);}
#line 2151 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 57:
#line 270 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddPrimaryKey(pParse,0,yymsp[-1].minor.yy46,yymsp[0].minor.yy46,yymsp[-2].minor.yy46);}
#line 2156 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 58:
#line 271 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3CreateIndex(pParse,0,0,0,0,yymsp[0].minor.yy46,0,0,0,0);}
#line 2161 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 59:
#line 272 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddCheckConstraint(pParse,yymsp[-1].minor.yy172);}
#line 2166 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 60:
#line 274 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3CreateForeignKey(pParse,0,&yymsp[-2].minor.yy410,yymsp[-1].minor.yy174,yymsp[0].minor.yy46);}
#line 2171 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 61:
#line 275 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3DeferForeignKey(pParse,yymsp[0].minor.yy46);}
#line 2176 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 62:
#line 276 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddCollateType(pParse, (char*)yymsp[0].minor.yy410.z, yymsp[0].minor.yy410.n);}
#line 2181 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 65:
#line 289 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = OE_Restrict * 0x010101; }
#line 2186 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 66:
#line 290 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = (yymsp[-1].minor.yy46 & yymsp[0].minor.yy405.mask) | yymsp[0].minor.yy405.value; }
#line 2191 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 67:
#line 292 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy405.value = 0; yygotominor.yy405.mask = 0x000000; }
#line 2196 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 68:
#line 293 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy405.value = yymsp[0].minor.yy46; yygotominor.yy405.mask = 0x0000ff; }
#line 2201 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 69:
#line 294 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy405.value = yymsp[0].minor.yy46<<8; yygotominor.yy405.mask = 0x00ff00; }
#line 2206 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 70:
#line 295 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy405.value = yymsp[0].minor.yy46<<16; yygotominor.yy405.mask = 0xff0000; }
#line 2211 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 71:
#line 297 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = OE_SetNull; }
#line 2216 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 72:
#line 298 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = OE_SetDflt; }
#line 2221 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 73:
#line 299 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = OE_Cascade; }
#line 2226 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 74:
#line 300 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = OE_Restrict; }
#line 2231 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 75:
case 76:
case 91:
case 93:
case 95:
case 96:
case 166:
#line 302 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = yymsp[0].minor.yy46;}
#line 2242 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 80:
#line 312 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410.n = 0; yygotominor.yy410.z = 0;}
#line 2247 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 81:
#line 313 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410 = yymsp[-1].minor.yy0;}
#line 2252 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 86:
#line 319 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddPrimaryKey(pParse,yymsp[-3].minor.yy174,yymsp[0].minor.yy46,yymsp[-2].minor.yy46,0);}
#line 2257 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 87:
#line 321 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3CreateIndex(pParse,0,0,0,yymsp[-2].minor.yy174,yymsp[0].minor.yy46,0,0,0,0);}
#line 2262 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 88:
#line 322 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3AddCheckConstraint(pParse,yymsp[-2].minor.yy172);}
#line 2267 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 89:
#line 324 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3CreateForeignKey(pParse, yymsp[-6].minor.yy174, &yymsp[-3].minor.yy410, yymsp[-2].minor.yy174, yymsp[-1].minor.yy46);
sqlite3DeferForeignKey(pParse, yymsp[0].minor.yy46);
}
#line 2275 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 92:
case 94:
#line 338 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Default;}
#line 2281 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 97:
#line 343 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Ignore;}
#line 2286 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 98:
case 167:
#line 344 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Replace;}
#line 2292 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 99:
#line 348 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3DropTable(pParse, yymsp[0].minor.yy373, 0, yymsp[-1].minor.yy46);
}
#line 2299 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 102:
#line 358 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3CreateView(pParse, &yymsp[-7].minor.yy0, &yymsp[-3].minor.yy410, &yymsp[-2].minor.yy410, yymsp[0].minor.yy219, yymsp[-6].minor.yy46, yymsp[-4].minor.yy46);
}
#line 2306 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 103:
#line 361 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3DropTable(pParse, yymsp[0].minor.yy373, 1, yymsp[-1].minor.yy46);
}
#line 2313 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 104:
#line 368 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3Select(pParse, yymsp[0].minor.yy219, SRT_Callback, 0, 0, 0, 0, 0);
sqlite3SelectDelete(yymsp[0].minor.yy219);
}
#line 2321 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 105:
case 128:
#line 378 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy219 = yymsp[0].minor.yy219;}
#line 2327 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 106:
#line 380 "ext/pdo_sqlite/sqlite/src/parse.y"
{
if( yymsp[0].minor.yy219 ){
yymsp[0].minor.yy219->op = yymsp[-1].minor.yy46;
yymsp[0].minor.yy219->pPrior = yymsp[-2].minor.yy219;
}
yygotominor.yy219 = yymsp[0].minor.yy219;
}
#line 2338 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 108:
#line 389 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = TK_ALL;}
#line 2343 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 110:
#line 393 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy219 = sqlite3SelectNew(yymsp[-6].minor.yy174,yymsp[-5].minor.yy373,yymsp[-4].minor.yy172,yymsp[-3].minor.yy174,yymsp[-2].minor.yy172,yymsp[-1].minor.yy174,yymsp[-7].minor.yy46,yymsp[0].minor.yy234.pLimit,yymsp[0].minor.yy234.pOffset);
}
#line 2350 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 114:
case 237:
#line 414 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = yymsp[-1].minor.yy174;}
#line 2356 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 115:
case 141:
case 149:
case 236:
#line 415 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = 0;}
#line 2364 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 116:
#line 416 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-2].minor.yy174,yymsp[-1].minor.yy172,yymsp[0].minor.yy410.n?&yymsp[0].minor.yy410:0);
}
#line 2371 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 117:
#line 419 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-1].minor.yy174, sqlite3Expr(TK_ALL, 0, 0, 0), 0);
}
#line 2378 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 118:
#line 422 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *pRight = sqlite3Expr(TK_ALL, 0, 0, 0);
Expr *pLeft = sqlite3Expr(TK_ID, 0, 0, &yymsp[-2].minor.yy410);
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-3].minor.yy174, sqlite3Expr(TK_DOT, pLeft, pRight, 0), 0);
}
#line 2387 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 121:
#line 434 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410.n = 0;}
#line 2392 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 122:
#line 446 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy373 = sqliteMalloc(sizeof(*yygotominor.yy373));}
#line 2397 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 123:
#line 447 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy373 = yymsp[0].minor.yy373;
sqlite3SrcListShiftJoinType(yygotominor.yy373);
}
#line 2405 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 124:
#line 455 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy373 = yymsp[-1].minor.yy373;
if( yygotominor.yy373 && yygotominor.yy373->nSrc>0 ) yygotominor.yy373->a[yygotominor.yy373->nSrc-1].jointype = yymsp[0].minor.yy46;
}
#line 2413 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 125:
#line 459 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy373 = 0;}
#line 2418 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 126:
#line 460 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy373 = sqlite3SrcListAppendFromTerm(yymsp[-5].minor.yy373,&yymsp[-4].minor.yy410,&yymsp[-3].minor.yy410,&yymsp[-2].minor.yy410,0,yymsp[-1].minor.yy172,yymsp[0].minor.yy432);
}
#line 2425 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 127:
#line 465 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy373 = sqlite3SrcListAppendFromTerm(yymsp[-6].minor.yy373,0,0,&yymsp[-2].minor.yy410,yymsp[-4].minor.yy219,yymsp[-1].minor.yy172,yymsp[0].minor.yy432);
}
#line 2432 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 129:
#line 476 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3SrcListShiftJoinType(yymsp[0].minor.yy373);
yygotominor.yy219 = sqlite3SelectNew(0,yymsp[0].minor.yy373,0,0,0,0,0,0,0);
}
#line 2440 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 130:
#line 483 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410.z=0; yygotominor.yy410.n=0;}
#line 2445 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 132:
#line 488 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy373 = sqlite3SrcListAppend(0,&yymsp[-1].minor.yy410,&yymsp[0].minor.yy410);}
#line 2450 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 133:
#line 492 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = JT_INNER; }
#line 2455 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 134:
#line 493 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = sqlite3JoinType(pParse,&yymsp[-1].minor.yy0,0,0); }
#line 2460 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 135:
#line 494 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = sqlite3JoinType(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy410,0); }
#line 2465 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 136:
#line 496 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = sqlite3JoinType(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy410,&yymsp[-1].minor.yy410); }
#line 2470 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 137:
case 145:
case 152:
case 159:
case 174:
case 202:
case 225:
case 227:
case 231:
#line 500 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = yymsp[0].minor.yy172;}
#line 2483 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 138:
case 151:
case 158:
case 203:
case 226:
case 228:
case 232:
#line 501 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = 0;}
#line 2494 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 139:
case 171:
#line 505 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy432 = yymsp[-1].minor.yy432;}
#line 2500 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 140:
case 170:
#line 506 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy432 = 0;}
#line 2506 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 142:
case 150:
#line 517 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = yymsp[0].minor.yy174;}
#line 2512 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 143:
#line 518 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-3].minor.yy174,yymsp[-1].minor.yy172,0);
if( yygotominor.yy174 ) yygotominor.yy174->a[yygotominor.yy174->nExpr-1].sortOrder = yymsp[0].minor.yy46;
}
#line 2520 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 144:
#line 522 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(0,yymsp[-1].minor.yy172,0);
if( yygotominor.yy174 && yygotominor.yy174->a ) yygotominor.yy174->a[0].sortOrder = yymsp[0].minor.yy46;
}
#line 2528 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 146:
case 148:
#line 530 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = SQLITE_SO_ASC;}
#line 2534 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 147:
#line 531 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = SQLITE_SO_DESC;}
#line 2539 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 153:
#line 557 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy234.pLimit = 0; yygotominor.yy234.pOffset = 0;}
#line 2544 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 154:
#line 558 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy234.pLimit = yymsp[0].minor.yy172; yygotominor.yy234.pOffset = 0;}
#line 2549 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 155:
#line 560 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy234.pLimit = yymsp[-2].minor.yy172; yygotominor.yy234.pOffset = yymsp[0].minor.yy172;}
#line 2554 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 156:
#line 562 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy234.pOffset = yymsp[-2].minor.yy172; yygotominor.yy234.pLimit = yymsp[0].minor.yy172;}
#line 2559 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 157:
#line 566 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3DeleteFrom(pParse,yymsp[-1].minor.yy373,yymsp[0].minor.yy172);}
#line 2564 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 160:
#line 577 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Update(pParse,yymsp[-3].minor.yy373,yymsp[-1].minor.yy174,yymsp[0].minor.yy172,yymsp[-4].minor.yy46);}
#line 2569 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 161:
#line 583 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-4].minor.yy174,yymsp[0].minor.yy172,&yymsp[-2].minor.yy410);}
#line 2574 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 162:
#line 584 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = sqlite3ExprListAppend(0,yymsp[0].minor.yy172,&yymsp[-2].minor.yy410);}
#line 2579 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 163:
#line 590 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Insert(pParse, yymsp[-5].minor.yy373, yymsp[-1].minor.yy174, 0, yymsp[-4].minor.yy432, yymsp[-7].minor.yy46);}
#line 2584 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 164:
#line 592 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Insert(pParse, yymsp[-2].minor.yy373, 0, yymsp[0].minor.yy219, yymsp[-1].minor.yy432, yymsp[-4].minor.yy46);}
#line 2589 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 165:
#line 594 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Insert(pParse, yymsp[-3].minor.yy373, 0, 0, yymsp[-2].minor.yy432, yymsp[-5].minor.yy46);}
#line 2594 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 168:
case 229:
#line 604 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-2].minor.yy174,yymsp[0].minor.yy172,0);}
#line 2600 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 169:
case 230:
#line 605 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy174 = sqlite3ExprListAppend(0,yymsp[0].minor.yy172,0);}
#line 2606 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 172:
#line 614 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy432 = sqlite3IdListAppend(yymsp[-2].minor.yy432,&yymsp[0].minor.yy410);}
#line 2611 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 173:
#line 615 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy432 = sqlite3IdListAppend(0,&yymsp[0].minor.yy410);}
#line 2616 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 175:
#line 626 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = yymsp[-1].minor.yy172; sqlite3ExprSpan(yygotominor.yy172,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); }
#line 2621 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 176:
case 181:
case 182:
#line 627 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = sqlite3Expr(yymsp[0].major, 0, 0, &yymsp[0].minor.yy0);}
#line 2628 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 177:
case 178:
#line 628 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = sqlite3Expr(TK_ID, 0, 0, &yymsp[0].minor.yy0);}
#line 2634 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 179:
#line 630 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *temp1 = sqlite3Expr(TK_ID, 0, 0, &yymsp[-2].minor.yy410);
Expr *temp2 = sqlite3Expr(TK_ID, 0, 0, &yymsp[0].minor.yy410);
yygotominor.yy172 = sqlite3Expr(TK_DOT, temp1, temp2, 0);
}
#line 2643 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 180:
#line 635 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *temp1 = sqlite3Expr(TK_ID, 0, 0, &yymsp[-4].minor.yy410);
Expr *temp2 = sqlite3Expr(TK_ID, 0, 0, &yymsp[-2].minor.yy410);
Expr *temp3 = sqlite3Expr(TK_ID, 0, 0, &yymsp[0].minor.yy410);
Expr *temp4 = sqlite3Expr(TK_DOT, temp2, temp3, 0);
yygotominor.yy172 = sqlite3Expr(TK_DOT, temp1, temp4, 0);
}
#line 2654 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 183:
#line 644 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = sqlite3RegisterExpr(pParse, &yymsp[0].minor.yy0);}
#line 2659 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 184:
#line 645 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Token *pToken = &yymsp[0].minor.yy0;
Expr *pExpr = yygotominor.yy172 = sqlite3Expr(TK_VARIABLE, 0, 0, pToken);
sqlite3ExprAssignVarNumber(pParse, pExpr);
}
#line 2668 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 185:
#line 650 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3ExprSetColl(pParse, yymsp[-2].minor.yy172, &yymsp[0].minor.yy410);
}
#line 2675 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 186:
#line 654 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_CAST, yymsp[-3].minor.yy172, 0, &yymsp[-1].minor.yy410);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-5].minor.yy0,&yymsp[0].minor.yy0);
}
#line 2683 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 187:
#line 659 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3ExprFunction(yymsp[-1].minor.yy174, &yymsp[-4].minor.yy0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-4].minor.yy0,&yymsp[0].minor.yy0);
if( yymsp[-2].minor.yy46 && yygotominor.yy172 ){
yygotominor.yy172->flags |= EP_Distinct;
}
}
#line 2694 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 188:
#line 666 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3ExprFunction(0, &yymsp[-3].minor.yy0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-3].minor.yy0,&yymsp[0].minor.yy0);
}
#line 2702 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 189:
#line 670 "ext/pdo_sqlite/sqlite/src/parse.y"
{
/* The CURRENT_TIME, CURRENT_DATE, and CURRENT_TIMESTAMP values are
** treated as functions that return constants */
yygotominor.yy172 = sqlite3ExprFunction(0,&yymsp[0].minor.yy0);
if( yygotominor.yy172 ){
yygotominor.yy172->op = TK_CONST_FUNC;
yygotominor.yy172->span = yymsp[0].minor.yy0;
}
}
#line 2715 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 190:
case 191:
case 192:
case 193:
case 194:
case 195:
case 196:
case 197:
#line 679 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy172 = sqlite3Expr(yymsp[-1].major, yymsp[-2].minor.yy172, yymsp[0].minor.yy172, 0);}
#line 2727 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 198:
case 200:
#line 689 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy72.eOperator = yymsp[0].minor.yy0; yygotominor.yy72.not = 0;}
#line 2733 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 199:
case 201:
#line 690 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy72.eOperator = yymsp[0].minor.yy0; yygotominor.yy72.not = 1;}
#line 2739 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 204:
#line 697 "ext/pdo_sqlite/sqlite/src/parse.y"
{
ExprList *pList;
pList = sqlite3ExprListAppend(0, yymsp[-1].minor.yy172, 0);
pList = sqlite3ExprListAppend(pList, yymsp[-3].minor.yy172, 0);
if( yymsp[0].minor.yy172 ){
pList = sqlite3ExprListAppend(pList, yymsp[0].minor.yy172, 0);
}
yygotominor.yy172 = sqlite3ExprFunction(pList, &yymsp[-2].minor.yy72.eOperator);
if( yymsp[-2].minor.yy72.not ) yygotominor.yy172 = sqlite3Expr(TK_NOT, yygotominor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172, &yymsp[-3].minor.yy172->span, &yymsp[-1].minor.yy172->span);
if( yygotominor.yy172 ) yygotominor.yy172->flags |= EP_InfixFunc;
}
#line 2755 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 205:
#line 710 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(yymsp[0].major, yymsp[-1].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-1].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2763 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 206:
#line 714 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_ISNULL, yymsp[-2].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-2].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2771 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 207:
#line 718 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_NOTNULL, yymsp[-2].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-2].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2779 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 208:
#line 722 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_NOTNULL, yymsp[-3].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-3].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2787 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 209:
#line 726 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(yymsp[-1].major, yymsp[0].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy172->span);
}
#line 2795 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 210:
#line 730 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_UMINUS, yymsp[0].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy172->span);
}
#line 2803 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 211:
#line 734 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_UPLUS, yymsp[0].minor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy172->span);
}
#line 2811 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 214:
#line 741 "ext/pdo_sqlite/sqlite/src/parse.y"
{
ExprList *pList = sqlite3ExprListAppend(0, yymsp[-2].minor.yy172, 0);
pList = sqlite3ExprListAppend(pList, yymsp[0].minor.yy172, 0);
yygotominor.yy172 = sqlite3Expr(TK_BETWEEN, yymsp[-4].minor.yy172, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pList = pList;
}else{
sqlite3ExprListDelete(pList);
}
if( yymsp[-3].minor.yy46 ) yygotominor.yy172 = sqlite3Expr(TK_NOT, yygotominor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-4].minor.yy172->span,&yymsp[0].minor.yy172->span);
}
#line 2827 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 217:
#line 757 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_IN, yymsp[-4].minor.yy172, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pList = yymsp[-1].minor.yy174;
}else{
sqlite3ExprListDelete(yymsp[-1].minor.yy174);
}
if( yymsp[-3].minor.yy46 ) yygotominor.yy172 = sqlite3Expr(TK_NOT, yygotominor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-4].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2841 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 218:
#line 767 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_SELECT, 0, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pSelect = yymsp[-1].minor.yy219;
}else{
sqlite3SelectDelete(yymsp[-1].minor.yy219);
}
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0);
}
#line 2854 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 219:
#line 776 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_IN, yymsp[-4].minor.yy172, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pSelect = yymsp[-1].minor.yy219;
}else{
sqlite3SelectDelete(yymsp[-1].minor.yy219);
}
if( yymsp[-3].minor.yy46 ) yygotominor.yy172 = sqlite3Expr(TK_NOT, yygotominor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-4].minor.yy172->span,&yymsp[0].minor.yy0);
}
#line 2868 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 220:
#line 786 "ext/pdo_sqlite/sqlite/src/parse.y"
{
SrcList *pSrc = sqlite3SrcListAppend(0,&yymsp[-1].minor.yy410,&yymsp[0].minor.yy410);
yygotominor.yy172 = sqlite3Expr(TK_IN, yymsp[-3].minor.yy172, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pSelect = sqlite3SelectNew(0,pSrc,0,0,0,0,0,0,0);
}else{
sqlite3SrcListDelete(pSrc);
}
if( yymsp[-2].minor.yy46 ) yygotominor.yy172 = sqlite3Expr(TK_NOT, yygotominor.yy172, 0, 0);
sqlite3ExprSpan(yygotominor.yy172,&yymsp[-3].minor.yy172->span,yymsp[0].minor.yy410.z?&yymsp[0].minor.yy410:&yymsp[-1].minor.yy410);
}
#line 2883 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 221:
#line 797 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *p = yygotominor.yy172 = sqlite3Expr(TK_EXISTS, 0, 0, 0);
if( p ){
p->pSelect = yymsp[-1].minor.yy219;
sqlite3ExprSpan(p,&yymsp[-3].minor.yy0,&yymsp[0].minor.yy0);
}else{
sqlite3SelectDelete(yymsp[-1].minor.yy219);
}
}
#line 2896 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 222:
#line 809 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_CASE, yymsp[-3].minor.yy172, yymsp[-1].minor.yy172, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->pList = yymsp[-2].minor.yy174;
}else{
sqlite3ExprListDelete(yymsp[-2].minor.yy174);
}
sqlite3ExprSpan(yygotominor.yy172, &yymsp[-4].minor.yy0, &yymsp[0].minor.yy0);
}
#line 2909 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 223:
#line 820 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-4].minor.yy174, yymsp[-2].minor.yy172, 0);
yygotominor.yy174 = sqlite3ExprListAppend(yygotominor.yy174, yymsp[0].minor.yy172, 0);
}
#line 2917 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 224:
#line 824 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy174 = sqlite3ExprListAppend(0, yymsp[-2].minor.yy172, 0);
yygotominor.yy174 = sqlite3ExprListAppend(yygotominor.yy174, yymsp[0].minor.yy172, 0);
}
#line 2925 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 233:
#line 851 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3CreateIndex(pParse, &yymsp[-6].minor.yy410, &yymsp[-5].minor.yy410, sqlite3SrcListAppend(0,&yymsp[-3].minor.yy410,0), yymsp[-1].minor.yy174, yymsp[-9].minor.yy46,
&yymsp[-10].minor.yy0, &yymsp[0].minor.yy0, SQLITE_SO_ASC, yymsp[-7].minor.yy46);
}
#line 2933 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 234:
case 281:
#line 857 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Abort;}
#line 2939 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 235:
#line 858 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_None;}
#line 2944 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 238:
#line 868 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *p = 0;
if( yymsp[-1].minor.yy410.n>0 ){
p = sqlite3Expr(TK_COLUMN, 0, 0, 0);
if( p ) p->pColl = sqlite3LocateCollSeq(pParse, (char*)yymsp[-1].minor.yy410.z, yymsp[-1].minor.yy410.n);
}
yygotominor.yy174 = sqlite3ExprListAppend(yymsp[-4].minor.yy174, p, &yymsp[-2].minor.yy410);
if( yygotominor.yy174 ) yygotominor.yy174->a[yygotominor.yy174->nExpr-1].sortOrder = yymsp[0].minor.yy46;
}
#line 2957 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 239:
#line 877 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Expr *p = 0;
if( yymsp[-1].minor.yy410.n>0 ){
p = sqlite3Expr(TK_COLUMN, 0, 0, 0);
if( p ) p->pColl = sqlite3LocateCollSeq(pParse, (char*)yymsp[-1].minor.yy410.z, yymsp[-1].minor.yy410.n);
}
yygotominor.yy174 = sqlite3ExprListAppend(0, p, &yymsp[-2].minor.yy410);
if( yygotominor.yy174 ) yygotominor.yy174->a[yygotominor.yy174->nExpr-1].sortOrder = yymsp[0].minor.yy46;
}
#line 2970 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 241:
#line 889 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy410.z = 0; yygotominor.yy410.n = 0;}
#line 2975 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 243:
#line 895 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3DropIndex(pParse, yymsp[0].minor.yy373, yymsp[-1].minor.yy46);}
#line 2980 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 244:
case 245:
#line 901 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Vacuum(pParse);}
#line 2986 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 246:
#line 909 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Pragma(pParse,&yymsp[-3].minor.yy410,&yymsp[-2].minor.yy410,&yymsp[0].minor.yy410,0);}
#line 2991 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 247:
#line 910 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Pragma(pParse,&yymsp[-3].minor.yy410,&yymsp[-2].minor.yy410,&yymsp[0].minor.yy0,0);}
#line 2996 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 248:
#line 911 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3Pragma(pParse,&yymsp[-3].minor.yy410,&yymsp[-2].minor.yy410,&yymsp[0].minor.yy410,1);
}
#line 3003 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 249:
#line 914 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Pragma(pParse,&yymsp[-4].minor.yy410,&yymsp[-3].minor.yy410,&yymsp[-1].minor.yy410,0);}
#line 3008 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 250:
#line 915 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Pragma(pParse,&yymsp[-1].minor.yy410,&yymsp[0].minor.yy410,0,0);}
#line 3013 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 258:
#line 929 "ext/pdo_sqlite/sqlite/src/parse.y"
{
Token all;
all.z = yymsp[-3].minor.yy410.z;
all.n = (yymsp[0].minor.yy0.z - yymsp[-3].minor.yy410.z) + yymsp[0].minor.yy0.n;
sqlite3FinishTrigger(pParse, yymsp[-1].minor.yy243, &all);
}
#line 3023 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 259:
#line 938 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3BeginTrigger(pParse, &yymsp[-7].minor.yy410, &yymsp[-6].minor.yy410, yymsp[-5].minor.yy46, yymsp[-4].minor.yy370.a, yymsp[-4].minor.yy370.b, yymsp[-2].minor.yy373, yymsp[0].minor.yy172, yymsp[-10].minor.yy46, yymsp[-8].minor.yy46);
yygotominor.yy410 = (yymsp[-6].minor.yy410.n==0?yymsp[-7].minor.yy410:yymsp[-6].minor.yy410);
}
#line 3031 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 260:
case 263:
#line 944 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = TK_BEFORE; }
#line 3037 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 261:
#line 945 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = TK_AFTER; }
#line 3042 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 262:
#line 946 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy46 = TK_INSTEAD;}
#line 3047 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 264:
case 265:
#line 951 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy370.a = yymsp[0].major; yygotominor.yy370.b = 0;}
#line 3053 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 266:
#line 953 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy370.a = TK_UPDATE; yygotominor.yy370.b = yymsp[0].minor.yy432;}
#line 3058 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 269:
#line 960 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy172 = 0; }
#line 3063 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 270:
#line 961 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy172 = yymsp[0].minor.yy172; }
#line 3068 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 271:
#line 965 "ext/pdo_sqlite/sqlite/src/parse.y"
{
if( yymsp[-2].minor.yy243 ){
yymsp[-2].minor.yy243->pLast->pNext = yymsp[-1].minor.yy243;
}else{
yymsp[-2].minor.yy243 = yymsp[-1].minor.yy243;
}
yymsp[-2].minor.yy243->pLast = yymsp[-1].minor.yy243;
yygotominor.yy243 = yymsp[-2].minor.yy243;
}
#line 3081 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 272:
#line 974 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy243 = 0; }
#line 3086 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 273:
#line 980 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy243 = sqlite3TriggerUpdateStep(&yymsp[-3].minor.yy410, yymsp[-1].minor.yy174, yymsp[0].minor.yy172, yymsp[-4].minor.yy46); }
#line 3091 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 274:
#line 985 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy243 = sqlite3TriggerInsertStep(&yymsp[-5].minor.yy410, yymsp[-4].minor.yy432, yymsp[-1].minor.yy174, 0, yymsp[-7].minor.yy46);}
#line 3096 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 275:
#line 988 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy243 = sqlite3TriggerInsertStep(&yymsp[-2].minor.yy410, yymsp[-1].minor.yy432, 0, yymsp[0].minor.yy219, yymsp[-4].minor.yy46);}
#line 3101 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 276:
#line 992 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy243 = sqlite3TriggerDeleteStep(&yymsp[-1].minor.yy410, yymsp[0].minor.yy172);}
#line 3106 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 277:
#line 995 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy243 = sqlite3TriggerSelectStep(yymsp[0].minor.yy219); }
#line 3111 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 278:
#line 998 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_RAISE, 0, 0, 0);
if( yygotominor.yy172 ){
yygotominor.yy172->iColumn = OE_Ignore;
sqlite3ExprSpan(yygotominor.yy172, &yymsp[-3].minor.yy0, &yymsp[0].minor.yy0);
}
}
#line 3122 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 279:
#line 1005 "ext/pdo_sqlite/sqlite/src/parse.y"
{
yygotominor.yy172 = sqlite3Expr(TK_RAISE, 0, 0, &yymsp[-1].minor.yy410);
if( yygotominor.yy172 ) {
yygotominor.yy172->iColumn = yymsp[-3].minor.yy46;
sqlite3ExprSpan(yygotominor.yy172, &yymsp[-5].minor.yy0, &yymsp[0].minor.yy0);
}
}
#line 3133 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 280:
#line 1015 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Rollback;}
#line 3138 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 282:
#line 1017 "ext/pdo_sqlite/sqlite/src/parse.y"
{yygotominor.yy46 = OE_Fail;}
#line 3143 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 283:
#line 1022 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3DropTrigger(pParse,yymsp[0].minor.yy373,yymsp[-1].minor.yy46);
}
#line 3150 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 284:
#line 1029 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3Attach(pParse, yymsp[-3].minor.yy172, yymsp[-1].minor.yy172, yymsp[0].minor.yy386);
}
#line 3157 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 285:
#line 1032 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3Detach(pParse, yymsp[0].minor.yy172);
}
#line 3164 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 286:
#line 1038 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy386 = 0; }
#line 3169 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 287:
#line 1039 "ext/pdo_sqlite/sqlite/src/parse.y"
{ yygotominor.yy386 = yymsp[0].minor.yy172; }
#line 3174 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 290:
#line 1047 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Reindex(pParse, 0, 0);}
#line 3179 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 291:
#line 1048 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Reindex(pParse, &yymsp[-1].minor.yy410, &yymsp[0].minor.yy410);}
#line 3184 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 292:
#line 1053 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Analyze(pParse, 0, 0);}
#line 3189 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 293:
#line 1054 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3Analyze(pParse, &yymsp[-1].minor.yy410, &yymsp[0].minor.yy410);}
#line 3194 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 294:
#line 1059 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3AlterRenameTable(pParse,yymsp[-3].minor.yy373,&yymsp[0].minor.yy410);
}
#line 3201 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 295:
#line 1062 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3AlterFinishAddColumn(pParse, &yymsp[0].minor.yy410);
}
#line 3208 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 296:
#line 1065 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3AlterBeginAddColumn(pParse, yymsp[0].minor.yy373);
}
#line 3215 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 299:
#line 1074 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3VtabFinishParse(pParse,0);}
#line 3220 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 300:
#line 1075 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3VtabFinishParse(pParse,&yymsp[0].minor.yy0);}
#line 3225 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 301:
#line 1076 "ext/pdo_sqlite/sqlite/src/parse.y"
{
sqlite3VtabBeginParse(pParse, &yymsp[-3].minor.yy410, &yymsp[-2].minor.yy410, &yymsp[0].minor.yy410);
}
#line 3232 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 304:
#line 1081 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3VtabArgInit(pParse);}
#line 3237 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
case 306:
case 307:
case 308:
case 310:
#line 1083 "ext/pdo_sqlite/sqlite/src/parse.y"
{sqlite3VtabArgExtend(pParse,&yymsp[0].minor.yy0);}
#line 3245 "ext/pdo_sqlite/sqlite/src/parse.c"
break;
};
yygoto = yyRuleInfo[yyruleno].lhs;
yysize = yyRuleInfo[yyruleno].nrhs;
yypParser->yyidx -= yysize;
yyact = yy_find_reduce_action(yymsp[-yysize].stateno,yygoto);
if( yyact < YYNSTATE ){
#ifdef NDEBUG
/* If we are not debugging and the reduce action popped at least
** one element off the stack, then we can push the new element back
** onto the stack here, and skip the stack overflow test in yy_shift().
** That gives a significant speed improvement. */
if( yysize ){
yypParser->yyidx++;
yymsp -= yysize-1;
yymsp->stateno = yyact;
yymsp->major = yygoto;
yymsp->minor = yygotominor;
}else
#endif
{
yy_shift(yypParser,yyact,yygoto,&yygotominor);
}
}else if( yyact == YYNSTATE + YYNRULE + 1 ){
yy_accept(yypParser);
}
}
/*
** The following code executes when the parse fails
*/
static void yy_parse_failed(
yyParser *yypParser /* The parser */
){
sqlite3ParserARG_FETCH;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt);
}
#endif
while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
/* Here code is inserted which will be executed whenever the
** parser fails */
sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */
}
/*
** The following code executes when a syntax error first occurs.
*/
static void yy_syntax_error(
yyParser *yypParser, /* The parser */
int yymajor, /* The major type of the error token */
YYMINORTYPE yyminor /* The minor type of the error token */
){
sqlite3ParserARG_FETCH;
#define TOKEN (yyminor.yy0)
#line 34 "ext/pdo_sqlite/sqlite/src/parse.y"
if( !pParse->parseError ){
if( TOKEN.z[0] ){
sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN);
}else{
sqlite3ErrorMsg(pParse, "incomplete SQL statement");
}
pParse->parseError = 1;
}
#line 3313 "ext/pdo_sqlite/sqlite/src/parse.c"
sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */
}
/*
** The following is executed when the parser accepts
*/
static void yy_accept(
yyParser *yypParser /* The parser */
){
sqlite3ParserARG_FETCH;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt);
}
#endif
while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
/* Here code is inserted which will be executed whenever the
** parser accepts */
sqlite3ParserARG_STORE; /* Suppress warning about unused %extra_argument variable */
}
/* The main parser program.
** The first argument is a pointer to a structure obtained from
** "sqlite3ParserAlloc" which describes the current state of the parser.
** The second argument is the major token number. The third is
** the minor token. The fourth optional argument is whatever the
** user wants (and specified in the grammar) and is available for
** use by the action routines.
**
** Inputs:
** <ul>
** <li> A pointer to the parser (an opaque structure.)
** <li> The major token number.
** <li> The minor token number.
** <li> An option argument of a grammar-specified type.
** </ul>
**
** Outputs:
** None.
*/
void sqlite3Parser(
void *yyp, /* The parser */
int yymajor, /* The major token code number */
sqlite3ParserTOKENTYPE yyminor /* The value for the token */
sqlite3ParserARG_PDECL /* Optional %extra_argument parameter */
){
YYMINORTYPE yyminorunion;
int yyact; /* The parser action. */
int yyendofinput; /* True if we are at the end of input */
int yyerrorhit = 0; /* True if yymajor has invoked an error */
yyParser *yypParser; /* The parser */
/* (re)initialize the parser, if necessary */
yypParser = (yyParser*)yyp;
if( yypParser->yyidx<0 ){
#if YYSTACKDEPTH<=0
if( yypParser->yystksz <=0 ){
memset(&yyminorunion, 0, sizeof(yyminorunion));
yyStackOverflow(yypParser, &yyminorunion);
return;
}
#endif
yypParser->yyidx = 0;
yypParser->yyerrcnt = -1;
yypParser->yystack[0].stateno = 0;
yypParser->yystack[0].major = 0;
}
yyminorunion.yy0 = yyminor;
yyendofinput = (yymajor==0);
sqlite3ParserARG_STORE;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sInput %s\n",yyTracePrompt,yyTokenName[yymajor]);
}
#endif
do{
yyact = yy_find_shift_action(yypParser,yymajor);
if( yyact<YYNSTATE ){
yy_shift(yypParser,yyact,yymajor,&yyminorunion);
yypParser->yyerrcnt--;
if( yyendofinput && yypParser->yyidx>=0 ){
yymajor = 0;
}else{
yymajor = YYNOCODE;
}
}else if( yyact < YYNSTATE + YYNRULE ){
yy_reduce(yypParser,yyact-YYNSTATE);
}else if( yyact == YY_ERROR_ACTION ){
int yymx;
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt);
}
#endif
#ifdef YYERRORSYMBOL
/* A syntax error has occurred.
** The response to an error depends upon whether or not the
** grammar defines an error token "ERROR".
**
** This is what we do if the grammar does define ERROR:
**
** * Call the %syntax_error function.
**
** * Begin popping the stack until we enter a state where
** it is legal to shift the error symbol, then shift
** the error symbol.
**
** * Set the error count to three.
**
** * Begin accepting and shifting new tokens. No new error
** processing will occur until three tokens have been
** shifted successfully.
**
*/
if( yypParser->yyerrcnt<0 ){
yy_syntax_error(yypParser,yymajor,yyminorunion);
}
yymx = yypParser->yystack[yypParser->yyidx].major;
if( yymx==YYERRORSYMBOL || yyerrorhit ){
#ifndef NDEBUG
if( yyTraceFILE ){
fprintf(yyTraceFILE,"%sDiscard input token %s\n",
yyTracePrompt,yyTokenName[yymajor]);
}
#endif
yy_destructor(yymajor,&yyminorunion);
yymajor = YYNOCODE;
}else{
while(
yypParser->yyidx >= 0 &&
yymx != YYERRORSYMBOL &&
(yyact = yy_find_reduce_action(
yypParser->yystack[yypParser->yyidx].stateno,
YYERRORSYMBOL)) >= YYNSTATE
){
yy_pop_parser_stack(yypParser);
}
if( yypParser->yyidx < 0 || yymajor==0 ){
yy_destructor(yymajor,&yyminorunion);
yy_parse_failed(yypParser);
yymajor = YYNOCODE;
}else if( yymx!=YYERRORSYMBOL ){
YYMINORTYPE u2;
u2.YYERRSYMDT = 0;
yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2);
}
}
yypParser->yyerrcnt = 3;
yyerrorhit = 1;
#else /* YYERRORSYMBOL is not defined */
/* This is what we do if the grammar does not define ERROR:
**
** * Report an error message, and throw away the input token.
**
** * If the input token is $, then fail the parse.
**
** As before, subsequent error messages are suppressed until
** three input tokens have been successfully shifted.
*/
if( yypParser->yyerrcnt<=0 ){
yy_syntax_error(yypParser,yymajor,yyminorunion);
}
yypParser->yyerrcnt = 3;
yy_destructor(yymajor,&yyminorunion);
if( yyendofinput ){
yy_parse_failed(yypParser);
}
yymajor = YYNOCODE;
#endif
}else{
yy_accept(yypParser);
yymajor = YYNOCODE;
}
}while( yymajor!=YYNOCODE && yypParser->yyidx>=0 );
return;
}