HyriseSQLParser/src/parser/bison_parser.cpp
2019-07-31 12:43:18 +02:00

4411 lines
148 KiB
C++

/* A Bison parser, made by GNU Bison 3.3.2. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Undocumented macros, especially those whose name start with YY_,
are private implementation details. Do not rely on them. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "3.3.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 2
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Substitute the type names. */
#define YYSTYPE HSQL_STYPE
#define YYLTYPE HSQL_LTYPE
/* Substitute the variable and function names. */
#define yyparse hsql_parse
#define yylex hsql_lex
#define yyerror hsql_error
#define yydebug hsql_debug
#define yynerrs hsql_nerrs
/* First part of user prologue. */
#line 1 "bison_parser.y" /* yacc.c:337 */
/**
* bison_parser.y
* defines bison_parser.h
* outputs bison_parser.c
*
* Grammar File Spec: http://dinosaur.compilertools.net/bison/bison_6.html
*
*/
/*********************************
** Section 1: C Declarations
*********************************/
#include "bison_parser.h"
#include "flex_lexer.h"
#include <stdio.h>
#include <string.h>
using namespace hsql;
int yyerror(YYLTYPE* llocp, SQLParserResult* result, yyscan_t scanner, const char *msg) {
result->setIsValid(false);
result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column);
return 0;
}
#line 107 "bison_parser.cpp" /* yacc.c:337 */
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 1
#endif
/* In a future release of Bison, this section will be replaced
by #include "bison_parser.h". */
#ifndef YY_HSQL_BISON_PARSER_H_INCLUDED
# define YY_HSQL_BISON_PARSER_H_INCLUDED
/* Debug traces. */
#ifndef HSQL_DEBUG
# if defined YYDEBUG
#if YYDEBUG
# define HSQL_DEBUG 1
# else
# define HSQL_DEBUG 0
# endif
# else /* ! defined YYDEBUG */
# define HSQL_DEBUG 0
# endif /* ! defined YYDEBUG */
#endif /* ! defined HSQL_DEBUG */
#if HSQL_DEBUG
extern int hsql_debug;
#endif
/* "%code requires" blocks. */
#line 35 "bison_parser.y" /* yacc.c:352 */
// %code requires block
#include "../sql/statements.h"
#include "../SQLParserResult.h"
#include "parser_typedef.h"
// Auto update column and line number
#define YY_USER_ACTION \
yylloc->first_line = yylloc->last_line; \
yylloc->first_column = yylloc->last_column; \
for(int i = 0; yytext[i] != '\0'; i++) { \
yylloc->total_column++; \
yylloc->string_length++; \
if(yytext[i] == '\n') { \
yylloc->last_line++; \
yylloc->last_column = 0; \
} \
else { \
yylloc->last_column++; \
} \
}
#line 172 "bison_parser.cpp" /* yacc.c:352 */
/* Token type. */
#ifndef HSQL_TOKENTYPE
# define HSQL_TOKENTYPE
enum hsql_tokentype
{
SQL_IDENTIFIER = 258,
SQL_STRING = 259,
SQL_FLOATVAL = 260,
SQL_INTVAL = 261,
SQL_DEALLOCATE = 262,
SQL_PARAMETERS = 263,
SQL_INTERSECT = 264,
SQL_TEMPORARY = 265,
SQL_TIMESTAMP = 266,
SQL_DISTINCT = 267,
SQL_NVARCHAR = 268,
SQL_RESTRICT = 269,
SQL_TRUNCATE = 270,
SQL_ANALYZE = 271,
SQL_BETWEEN = 272,
SQL_CASCADE = 273,
SQL_COLUMNS = 274,
SQL_CONTROL = 275,
SQL_DEFAULT = 276,
SQL_EXECUTE = 277,
SQL_EXPLAIN = 278,
SQL_INTEGER = 279,
SQL_NATURAL = 280,
SQL_PREPARE = 281,
SQL_PRIMARY = 282,
SQL_SCHEMAS = 283,
SQL_SPATIAL = 284,
SQL_VARCHAR = 285,
SQL_VIRTUAL = 286,
SQL_BEFORE = 287,
SQL_COLUMN = 288,
SQL_CREATE = 289,
SQL_DELETE = 290,
SQL_DIRECT = 291,
SQL_DOUBLE = 292,
SQL_ESCAPE = 293,
SQL_EXCEPT = 294,
SQL_EXISTS = 295,
SQL_EXTRACT = 296,
SQL_GLOBAL = 297,
SQL_HAVING = 298,
SQL_IMPORT = 299,
SQL_INSERT = 300,
SQL_ISNULL = 301,
SQL_OFFSET = 302,
SQL_RENAME = 303,
SQL_SCHEMA = 304,
SQL_SELECT = 305,
SQL_SORTED = 306,
SQL_TABLES = 307,
SQL_UNIQUE = 308,
SQL_UNLOAD = 309,
SQL_UPDATE = 310,
SQL_VALUES = 311,
SQL_AFTER = 312,
SQL_ALTER = 313,
SQL_CROSS = 314,
SQL_DELTA = 315,
SQL_FLOAT = 316,
SQL_GROUP = 317,
SQL_INDEX = 318,
SQL_INNER = 319,
SQL_LIMIT = 320,
SQL_LOCAL = 321,
SQL_MERGE = 322,
SQL_MINUS = 323,
SQL_ORDER = 324,
SQL_OUTER = 325,
SQL_RIGHT = 326,
SQL_TABLE = 327,
SQL_UNION = 328,
SQL_USING = 329,
SQL_WHERE = 330,
SQL_CALL = 331,
SQL_CASE = 332,
SQL_CHAR = 333,
SQL_DATE = 334,
SQL_DESC = 335,
SQL_DROP = 336,
SQL_ELSE = 337,
SQL_FILE = 338,
SQL_FROM = 339,
SQL_FULL = 340,
SQL_HASH = 341,
SQL_HINT = 342,
SQL_INTO = 343,
SQL_JOIN = 344,
SQL_LEFT = 345,
SQL_LIKE = 346,
SQL_LOAD = 347,
SQL_LONG = 348,
SQL_NULL = 349,
SQL_PLAN = 350,
SQL_SHOW = 351,
SQL_TEXT = 352,
SQL_THEN = 353,
SQL_TIME = 354,
SQL_VIEW = 355,
SQL_WHEN = 356,
SQL_WITH = 357,
SQL_ADD = 358,
SQL_ALL = 359,
SQL_AND = 360,
SQL_ASC = 361,
SQL_CSV = 362,
SQL_END = 363,
SQL_FOR = 364,
SQL_INT = 365,
SQL_KEY = 366,
SQL_NOT = 367,
SQL_OFF = 368,
SQL_SET = 369,
SQL_TBL = 370,
SQL_TOP = 371,
SQL_AS = 372,
SQL_BY = 373,
SQL_IF = 374,
SQL_IN = 375,
SQL_IS = 376,
SQL_OF = 377,
SQL_ON = 378,
SQL_OR = 379,
SQL_TO = 380,
SQL_ARRAY = 381,
SQL_CONCAT = 382,
SQL_ILIKE = 383,
SQL_SECOND = 384,
SQL_MINUTE = 385,
SQL_HOUR = 386,
SQL_DAY = 387,
SQL_MONTH = 388,
SQL_YEAR = 389,
SQL_TRUE = 390,
SQL_FALSE = 391,
SQL_EQUALS = 392,
SQL_NOTEQUALS = 393,
SQL_LESS = 394,
SQL_GREATER = 395,
SQL_LESSEQ = 396,
SQL_GREATEREQ = 397,
SQL_NOTNULL = 398,
SQL_UMINUS = 399
};
#endif
/* Value type. */
#if ! defined HSQL_STYPE && ! defined HSQL_STYPE_IS_DECLARED
union HSQL_STYPE
{
#line 95 "bison_parser.y" /* yacc.c:352 */
double fval;
int64_t ival;
char* sval;
uintmax_t uval;
bool bval;
hsql::SQLStatement* statement;
hsql::SelectStatement* select_stmt;
hsql::ImportStatement* import_stmt;
hsql::CreateStatement* create_stmt;
hsql::InsertStatement* insert_stmt;
hsql::DeleteStatement* delete_stmt;
hsql::UpdateStatement* update_stmt;
hsql::DropStatement* drop_stmt;
hsql::PrepareStatement* prep_stmt;
hsql::ExecuteStatement* exec_stmt;
hsql::ShowStatement* show_stmt;
hsql::TableName table_name;
hsql::TableRef* table;
hsql::Expr* expr;
hsql::OrderDescription* order;
hsql::OrderType order_type;
hsql::WithDescription* with_description_t;
hsql::DatetimeField datetime_field;
hsql::LimitDescription* limit;
hsql::ColumnDefinition* column_t;
hsql::ColumnType column_type_t;
hsql::GroupByDescription* group_t;
hsql::UpdateClause* update_t;
hsql::Alias* alias_t;
std::vector<hsql::SQLStatement*>* stmt_vec;
std::vector<char*>* str_vec;
std::vector<hsql::TableRef*>* table_vec;
std::vector<hsql::ColumnDefinition*>* column_vec;
std::vector<hsql::UpdateClause*>* update_vec;
std::vector<hsql::Expr*>* expr_vec;
std::vector<hsql::OrderDescription*>* order_vec;
std::vector<hsql::WithDescription*>* with_description_vec;
#line 373 "bison_parser.cpp" /* yacc.c:352 */
};
typedef union HSQL_STYPE HSQL_STYPE;
# define HSQL_STYPE_IS_TRIVIAL 1
# define HSQL_STYPE_IS_DECLARED 1
#endif
/* Location type. */
#if ! defined HSQL_LTYPE && ! defined HSQL_LTYPE_IS_DECLARED
typedef struct HSQL_LTYPE HSQL_LTYPE;
struct HSQL_LTYPE
{
int first_line;
int first_column;
int last_line;
int last_column;
};
# define HSQL_LTYPE_IS_DECLARED 1
# define HSQL_LTYPE_IS_TRIVIAL 1
#endif
int hsql_parse (hsql::SQLParserResult* result, yyscan_t scanner);
#endif /* !YY_HSQL_BISON_PARSER_H_INCLUDED */
#ifdef short
# undef short
#endif
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE
# if (defined __GNUC__ \
&& (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
|| defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
# else
# define YY_ATTRIBUTE(Spec) /* empty */
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E))
#else
# define YYUSE(E) /* empty */
#endif
#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined HSQL_LTYPE_IS_TRIVIAL && HSQL_LTYPE_IS_TRIVIAL \
&& defined HSQL_STYPE_IS_TRIVIAL && HSQL_STYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss_alloc;
YYSTYPE yyvs_alloc;
YYLTYPE yyls_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
+ 2 * YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 49
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 729
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 162
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 100
/* YYNRULES -- Number of rules. */
#define YYNRULES 244
/* YYNSTATES -- Number of states. */
#define YYNSTATES 440
#define YYUNDEFTOK 2
#define YYMAXUTOK 399
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 151, 2, 2,
156, 157, 149, 147, 160, 148, 158, 150, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 159,
140, 137, 141, 161, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 154, 2, 155, 152, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 138, 139, 142, 143, 144, 145, 146, 153
};
#if HSQL_DEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 258, 258, 279, 285, 294, 298, 302, 309, 310,
311, 312, 313, 314, 315, 316, 317, 326, 327, 332,
333, 337, 341, 353, 360, 363, 367, 379, 388, 392,
402, 405, 419, 426, 433, 440, 451, 452, 456, 457,
461, 467, 468, 469, 470, 471, 472, 473, 474, 478,
479, 480, 490, 496, 502, 510, 511, 520, 529, 542,
549, 560, 561, 571, 580, 581, 585, 597, 601, 605,
623, 624, 628, 629, 633, 643, 660, 664, 665, 666,
670, 671, 675, 687, 688, 692, 696, 697, 700, 705,
706, 710, 715, 719, 720, 723, 724, 728, 729, 733,
737, 738, 739, 745, 746, 750, 751, 752, 753, 754,
755, 762, 763, 767, 768, 772, 773, 777, 787, 788,
789, 790, 791, 795, 796, 797, 798, 799, 800, 801,
802, 803, 804, 808, 809, 813, 814, 815, 816, 817,
821, 822, 823, 824, 825, 826, 827, 828, 829, 830,
831, 835, 836, 840, 841, 842, 843, 849, 850, 851,
852, 856, 857, 861, 862, 866, 867, 868, 869, 870,
871, 872, 876, 877, 881, 885, 886, 887, 888, 889,
890, 893, 897, 901, 905, 906, 907, 908, 912, 913,
914, 915, 916, 920, 924, 925, 929, 930, 934, 938,
942, 954, 955, 965, 966, 970, 971, 980, 981, 986,
997, 1006, 1007, 1012, 1013, 1018, 1019, 1023, 1024, 1029,
1030, 1038, 1039, 1043, 1047, 1051, 1058, 1071, 1079, 1089,
1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117,
1122, 1131, 1132, 1137, 1138
};
#endif
#if HSQL_DEBUG || YYERROR_VERBOSE || 1
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"$end", "error", "$undefined", "IDENTIFIER", "STRING", "FLOATVAL",
"INTVAL", "DEALLOCATE", "PARAMETERS", "INTERSECT", "TEMPORARY",
"TIMESTAMP", "DISTINCT", "NVARCHAR", "RESTRICT", "TRUNCATE", "ANALYZE",
"BETWEEN", "CASCADE", "COLUMNS", "CONTROL", "DEFAULT", "EXECUTE",
"EXPLAIN", "INTEGER", "NATURAL", "PREPARE", "PRIMARY", "SCHEMAS",
"SPATIAL", "VARCHAR", "VIRTUAL", "BEFORE", "COLUMN", "CREATE", "DELETE",
"DIRECT", "DOUBLE", "ESCAPE", "EXCEPT", "EXISTS", "EXTRACT", "GLOBAL",
"HAVING", "IMPORT", "INSERT", "ISNULL", "OFFSET", "RENAME", "SCHEMA",
"SELECT", "SORTED", "TABLES", "UNIQUE", "UNLOAD", "UPDATE", "VALUES",
"AFTER", "ALTER", "CROSS", "DELTA", "FLOAT", "GROUP", "INDEX", "INNER",
"LIMIT", "LOCAL", "MERGE", "MINUS", "ORDER", "OUTER", "RIGHT", "TABLE",
"UNION", "USING", "WHERE", "CALL", "CASE", "CHAR", "DATE", "DESC",
"DROP", "ELSE", "FILE", "FROM", "FULL", "HASH", "HINT", "INTO", "JOIN",
"LEFT", "LIKE", "LOAD", "LONG", "NULL", "PLAN", "SHOW", "TEXT", "THEN",
"TIME", "VIEW", "WHEN", "WITH", "ADD", "ALL", "AND", "ASC", "CSV", "END",
"FOR", "INT", "KEY", "NOT", "OFF", "SET", "TBL", "TOP", "AS", "BY", "IF",
"IN", "IS", "OF", "ON", "OR", "TO", "ARRAY", "CONCAT", "ILIKE", "SECOND",
"MINUTE", "HOUR", "DAY", "MONTH", "YEAR", "TRUE", "FALSE", "'='",
"EQUALS", "NOTEQUALS", "'<'", "'>'", "LESS", "GREATER", "LESSEQ",
"GREATEREQ", "NOTNULL", "'+'", "'-'", "'*'", "'/'", "'%'", "'^'",
"UMINUS", "'['", "']'", "'('", "')'", "'.'", "';'", "','", "'?'",
"$accept", "input", "statement_list", "statement",
"preparable_statement", "opt_hints", "hint_list", "hint",
"prepare_statement", "prepare_target_query", "execute_statement",
"import_statement", "import_file_type", "file_path", "show_statement",
"create_statement", "opt_not_exists", "column_def_commalist",
"column_def", "column_type", "opt_column_nullable", "drop_statement",
"opt_exists", "delete_statement", "truncate_statement",
"insert_statement", "opt_column_list", "update_statement",
"update_clause_commalist", "update_clause", "select_statement",
"select_with_paren", "select_paren_or_clause", "select_no_paren",
"set_operator", "set_type", "opt_all", "select_clause", "opt_distinct",
"select_list", "opt_from_clause", "from_clause", "opt_where",
"opt_group", "opt_having", "opt_order", "order_list", "order_desc",
"opt_order_type", "opt_top", "opt_limit", "expr_list",
"opt_literal_list", "literal_list", "expr_alias", "expr", "operand",
"scalar_expr", "unary_expr", "binary_expr", "logic_expr", "in_expr",
"case_expr", "case_list", "exists_expr", "comp_expr", "function_expr",
"extract_expr", "datetime_field", "array_expr", "array_index",
"between_expr", "column_name", "literal", "string_literal",
"bool_literal", "num_literal", "int_literal", "null_literal",
"param_expr", "table_ref", "table_ref_atomic",
"nonjoin_table_ref_atomic", "table_ref_commalist", "table_ref_name",
"table_ref_name_no_alias", "table_name", "table_alias",
"opt_table_alias", "alias", "opt_alias", "opt_with_clause",
"with_clause", "with_description_list", "with_description",
"join_clause", "opt_join_type", "join_condition", "opt_semicolon",
"ident_commalist", YY_NULLPTR
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[NUM] -- (External) token number corresponding to the
(internal) symbol number NUM (which must be that of a token). */
static const yytype_uint16 yytoknum[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
385, 386, 387, 388, 389, 390, 391, 61, 392, 393,
60, 62, 394, 395, 396, 397, 398, 43, 45, 42,
47, 37, 94, 399, 91, 93, 40, 41, 46, 59,
44, 63
};
# endif
#define YYPACT_NINF -275
#define yypact_value_is_default(Yystate) \
(!!((Yystate) == (-275)))
#define YYTABLE_NINF -242
#define yytable_value_is_error(Yytable_value) \
(!!((Yytable_value) == (-242)))
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
627, 7, 61, 108, 125, -38, 49, 78, 28, 61,
40, 3, 161, 179, -55, -275, 88, 88, -275, -275,
-275, -275, -275, -275, -275, -275, -275, -275, -35, -275,
189, 48, -275, 42, 123, 110, 110, 61, 132, 61,
147, -275, 151, 151, 61, -275, 152, 65, -275, -275,
610, -275, 197, -275, -275, 170, -35, 113, -275, 62,
-275, 285, 12, 287, 180, 61, 61, 219, -275, 212,
140, 295, 259, 61, 61, -275, 144, 161, -275, 145,
296, 291, 148, 154, -275, -275, -275, -35, 204, 191,
-35, -2, -275, -275, -275, -275, -275, -275, -275, -275,
155, 153, -275, -275, -275, -275, -275, -275, -275, -275,
-275, 281, -56, 140, 216, -275, 320, 322, -10, 186,
-46, -275, -275, -275, -275, -275, -275, 326, -275, -275,
216, -275, -275, -275, 261, -275, -275, -275, 216, 261,
216, 32, -275, -275, 12, -275, 218, 229, 331, 220,
-106, 182, 183, 171, 249, 187, 276, -275, 210, -73,
301, -275, -275, -275, -275, -275, -275, -275, -275, -275,
-275, -275, -275, -275, -275, -275, 252, -275, -275, -33,
192, -275, 216, 295, -275, 193, -7, -275, 266, 194,
-275, 8, -2, 195, -275, 37, -2, -73, 309, -26,
-275, 274, -275, 393, 81, -275, 229, 13, 16, 312,
101, 216, 86, 38, 207, 276, 411, 216, 45, 203,
-6, 216, 216, 276, -275, 276, -61, 211, 29, 276,
276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
276, 276, 276, 276, 296, 61, -275, 365, 12, -73,
-275, 12, -275, 326, 1, 219, -275, 216, -275, 370,
-275, -275, -275, 216, -275, -275, -275, -275, 216, 216,
320, -275, 223, -275, -275, 226, -275, -275, -275, 124,
-275, 331, -275, -275, 216, -275, -275, 230, -275, -275,
-275, -275, -275, -275, 292, 80, 100, 216, 216, -275,
312, 300, -113, -275, -275, -275, 288, 368, 445, 276,
238, 210, -275, 302, 232, 445, 445, 445, 445, 479,
479, 479, 479, 45, 45, -96, -96, -96, -24, 246,
-275, -275, 102, 106, -275, 229, -275, 310, -275, 243,
-275, 17, -275, 344, -275, -275, -275, -73, -73, -275,
401, 409, -275, 324, -275, -275, 107, -275, 216, 216,
216, -275, 118, 104, 262, -275, 276, 445, 210, 263,
111, -275, -275, -275, -275, 269, 327, -275, -275, -275,
357, 361, 363, 345, 1, 432, -275, -275, -275, 318,
-275, 286, 290, -275, -275, 14, -73, 119, -275, 216,
-275, 411, 299, 116, -275, -275, 17, 1, -275, -275,
-275, 1, 319, 304, 216, -275, -275, -275, -275, -73,
-275, -275, -275, -275, 517, 322, -31, 305, 216, 117,
216, -275, 20, -73, -275, -275, -73, 306, 308, -275
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
222, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 242, 3, 18, 18, 16, 9,
7, 10, 15, 12, 13, 11, 14, 8, 0, 221,
0, 211, 58, 25, 0, 37, 37, 0, 0, 0,
0, 210, 56, 56, 0, 30, 0, 223, 224, 1,
222, 2, 0, 6, 5, 104, 0, 67, 68, 96,
54, 0, 114, 0, 0, 0, 0, 90, 28, 0,
62, 0, 0, 0, 0, 31, 0, 0, 4, 0,
0, 84, 0, 0, 78, 79, 77, 0, 81, 0,
0, 110, 212, 193, 196, 198, 199, 194, 195, 200,
0, 113, 115, 188, 189, 190, 197, 191, 192, 24,
23, 0, 0, 62, 0, 57, 0, 0, 0, 0,
90, 64, 55, 52, 53, 226, 225, 0, 103, 83,
0, 71, 70, 72, 96, 73, 80, 76, 0, 96,
0, 0, 74, 26, 0, 36, 0, 222, 0, 0,
184, 0, 0, 0, 0, 0, 0, 186, 0, 89,
118, 125, 126, 127, 120, 122, 128, 121, 140, 129,
130, 131, 124, 119, 133, 134, 0, 29, 243, 0,
0, 60, 0, 0, 63, 21, 0, 19, 87, 85,
111, 220, 110, 95, 97, 102, 110, 106, 108, 105,
116, 0, 34, 0, 0, 38, 222, 84, 0, 0,
0, 0, 0, 0, 0, 0, 136, 0, 135, 0,
0, 0, 0, 0, 137, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 61, 0, 0, 66,
65, 0, 17, 0, 0, 90, 86, 0, 218, 0,
219, 117, 69, 0, 101, 100, 99, 75, 0, 0,
0, 42, 0, 45, 44, 0, 43, 48, 41, 51,
33, 0, 35, 172, 0, 185, 187, 0, 175, 176,
177, 178, 179, 180, 0, 0, 0, 0, 0, 159,
0, 0, 0, 132, 123, 151, 152, 0, 147, 0,
0, 0, 138, 0, 150, 149, 165, 166, 167, 168,
169, 170, 171, 142, 141, 144, 143, 145, 146, 0,
27, 244, 0, 0, 20, 222, 88, 201, 203, 0,
205, 216, 204, 92, 112, 217, 98, 109, 107, 32,
0, 0, 49, 0, 40, 39, 0, 163, 0, 0,
0, 157, 0, 0, 0, 181, 0, 148, 0, 0,
0, 139, 182, 59, 22, 0, 0, 238, 230, 236,
234, 237, 232, 0, 0, 0, 215, 209, 213, 0,
82, 0, 0, 50, 173, 0, 161, 0, 160, 0,
164, 183, 0, 0, 155, 153, 216, 0, 233, 235,
231, 0, 202, 217, 0, 46, 47, 174, 158, 162,
156, 154, 206, 227, 239, 0, 94, 0, 0, 0,
0, 91, 0, 240, 228, 214, 93, 184, 0, 229
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-275, -275, -275, 394, -275, 441, -275, 209, -275, -275,
-275, -275, -275, 196, -275, -275, 427, -275, 188, -275,
-275, -275, 424, -275, -275, -275, 355, -275, -275, 289,
-146, 39, 384, -53, 416, -275, -275, 150, 270, -275,
-275, -275, -110, -275, -275, -85, -275, 213, -275, -275,
-139, -209, -275, 27, 221, -114, -149, -275, -275, -275,
-275, -275, -275, 271, -275, -275, -275, -275, -275, -275,
-275, -275, 50, -48, -107, -275, -275, -78, -275, -275,
-275, -274, 74, -275, -275, -275, 4, -275, 79, 293,
-275, -275, -275, -275, 410, -275, -275, -275, -275, 63
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 13, 14, 15, 16, 53, 186, 187, 17, 110,
18, 19, 69, 176, 20, 21, 65, 204, 205, 279,
354, 22, 73, 23, 24, 25, 118, 26, 120, 121,
27, 133, 134, 58, 87, 88, 137, 59, 130, 188,
255, 256, 115, 390, 431, 91, 193, 194, 266, 81,
142, 189, 100, 101, 190, 191, 160, 161, 162, 163,
164, 165, 166, 213, 167, 168, 169, 170, 294, 171,
172, 173, 174, 175, 103, 104, 105, 106, 107, 108,
336, 337, 338, 339, 340, 40, 341, 386, 387, 388,
261, 28, 29, 47, 48, 342, 383, 434, 51, 179
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
159, 202, 128, 83, 31, 216, 32, 218, 302, 177,
184, 258, 430, 41, 102, 55, 93, 94, 95, 285,
258, 269, 44, 437, 195, 129, 197, 199, 146, 114,
309, 229, 221, 30, 35, 150, 93, 94, 95, 212,
55, 67, 365, 70, 220, 140, 180, 257, 75, 192,
207, 222, 208, 262, 196, 45, 243, 267, 244, 310,
282, 147, 36, 141, 31, 181, 216, 57, 249, 112,
113, 84, 151, 152, 307, 356, 308, 123, 124, 221,
314, 315, 316, 317, 318, 319, 320, 321, 322, 323,
324, 325, 326, 327, 328, 82, 200, 295, 222, 221,
148, 85, 370, 229, 50, 219, 96, 305, 306, 153,
412, 33, 42, 221, 183, 125, 39, 264, 222, 221,
297, 56, 84, 312, 246, 259, 96, 247, 34, 257,
244, 89, 222, 37, 385, 86, 198, 424, 222, 298,
43, 313, 221, 265, 154, 343, 299, 97, 98, 195,
252, 304, 85, 253, 347, 348, 287, 335, 155, 403,
367, 222, 38, 177, 46, 286, 329, 97, 98, 157,
283, 417, 229, 99, 150, 93, 94, 95, 359, 49,
156, 157, 360, 362, 363, 221, 86, 211, 158, 375,
52, 221, 60, 99, 240, 241, 242, 243, 62, 244,
102, 298, 399, 102, 222, 426, 61, 63, 361, 221,
222, 151, 152, 150, 93, 94, 95, 401, 352, 150,
93, 94, 95, 221, 221, 77, 398, 418, 222, 64,
288, 289, 290, 291, 292, 293, 353, 135, 280, 68,
135, 281, 222, 222, 395, 396, 397, 364, 153, 330,
151, 152, 150, 93, 94, 95, 151, 152, 369, 373,
55, 71, 144, 374, 394, 96, 144, 257, 405, 76,
72, 257, 211, 421, 435, 332, 257, 247, 333, 150,
93, 94, 95, 154, 79, 419, 80, 153, 92, 214,
152, 109, 111, 153, 114, 116, 117, 155, 119, 122,
56, 127, 95, 129, 96, 131, 97, 98, 136, 138,
96, 132, 143, 144, 433, 402, 436, 152, 223, 156,
157, 145, 154, 182, 93, 178, 153, 158, 154, 185,
89, 12, 99, 201, 203, 376, 155, 206, 209, 210,
245, 217, 155, 96, 376, 97, 98, 224, 248, 251,
254, 97, 98, 153, 257, 263, 268, 270, 156, 157,
303, 215, 55, 300, 156, 157, 158, 311, 331, 377,
96, 99, 158, 345, 378, 155, 358, 99, 377, 350,
379, 380, 351, 378, 97, 98, 244, 357, 215, 379,
380, 309, 225, 221, 368, 381, 371, 156, 157, -239,
382, 372, 155, 384, 381, 158, 389, 391, -239, 382,
99, 97, 98, 226, 224, 392, 407, 271, 393, 400,
404, 227, 228, 272, 156, 157, 406, 408, 229, 230,
273, 409, 158, 410, 411, 413, 414, 99, 231, 232,
233, 234, 235, 415, 78, 236, 237, 416, 238, 239,
240, 241, 242, 243, 274, 244, 420, 224, 54, 225,
425, 432, 334, 66, 208, 439, 349, 74, 149, 355,
-207, 275, 250, 366, 139, 90, 346, 284, 344, -208,
301, 423, 438, 296, 260, 422, 276, 126, 429, 228,
277, 224, 0, 0, 0, 229, 230, 0, 0, 0,
0, 0, 225, 278, 0, 231, 232, 233, 234, 235,
0, 0, 236, 237, 0, 238, 239, 240, 241, 242,
243, 0, 244, 301, 0, 224, 0, 0, 0, 0,
0, 0, 228, 0, 0, 0, -242, 0, 229, 230,
0, 0, 376, 0, 0, 0, 0, 0, 231, 232,
233, 234, 235, 0, 0, 236, 237, 0, 238, 239,
240, 241, 242, 243, 0, 244, 228, 0, 0, 0,
0, 0, 229, -242, 0, 0, 377, 0, 0, 0,
0, 378, -242, -242, -242, 234, 235, 379, 380, 236,
237, 427, 238, 239, 240, 241, 242, 243, 0, 244,
228, 0, 381, 0, 0, 0, 229, 382, 0, 0,
-241, 0, 0, 0, 0, 0, 0, 1, 0, -242,
-242, 0, 0, -242, -242, 2, 238, 239, 240, 241,
242, 243, 3, 244, 1, 0, 4, 0, 0, 0,
428, 0, 2, 0, 5, 6, 0, 0, 0, 3,
0, 0, 0, 4, 7, 8, 0, 0, 0, 0,
0, 5, 6, 0, 0, 9, 0, 0, 0, 0,
0, 7, 8, 0, 0, 0, 0, 0, 0, 0,
0, 0, 9, 0, 0, 0, 0, 0, 0, 0,
0, 10, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 11, 0, 10, 0,
0, 0, 12, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 11, 0, 0, 0, 0, 0, 12
};
static const yytype_int16 yycheck[] =
{
114, 147, 80, 56, 3, 154, 2, 156, 217, 116,
120, 3, 43, 9, 62, 50, 4, 5, 6, 3,
3, 47, 19, 3, 138, 12, 140, 141, 84, 75,
91, 127, 105, 26, 72, 3, 4, 5, 6, 153,
50, 37, 155, 39, 158, 47, 56, 160, 44, 134,
156, 124, 158, 192, 139, 52, 152, 196, 154, 120,
206, 117, 100, 65, 3, 118, 215, 28, 182, 65,
66, 9, 40, 41, 223, 284, 225, 73, 74, 105,
229, 230, 231, 232, 233, 234, 235, 236, 237, 238,
239, 240, 241, 242, 243, 56, 144, 211, 124, 105,
156, 39, 311, 127, 159, 158, 94, 221, 222, 77,
384, 3, 72, 105, 160, 76, 88, 80, 124, 105,
82, 156, 9, 94, 157, 117, 94, 160, 3, 160,
154, 69, 124, 84, 117, 73, 104, 411, 124, 101,
100, 112, 105, 106, 112, 255, 108, 135, 136, 263,
157, 157, 39, 160, 268, 269, 209, 156, 126, 368,
309, 124, 84, 270, 3, 149, 244, 135, 136, 149,
157, 157, 127, 161, 3, 4, 5, 6, 98, 0,
148, 149, 82, 297, 298, 105, 73, 101, 156, 335,
102, 105, 3, 161, 149, 150, 151, 152, 156, 154,
248, 101, 98, 251, 124, 414, 158, 84, 108, 105,
124, 40, 41, 3, 4, 5, 6, 366, 94, 3,
4, 5, 6, 105, 105, 160, 108, 108, 124, 119,
129, 130, 131, 132, 133, 134, 112, 87, 157, 107,
90, 160, 124, 124, 358, 359, 360, 300, 77, 245,
40, 41, 3, 4, 5, 6, 40, 41, 311, 157,
50, 114, 160, 157, 157, 94, 160, 160, 157, 117,
119, 160, 101, 157, 157, 248, 160, 160, 251, 3,
4, 5, 6, 112, 87, 399, 116, 77, 3, 40,
41, 4, 112, 77, 75, 83, 156, 126, 3, 40,
156, 156, 6, 12, 94, 157, 135, 136, 104, 118,
94, 157, 157, 160, 428, 368, 430, 41, 17, 148,
149, 40, 112, 137, 4, 3, 77, 156, 112, 3,
69, 102, 161, 115, 3, 25, 126, 117, 156, 156,
88, 154, 126, 94, 25, 135, 136, 46, 156, 156,
84, 135, 136, 77, 160, 160, 47, 83, 148, 149,
157, 112, 50, 156, 148, 149, 156, 156, 3, 59,
94, 161, 156, 3, 64, 126, 84, 161, 59, 156,
70, 71, 156, 64, 135, 136, 154, 157, 112, 70,
71, 91, 91, 105, 156, 85, 94, 148, 149, 89,
90, 155, 126, 160, 85, 156, 62, 6, 89, 90,
161, 135, 136, 112, 46, 6, 89, 24, 94, 157,
157, 120, 121, 30, 148, 149, 157, 70, 127, 128,
37, 70, 156, 70, 89, 3, 118, 161, 137, 138,
139, 140, 141, 157, 50, 144, 145, 157, 147, 148,
149, 150, 151, 152, 61, 154, 157, 46, 17, 91,
156, 156, 253, 36, 158, 157, 270, 43, 113, 281,
160, 78, 183, 105, 90, 59, 263, 207, 257, 160,
112, 407, 432, 212, 191, 406, 93, 77, 425, 121,
97, 46, -1, -1, -1, 127, 128, -1, -1, -1,
-1, -1, 91, 110, -1, 137, 138, 139, 140, 141,
-1, -1, 144, 145, -1, 147, 148, 149, 150, 151,
152, -1, 154, 112, -1, 46, -1, -1, -1, -1,
-1, -1, 121, -1, -1, -1, 91, -1, 127, 128,
-1, -1, 25, -1, -1, -1, -1, -1, 137, 138,
139, 140, 141, -1, -1, 144, 145, -1, 147, 148,
149, 150, 151, 152, -1, 154, 121, -1, -1, -1,
-1, -1, 127, 128, -1, -1, 59, -1, -1, -1,
-1, 64, 137, 138, 139, 140, 141, 70, 71, 144,
145, 74, 147, 148, 149, 150, 151, 152, -1, 154,
121, -1, 85, -1, -1, -1, 127, 90, -1, -1,
0, -1, -1, -1, -1, -1, -1, 7, -1, 140,
141, -1, -1, 144, 145, 15, 147, 148, 149, 150,
151, 152, 22, 154, 7, -1, 26, -1, -1, -1,
123, -1, 15, -1, 34, 35, -1, -1, -1, 22,
-1, -1, -1, 26, 44, 45, -1, -1, -1, -1,
-1, 34, 35, -1, -1, 55, -1, -1, -1, -1,
-1, 44, 45, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 55, -1, -1, -1, -1, -1, -1, -1,
-1, 81, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 96, -1, 81, -1,
-1, -1, 102, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 96, -1, -1, -1, -1, -1, 102
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint16 yystos[] =
{
0, 7, 15, 22, 26, 34, 35, 44, 45, 55,
81, 96, 102, 163, 164, 165, 166, 170, 172, 173,
176, 177, 183, 185, 186, 187, 189, 192, 253, 254,
26, 3, 248, 3, 3, 72, 100, 84, 84, 88,
247, 248, 72, 100, 19, 52, 3, 255, 256, 0,
159, 260, 102, 167, 167, 50, 156, 193, 195, 199,
3, 158, 156, 84, 119, 178, 178, 248, 107, 174,
248, 114, 119, 184, 184, 248, 117, 160, 165, 87,
116, 211, 193, 195, 9, 39, 73, 196, 197, 69,
196, 207, 3, 4, 5, 6, 94, 135, 136, 161,
214, 215, 235, 236, 237, 238, 239, 240, 241, 4,
171, 112, 248, 248, 75, 204, 83, 156, 188, 3,
190, 191, 40, 248, 248, 193, 256, 156, 239, 12,
200, 157, 157, 193, 194, 199, 104, 198, 118, 194,
47, 65, 212, 157, 160, 40, 84, 117, 156, 188,
3, 40, 41, 77, 112, 126, 148, 149, 156, 217,
218, 219, 220, 221, 222, 223, 224, 226, 227, 228,
229, 231, 232, 233, 234, 235, 175, 236, 3, 261,
56, 195, 137, 160, 204, 3, 168, 169, 201, 213,
216, 217, 207, 208, 209, 217, 207, 217, 104, 217,
235, 115, 192, 3, 179, 180, 117, 156, 158, 156,
156, 101, 217, 225, 40, 112, 218, 154, 218, 195,
217, 105, 124, 17, 46, 91, 112, 120, 121, 127,
128, 137, 138, 139, 140, 141, 144, 145, 147, 148,
149, 150, 151, 152, 154, 88, 157, 160, 156, 217,
191, 156, 157, 160, 84, 202, 203, 160, 3, 117,
251, 252, 212, 160, 80, 106, 210, 212, 47, 47,
83, 24, 30, 37, 61, 78, 93, 97, 110, 181,
157, 160, 192, 157, 200, 3, 149, 195, 129, 130,
131, 132, 133, 134, 230, 217, 225, 82, 101, 108,
156, 112, 213, 157, 157, 217, 217, 218, 218, 91,
120, 156, 94, 112, 218, 218, 218, 218, 218, 218,
218, 218, 218, 218, 218, 218, 218, 218, 218, 239,
248, 3, 215, 215, 169, 156, 242, 243, 244, 245,
246, 248, 257, 204, 216, 3, 209, 217, 217, 175,
156, 156, 94, 112, 182, 180, 213, 157, 84, 98,
82, 108, 217, 217, 195, 155, 105, 218, 156, 195,
213, 94, 155, 157, 157, 192, 25, 59, 64, 70,
71, 85, 90, 258, 160, 117, 249, 250, 251, 62,
205, 6, 6, 94, 157, 217, 217, 217, 108, 98,
157, 218, 195, 213, 157, 157, 157, 89, 70, 70,
70, 89, 243, 3, 118, 157, 157, 157, 108, 217,
157, 157, 250, 244, 243, 156, 213, 74, 123, 261,
43, 206, 156, 217, 259, 157, 217, 3, 234, 157
};
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint16 yyr1[] =
{
0, 162, 163, 164, 164, 165, 165, 165, 166, 166,
166, 166, 166, 166, 166, 166, 166, 167, 167, 168,
168, 169, 169, 170, 171, 172, 172, 173, 174, 175,
176, 176, 177, 177, 177, 177, 178, 178, 179, 179,
180, 181, 181, 181, 181, 181, 181, 181, 181, 182,
182, 182, 183, 183, 183, 184, 184, 185, 186, 187,
187, 188, 188, 189, 190, 190, 191, 192, 192, 192,
193, 193, 194, 194, 195, 195, 196, 197, 197, 197,
198, 198, 199, 200, 200, 201, 202, 202, 203, 204,
204, 205, 205, 206, 206, 207, 207, 208, 208, 209,
210, 210, 210, 211, 211, 212, 212, 212, 212, 212,
212, 213, 213, 214, 214, 215, 215, 216, 217, 217,
217, 217, 217, 218, 218, 218, 218, 218, 218, 218,
218, 218, 218, 219, 219, 220, 220, 220, 220, 220,
221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
221, 222, 222, 223, 223, 223, 223, 224, 224, 224,
224, 225, 225, 226, 226, 227, 227, 227, 227, 227,
227, 227, 228, 228, 229, 230, 230, 230, 230, 230,
230, 231, 232, 233, 234, 234, 234, 234, 235, 235,
235, 235, 235, 236, 237, 237, 238, 238, 239, 240,
241, 242, 242, 243, 243, 244, 244, 245, 245, 246,
247, 248, 248, 249, 249, 250, 250, 251, 251, 252,
252, 253, 253, 254, 255, 255, 256, 257, 257, 257,
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
259, 260, 260, 261, 261
};
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 2, 1, 3, 2, 2, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 5, 0, 1,
3, 1, 4, 4, 1, 2, 5, 7, 1, 1,
2, 3, 8, 7, 6, 7, 3, 0, 1, 3,
3, 1, 1, 1, 1, 1, 4, 4, 1, 1,
2, 0, 4, 4, 3, 2, 0, 4, 2, 8,
5, 3, 0, 5, 1, 3, 3, 2, 2, 6,
3, 3, 1, 1, 3, 5, 2, 1, 1, 1,
1, 0, 7, 1, 0, 1, 1, 0, 2, 2,
0, 4, 0, 2, 0, 3, 0, 1, 3, 2,
1, 1, 0, 2, 0, 2, 2, 4, 2, 4,
0, 1, 3, 1, 0, 1, 3, 2, 1, 1,
1, 1, 1, 3, 1, 1, 1, 1, 1, 1,
1, 1, 3, 1, 1, 2, 2, 2, 3, 4,
1, 3, 3, 3, 3, 3, 3, 3, 4, 3,
3, 3, 3, 5, 6, 5, 6, 4, 6, 3,
5, 4, 5, 4, 5, 3, 3, 3, 3, 3,
3, 3, 3, 5, 6, 1, 1, 1, 1, 1,
1, 4, 4, 5, 1, 3, 1, 3, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 3, 1, 1, 1, 4, 1, 3, 2,
1, 1, 3, 1, 5, 1, 0, 2, 1, 1,
0, 1, 0, 2, 1, 3, 3, 4, 6, 8,
1, 2, 1, 2, 1, 2, 1, 1, 1, 0,
1, 1, 0, 1, 3
};
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (&yylloc, result, scanner, YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Error token number */
#define YYTERROR 1
#define YYERRCODE 256
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
#ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (N) \
{ \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} \
else \
{ \
(Current).first_line = (Current).last_line = \
YYRHSLOC (Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC (Rhs, 0).last_column; \
} \
while (0)
#endif
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
/* Enable debugging if requested. */
#if HSQL_DEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
/* YY_LOCATION_PRINT -- Print the location on the stream.
This macro was not mandated originally: define only if we know
we won't break user code: when these are the locations we know. */
#ifndef YY_LOCATION_PRINT
# if defined HSQL_LTYPE_IS_TRIVIAL && HSQL_LTYPE_IS_TRIVIAL
/* Print *YYLOCP on YYO. Private, do not rely on its existence. */
YY_ATTRIBUTE_UNUSED
static int
yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp)
{
int res = 0;
int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
if (0 <= yylocp->first_line)
{
res += YYFPRINTF (yyo, "%d", yylocp->first_line);
if (0 <= yylocp->first_column)
res += YYFPRINTF (yyo, ".%d", yylocp->first_column);
}
if (0 <= yylocp->last_line)
{
if (yylocp->first_line < yylocp->last_line)
{
res += YYFPRINTF (yyo, "-%d", yylocp->last_line);
if (0 <= end_col)
res += YYFPRINTF (yyo, ".%d", end_col);
}
else if (0 <= end_col && yylocp->first_column < end_col)
res += YYFPRINTF (yyo, "-%d", end_col);
}
return res;
}
# define YY_LOCATION_PRINT(File, Loc) \
yy_location_print_ (File, &(Loc))
# else
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
# endif
#endif
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value, Location, result, scanner); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
{
FILE *yyoutput = yyo;
YYUSE (yyoutput);
YYUSE (yylocationp);
YYUSE (result);
YYUSE (scanner);
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyo, yytoknum[yytype], *yyvaluep);
# endif
YYUSE (yytype);
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
{
YYFPRINTF (yyo, "%s %s (",
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
YY_LOCATION_PRINT (yyo, *yylocationp);
YYFPRINTF (yyo, ": ");
yy_symbol_value_print (yyo, yytype, yyvaluep, yylocationp, result, scanner);
YYFPRINTF (yyo, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule, hsql::SQLParserResult* result, yyscan_t scanner)
{
unsigned long yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
yystos[yyssp[yyi + 1 - yynrhs]],
&yyvsp[(yyi + 1) - (yynrhs)]
, &(yylsp[(yyi + 1) - (yynrhs)]) , result, scanner);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, yylsp, Rule, result, scanner); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !HSQL_DEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !HSQL_DEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
#if YYERROR_VERBOSE
# ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen strlen
# else
/* Return the length of YYSTR. */
static YYSIZE_T
yystrlen (const char *yystr)
{
YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
# endif
# ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
# endif
# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
static YYSIZE_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
YYSIZE_T yyn = 0;
char const *yyp = yystr;
for (;;)
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
else
goto append;
append:
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
do_not_strip_quotes: ;
}
if (! yyres)
return yystrlen (yystr);
return (YYSIZE_T) (yystpcpy (yyres, yystr) - yyres);
}
# endif
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP.
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return 2 if the
required number of bytes is too large to store. */
static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
yytype_int16 *yyssp, int yytoken)
{
YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
YYSIZE_T yysize = yysize0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULLPTR;
/* Arguments of yyformat. */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
/* Number of reported tokens (one for the "unexpected", one per
"expected"). */
int yycount = 0;
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yytoken != YYEMPTY)
{
int yyn = yypact[*yyssp];
yyarg[yycount++] = yytname[yytoken];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
break;
}
yyarg[yycount++] = yytname[yyx];
{
YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return 2;
}
}
}
}
switch (yycount)
{
# define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
default: /* Avoid compiler warnings. */
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
}
{
YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return 2;
}
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return 1;
}
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
{
char *yyp = *yymsg;
int yyi = 0;
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyformat += 2;
}
else
{
yyp++;
yyformat++;
}
}
return 0;
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
{
YYUSE (yyvaluep);
YYUSE (yylocationp);
YYUSE (result);
YYUSE (scanner);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
switch (yytype)
{
case 3: /* IDENTIFIER */
#line 145 "bison_parser.y" /* yacc.c:1257 */
{ free( (((*yyvaluep).sval)) ); }
#line 1723 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 4: /* STRING */
#line 145 "bison_parser.y" /* yacc.c:1257 */
{ free( (((*yyvaluep).sval)) ); }
#line 1729 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 5: /* FLOATVAL */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1735 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 6: /* INTVAL */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1741 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 164: /* statement_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).stmt_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).stmt_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).stmt_vec));
}
#line 1754 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 165: /* statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).statement)); }
#line 1760 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 166: /* preparable_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).statement)); }
#line 1766 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 167: /* opt_hints */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 1779 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 168: /* hint_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 1792 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 169: /* hint */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 1798 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 170: /* prepare_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).prep_stmt)); }
#line 1804 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 171: /* prepare_target_query */
#line 145 "bison_parser.y" /* yacc.c:1257 */
{ free( (((*yyvaluep).sval)) ); }
#line 1810 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 172: /* execute_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).exec_stmt)); }
#line 1816 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 173: /* import_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).import_stmt)); }
#line 1822 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 174: /* import_file_type */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1828 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 175: /* file_path */
#line 145 "bison_parser.y" /* yacc.c:1257 */
{ free( (((*yyvaluep).sval)) ); }
#line 1834 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 176: /* show_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).show_stmt)); }
#line 1840 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 177: /* create_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).create_stmt)); }
#line 1846 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 178: /* opt_not_exists */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1852 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 179: /* column_def_commalist */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).column_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).column_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).column_vec));
}
#line 1865 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 180: /* column_def */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).column_t)); }
#line 1871 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 181: /* column_type */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1877 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 182: /* opt_column_nullable */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1883 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 183: /* drop_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).drop_stmt)); }
#line 1889 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 184: /* opt_exists */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1895 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 185: /* delete_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).delete_stmt)); }
#line 1901 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 186: /* truncate_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).delete_stmt)); }
#line 1907 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 187: /* insert_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).insert_stmt)); }
#line 1913 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 188: /* opt_column_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).str_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).str_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).str_vec));
}
#line 1926 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 189: /* update_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).update_stmt)); }
#line 1932 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 190: /* update_clause_commalist */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).update_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).update_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).update_vec));
}
#line 1945 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 191: /* update_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).update_t)); }
#line 1951 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 192: /* select_statement */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).select_stmt)); }
#line 1957 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 193: /* select_with_paren */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).select_stmt)); }
#line 1963 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 194: /* select_paren_or_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).select_stmt)); }
#line 1969 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 195: /* select_no_paren */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).select_stmt)); }
#line 1975 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 199: /* select_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).select_stmt)); }
#line 1981 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 200: /* opt_distinct */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 1987 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 201: /* select_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 2000 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 202: /* opt_from_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2006 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 203: /* from_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2012 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 204: /* opt_where */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2018 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 205: /* opt_group */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).group_t)); }
#line 2024 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 206: /* opt_having */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2030 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 207: /* opt_order */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).order_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).order_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).order_vec));
}
#line 2043 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 208: /* order_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).order_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).order_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).order_vec));
}
#line 2056 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 209: /* order_desc */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).order)); }
#line 2062 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 210: /* opt_order_type */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 2068 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 211: /* opt_top */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).limit)); }
#line 2074 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 212: /* opt_limit */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).limit)); }
#line 2080 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 213: /* expr_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 2093 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 214: /* opt_literal_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 2106 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 215: /* literal_list */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).expr_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).expr_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).expr_vec));
}
#line 2119 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 216: /* expr_alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2125 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 217: /* expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2131 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 218: /* operand */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2137 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 219: /* scalar_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2143 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 220: /* unary_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2149 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 221: /* binary_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2155 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 222: /* logic_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2161 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 223: /* in_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2167 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 224: /* case_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2173 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 225: /* case_list */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2179 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 226: /* exists_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2185 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 227: /* comp_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2191 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 228: /* function_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2197 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 229: /* extract_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2203 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 230: /* datetime_field */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 2209 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 231: /* array_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2215 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 232: /* array_index */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2221 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 233: /* between_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2227 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 234: /* column_name */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2233 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 235: /* literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2239 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 236: /* string_literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2245 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 237: /* bool_literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2251 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 238: /* num_literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2257 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 239: /* int_literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2263 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 240: /* null_literal */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2269 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 241: /* param_expr */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2275 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 242: /* table_ref */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2281 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 243: /* table_ref_atomic */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2287 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 244: /* nonjoin_table_ref_atomic */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2293 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 245: /* table_ref_commalist */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).table_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).table_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).table_vec));
}
#line 2306 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 246: /* table_ref_name */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2312 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 247: /* table_ref_name_no_alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2318 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 248: /* table_name */
#line 144 "bison_parser.y" /* yacc.c:1257 */
{ free( (((*yyvaluep).table_name).name) ); free( (((*yyvaluep).table_name).schema) ); }
#line 2324 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 249: /* table_alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).alias_t)); }
#line 2330 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 250: /* opt_table_alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).alias_t)); }
#line 2336 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 251: /* alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).alias_t)); }
#line 2342 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 252: /* opt_alias */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).alias_t)); }
#line 2348 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 253: /* opt_with_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).with_description_vec)); }
#line 2354 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 254: /* with_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).with_description_vec)); }
#line 2360 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 255: /* with_description_list */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).with_description_vec)); }
#line 2366 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 256: /* with_description */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).with_description_t)); }
#line 2372 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 257: /* join_clause */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).table)); }
#line 2378 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 258: /* opt_join_type */
#line 143 "bison_parser.y" /* yacc.c:1257 */
{ }
#line 2384 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 259: /* join_condition */
#line 154 "bison_parser.y" /* yacc.c:1257 */
{ delete (((*yyvaluep).expr)); }
#line 2390 "bison_parser.cpp" /* yacc.c:1257 */
break;
case 261: /* ident_commalist */
#line 146 "bison_parser.y" /* yacc.c:1257 */
{
if ((((*yyvaluep).str_vec)) != nullptr) {
for (auto ptr : *(((*yyvaluep).str_vec))) {
delete ptr;
}
}
delete (((*yyvaluep).str_vec));
}
#line 2403 "bison_parser.cpp" /* yacc.c:1257 */
break;
default:
break;
}
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*----------.
| yyparse. |
`----------*/
int
yyparse (hsql::SQLParserResult* result, yyscan_t scanner)
{
/* The lookahead symbol. */
int yychar;
/* The semantic value of the lookahead symbol. */
/* Default value used for initialization, for pacifying older GCCs
or non-GCC compilers. */
YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
/* Location data for the lookahead symbol. */
static YYLTYPE yyloc_default
# if defined HSQL_LTYPE_IS_TRIVIAL && HSQL_LTYPE_IS_TRIVIAL
= { 1, 1, 1, 1 }
# endif
;
YYLTYPE yylloc = yyloc_default;
/* Number of syntax errors so far. */
int yynerrs;
int yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* The stacks and their tools:
'yyss': related to states.
'yyvs': related to semantic values.
'yyls': related to locations.
Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
/* The location stack. */
YYLTYPE yylsa[YYINITDEPTH];
YYLTYPE *yyls;
YYLTYPE *yylsp;
/* The locations where the error started and ended. */
YYLTYPE yyerror_range[3];
YYSIZE_T yystacksize;
int yyn;
int yyresult;
/* Lookahead token as an internal (translated) token number. */
int yytoken = 0;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
YYLTYPE yyloc;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
yyssp = yyss = yyssa;
yyvsp = yyvs = yyvsa;
yylsp = yyls = yylsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
/* User initialization code. */
#line 73 "bison_parser.y" /* yacc.c:1437 */
{
// Initialize
yylloc.first_column = 0;
yylloc.last_column = 0;
yylloc.first_line = 0;
yylloc.last_line = 0;
yylloc.total_column = 0;
yylloc.string_length = 0;
}
#line 2521 "bison_parser.cpp" /* yacc.c:1437 */
yylsp[0] = yylloc;
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*--------------------------------------------------------------------.
| yynewstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
*yyssp = (yytype_int16) yystate;
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
goto yyexhaustedlab;
#else
{
/* Get the current used size of the three stacks, in elements. */
YYSIZE_T yysize = (YYSIZE_T) (yyssp - yyss + 1);
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss;
YYLTYPE *yyls1 = yyls;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp),
&yyls1, yysize * sizeof (*yylsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
yyls = yyls1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
goto yyexhaustedlab;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
YYSTACK_RELOCATE (yyls_alloc, yyls);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
yylsp = yyls + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long) yystacksize));
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
yychar = yylex (&yylval, &yylloc, scanner);
}
if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token. */
yychar = YYEMPTY;
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
*++yylsp = yylloc;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
/* Default location. */
YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
yyerror_range[1] = yyloc;
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2:
#line 258 "bison_parser.y" /* yacc.c:1667 */
{
for (SQLStatement* stmt : *(yyvsp[-1].stmt_vec)) {
// Transfers ownership of the statement.
result->addStatement(stmt);
}
unsigned param_id = 0;
for (void* param : yyloc.param_list) {
if (param != nullptr) {
Expr* expr = (Expr*) param;
expr->ival = param_id;
result->addParameter(expr);
++param_id;
}
}
delete (yyvsp[-1].stmt_vec);
}
#line 2731 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 3:
#line 279 "bison_parser.y" /* yacc.c:1667 */
{
(yyvsp[0].statement)->stringLength = yylloc.string_length;
yylloc.string_length = 0;
(yyval.stmt_vec) = new std::vector<SQLStatement*>();
(yyval.stmt_vec)->push_back((yyvsp[0].statement));
}
#line 2742 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 4:
#line 285 "bison_parser.y" /* yacc.c:1667 */
{
(yyvsp[0].statement)->stringLength = yylloc.string_length;
yylloc.string_length = 0;
(yyvsp[-2].stmt_vec)->push_back((yyvsp[0].statement));
(yyval.stmt_vec) = (yyvsp[-2].stmt_vec);
}
#line 2753 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 5:
#line 294 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.statement) = (yyvsp[-1].prep_stmt);
(yyval.statement)->hints = (yyvsp[0].expr_vec);
}
#line 2762 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 6:
#line 298 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.statement) = (yyvsp[-1].statement);
(yyval.statement)->hints = (yyvsp[0].expr_vec);
}
#line 2771 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 7:
#line 302 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.statement) = (yyvsp[0].show_stmt);
}
#line 2779 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 8:
#line 309 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].select_stmt); }
#line 2785 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 9:
#line 310 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].import_stmt); }
#line 2791 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 10:
#line 311 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].create_stmt); }
#line 2797 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 11:
#line 312 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].insert_stmt); }
#line 2803 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 12:
#line 313 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].delete_stmt); }
#line 2809 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 13:
#line 314 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].delete_stmt); }
#line 2815 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 14:
#line 315 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].update_stmt); }
#line 2821 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 15:
#line 316 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].drop_stmt); }
#line 2827 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 16:
#line 317 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.statement) = (yyvsp[0].exec_stmt); }
#line 2833 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 17:
#line 326 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = (yyvsp[-1].expr_vec); }
#line 2839 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 18:
#line 327 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = nullptr; }
#line 2845 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 19:
#line 332 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = new std::vector<Expr*>(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); }
#line 2851 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 20:
#line 333 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); }
#line 2857 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 21:
#line 337 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.expr) = Expr::make(kExprHint);
(yyval.expr)->name = (yyvsp[0].sval);
}
#line 2866 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 22:
#line 341 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.expr) = Expr::make(kExprHint);
(yyval.expr)->name = (yyvsp[-3].sval);
(yyval.expr)->exprList = (yyvsp[-1].expr_vec);
}
#line 2876 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 23:
#line 353 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.prep_stmt) = new PrepareStatement();
(yyval.prep_stmt)->name = (yyvsp[-2].sval);
(yyval.prep_stmt)->query = (yyvsp[0].sval);
}
#line 2886 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 25:
#line 363 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.exec_stmt) = new ExecuteStatement();
(yyval.exec_stmt)->name = (yyvsp[0].sval);
}
#line 2895 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 26:
#line 367 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.exec_stmt) = new ExecuteStatement();
(yyval.exec_stmt)->name = (yyvsp[-3].sval);
(yyval.exec_stmt)->parameters = (yyvsp[-1].expr_vec);
}
#line 2905 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 27:
#line 379 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.import_stmt) = new ImportStatement((ImportType) (yyvsp[-4].uval));
(yyval.import_stmt)->filePath = (yyvsp[-2].sval);
(yyval.import_stmt)->schema = (yyvsp[0].table_name).schema;
(yyval.import_stmt)->tableName = (yyvsp[0].table_name).name;
}
#line 2916 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 28:
#line 388 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kImportCSV; }
#line 2922 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 29:
#line 392 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.sval) = strdup((yyvsp[0].expr)->name); delete (yyvsp[0].expr); }
#line 2928 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 30:
#line 402 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.show_stmt) = new ShowStatement(kShowTables);
}
#line 2936 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 31:
#line 405 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.show_stmt) = new ShowStatement(kShowColumns);
(yyval.show_stmt)->schema = (yyvsp[0].table_name).schema;
(yyval.show_stmt)->name = (yyvsp[0].table_name).name;
}
#line 2946 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 32:
#line 419 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.create_stmt) = new CreateStatement(kCreateTableFromTbl);
(yyval.create_stmt)->ifNotExists = (yyvsp[-5].bval);
(yyval.create_stmt)->schema = (yyvsp[-4].table_name).schema;
(yyval.create_stmt)->tableName = (yyvsp[-4].table_name).name;
(yyval.create_stmt)->filePath = (yyvsp[0].sval);
}
#line 2958 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 33:
#line 426 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.create_stmt) = new CreateStatement(kCreateTable);
(yyval.create_stmt)->ifNotExists = (yyvsp[-4].bval);
(yyval.create_stmt)->schema = (yyvsp[-3].table_name).schema;
(yyval.create_stmt)->tableName = (yyvsp[-3].table_name).name;
(yyval.create_stmt)->columns = (yyvsp[-1].column_vec);
}
#line 2970 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 34:
#line 433 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.create_stmt) = new CreateStatement(kCreateTable);
(yyval.create_stmt)->ifNotExists = (yyvsp[-3].bval);
(yyval.create_stmt)->schema = (yyvsp[-2].table_name).schema;
(yyval.create_stmt)->tableName = (yyvsp[-2].table_name).name;
(yyval.create_stmt)->select = (yyvsp[0].select_stmt);
}
#line 2982 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 35:
#line 440 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.create_stmt) = new CreateStatement(kCreateView);
(yyval.create_stmt)->ifNotExists = (yyvsp[-4].bval);
(yyval.create_stmt)->schema = (yyvsp[-3].table_name).schema;
(yyval.create_stmt)->tableName = (yyvsp[-3].table_name).name;
(yyval.create_stmt)->viewColumns = (yyvsp[-2].str_vec);
(yyval.create_stmt)->select = (yyvsp[0].select_stmt);
}
#line 2995 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 36:
#line 451 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = true; }
#line 3001 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 37:
#line 452 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = false; }
#line 3007 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 38:
#line 456 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_vec) = new std::vector<ColumnDefinition*>(); (yyval.column_vec)->push_back((yyvsp[0].column_t)); }
#line 3013 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 39:
#line 457 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].column_vec)->push_back((yyvsp[0].column_t)); (yyval.column_vec) = (yyvsp[-2].column_vec); }
#line 3019 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 40:
#line 461 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.column_t) = new ColumnDefinition((yyvsp[-2].sval), (yyvsp[-1].column_type_t), (yyvsp[0].bval));
}
#line 3027 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 41:
#line 467 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::INT}; }
#line 3033 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 42:
#line 468 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::INT}; }
#line 3039 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 43:
#line 469 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::LONG}; }
#line 3045 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 44:
#line 470 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::FLOAT}; }
#line 3051 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 45:
#line 471 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::DOUBLE}; }
#line 3057 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 46:
#line 472 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::VARCHAR, (yyvsp[-1].ival)}; }
#line 3063 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 47:
#line 473 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::CHAR, (yyvsp[-1].ival)}; }
#line 3069 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 48:
#line 474 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.column_type_t) = ColumnType{DataType::TEXT}; }
#line 3075 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 49:
#line 478 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = true; }
#line 3081 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 50:
#line 479 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = false; }
#line 3087 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 51:
#line 480 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = false; }
#line 3093 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 52:
#line 490 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.drop_stmt) = new DropStatement(kDropTable);
(yyval.drop_stmt)->ifExists = (yyvsp[-1].bval);
(yyval.drop_stmt)->schema = (yyvsp[0].table_name).schema;
(yyval.drop_stmt)->name = (yyvsp[0].table_name).name;
}
#line 3104 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 53:
#line 496 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.drop_stmt) = new DropStatement(kDropView);
(yyval.drop_stmt)->ifExists = (yyvsp[-1].bval);
(yyval.drop_stmt)->schema = (yyvsp[0].table_name).schema;
(yyval.drop_stmt)->name = (yyvsp[0].table_name).name;
}
#line 3115 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 54:
#line 502 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.drop_stmt) = new DropStatement(kDropPreparedStatement);
(yyval.drop_stmt)->ifExists = false;
(yyval.drop_stmt)->name = (yyvsp[0].sval);
}
#line 3125 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 55:
#line 510 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = true; }
#line 3131 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 56:
#line 511 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = false; }
#line 3137 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 57:
#line 520 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.delete_stmt) = new DeleteStatement();
(yyval.delete_stmt)->schema = (yyvsp[-1].table_name).schema;
(yyval.delete_stmt)->tableName = (yyvsp[-1].table_name).name;
(yyval.delete_stmt)->expr = (yyvsp[0].expr);
}
#line 3148 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 58:
#line 529 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.delete_stmt) = new DeleteStatement();
(yyval.delete_stmt)->schema = (yyvsp[0].table_name).schema;
(yyval.delete_stmt)->tableName = (yyvsp[0].table_name).name;
}
#line 3158 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 59:
#line 542 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.insert_stmt) = new InsertStatement(kInsertValues);
(yyval.insert_stmt)->schema = (yyvsp[-5].table_name).schema;
(yyval.insert_stmt)->tableName = (yyvsp[-5].table_name).name;
(yyval.insert_stmt)->columns = (yyvsp[-4].str_vec);
(yyval.insert_stmt)->values = (yyvsp[-1].expr_vec);
}
#line 3170 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 60:
#line 549 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.insert_stmt) = new InsertStatement(kInsertSelect);
(yyval.insert_stmt)->schema = (yyvsp[-2].table_name).schema;
(yyval.insert_stmt)->tableName = (yyvsp[-2].table_name).name;
(yyval.insert_stmt)->columns = (yyvsp[-1].str_vec);
(yyval.insert_stmt)->select = (yyvsp[0].select_stmt);
}
#line 3182 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 61:
#line 560 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.str_vec) = (yyvsp[-1].str_vec); }
#line 3188 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 62:
#line 561 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.str_vec) = nullptr; }
#line 3194 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 63:
#line 571 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.update_stmt) = new UpdateStatement();
(yyval.update_stmt)->table = (yyvsp[-3].table);
(yyval.update_stmt)->updates = (yyvsp[-1].update_vec);
(yyval.update_stmt)->where = (yyvsp[0].expr);
}
#line 3205 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 64:
#line 580 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.update_vec) = new std::vector<UpdateClause*>(); (yyval.update_vec)->push_back((yyvsp[0].update_t)); }
#line 3211 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 65:
#line 581 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].update_vec)->push_back((yyvsp[0].update_t)); (yyval.update_vec) = (yyvsp[-2].update_vec); }
#line 3217 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 66:
#line 585 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.update_t) = new UpdateClause();
(yyval.update_t)->column = (yyvsp[-2].sval);
(yyval.update_t)->value = (yyvsp[0].expr);
}
#line 3227 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 67:
#line 597 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.select_stmt) = (yyvsp[0].select_stmt);
(yyval.select_stmt)->withDescriptions = (yyvsp[-1].with_description_vec);
}
#line 3236 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 68:
#line 601 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.select_stmt) = (yyvsp[0].select_stmt);
(yyval.select_stmt)->withDescriptions = (yyvsp[-1].with_description_vec);
}
#line 3245 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 69:
#line 605 "bison_parser.y" /* yacc.c:1667 */
{
// TODO: allow multiple unions (through linked list)
// TODO: capture type of set_operator
// TODO: might overwrite order and limit of first select here
(yyval.select_stmt) = (yyvsp[-4].select_stmt);
(yyval.select_stmt)->withDescriptions = (yyvsp[-5].with_description_vec);
(yyval.select_stmt)->unionSelect = (yyvsp[-2].select_stmt);
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
// Limit could have been set by TOP.
if ((yyvsp[0].limit) != nullptr) {
delete (yyval.select_stmt)->limit;
(yyval.select_stmt)->limit = (yyvsp[0].limit);
}
}
#line 3265 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 70:
#line 623 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.select_stmt) = (yyvsp[-1].select_stmt); }
#line 3271 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 71:
#line 624 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.select_stmt) = (yyvsp[-1].select_stmt); }
#line 3277 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 74:
#line 633 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.select_stmt) = (yyvsp[-2].select_stmt);
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
// Limit could have been set by TOP.
if ((yyvsp[0].limit) != nullptr) {
delete (yyval.select_stmt)->limit;
(yyval.select_stmt)->limit = (yyvsp[0].limit);
}
}
#line 3292 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 75:
#line 643 "bison_parser.y" /* yacc.c:1667 */
{
// TODO: allow multiple unions (through linked list)
// TODO: capture type of set_operator
// TODO: might overwrite order and limit of first select here
(yyval.select_stmt) = (yyvsp[-4].select_stmt);
(yyval.select_stmt)->unionSelect = (yyvsp[-2].select_stmt);
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
// Limit could have been set by TOP.
if ((yyvsp[0].limit) != nullptr) {
delete (yyval.select_stmt)->limit;
(yyval.select_stmt)->limit = (yyvsp[0].limit);
}
}
#line 3311 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 82:
#line 675 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.select_stmt) = new SelectStatement();
(yyval.select_stmt)->limit = (yyvsp[-5].limit);
(yyval.select_stmt)->selectDistinct = (yyvsp[-4].bval);
(yyval.select_stmt)->selectList = (yyvsp[-3].expr_vec);
(yyval.select_stmt)->fromTable = (yyvsp[-2].table);
(yyval.select_stmt)->whereClause = (yyvsp[-1].expr);
(yyval.select_stmt)->groupBy = (yyvsp[0].group_t);
}
#line 3325 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 83:
#line 687 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = true; }
#line 3331 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 84:
#line 688 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.bval) = false; }
#line 3337 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 86:
#line 696 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table) = (yyvsp[0].table); }
#line 3343 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 87:
#line 697 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table) = nullptr; }
#line 3349 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 88:
#line 700 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table) = (yyvsp[0].table); }
#line 3355 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 89:
#line 705 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = (yyvsp[0].expr); }
#line 3361 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 90:
#line 706 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = nullptr; }
#line 3367 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 91:
#line 710 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.group_t) = new GroupByDescription();
(yyval.group_t)->columns = (yyvsp[-1].expr_vec);
(yyval.group_t)->having = (yyvsp[0].expr);
}
#line 3377 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 92:
#line 715 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.group_t) = nullptr; }
#line 3383 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 93:
#line 719 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = (yyvsp[0].expr); }
#line 3389 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 94:
#line 720 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = nullptr; }
#line 3395 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 95:
#line 723 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_vec) = (yyvsp[0].order_vec); }
#line 3401 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 96:
#line 724 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_vec) = nullptr; }
#line 3407 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 97:
#line 728 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_vec) = new std::vector<OrderDescription*>(); (yyval.order_vec)->push_back((yyvsp[0].order)); }
#line 3413 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 98:
#line 729 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].order_vec)->push_back((yyvsp[0].order)); (yyval.order_vec) = (yyvsp[-2].order_vec); }
#line 3419 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 99:
#line 733 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order) = new OrderDescription((yyvsp[0].order_type), (yyvsp[-1].expr)); }
#line 3425 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 100:
#line 737 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_type) = kOrderAsc; }
#line 3431 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 101:
#line 738 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_type) = kOrderDesc; }
#line 3437 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 102:
#line 739 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.order_type) = kOrderAsc; }
#line 3443 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 103:
#line 745 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription((yyvsp[0].expr), nullptr); }
#line 3449 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 104:
#line 746 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = nullptr; }
#line 3455 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 105:
#line 750 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription((yyvsp[0].expr), nullptr); }
#line 3461 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 106:
#line 751 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription(nullptr, (yyvsp[0].expr)); }
#line 3467 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 107:
#line 752 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription((yyvsp[-2].expr), (yyvsp[0].expr)); }
#line 3473 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 108:
#line 753 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription(nullptr, nullptr); }
#line 3479 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 109:
#line 754 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = new LimitDescription(nullptr, (yyvsp[0].expr)); }
#line 3485 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 110:
#line 755 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.limit) = nullptr; }
#line 3491 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 111:
#line 762 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = new std::vector<Expr*>(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); }
#line 3497 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 112:
#line 763 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); }
#line 3503 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 113:
#line 767 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = (yyvsp[0].expr_vec); }
#line 3509 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 114:
#line 768 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = nullptr; }
#line 3515 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 115:
#line 772 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr_vec) = new std::vector<Expr*>(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); }
#line 3521 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 116:
#line 773 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); }
#line 3527 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 117:
#line 777 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.expr) = (yyvsp[-1].expr);
if ((yyvsp[0].alias_t)) {
(yyval.expr)->alias = strdup((yyvsp[0].alias_t)->name);
delete (yyvsp[0].alias_t);
}
}
#line 3539 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 123:
#line 795 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = (yyvsp[-1].expr); }
#line 3545 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 132:
#line 804 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeSelect((yyvsp[-1].select_stmt)); }
#line 3551 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 135:
#line 813 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpUnaryMinus, (yyvsp[0].expr)); }
#line 3557 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 136:
#line 814 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, (yyvsp[0].expr)); }
#line 3563 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 137:
#line 815 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpIsNull, (yyvsp[-1].expr)); }
#line 3569 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 138:
#line 816 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpIsNull, (yyvsp[-2].expr)); }
#line 3575 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 139:
#line 817 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeOpUnary(kOpIsNull, (yyvsp[-3].expr))); }
#line 3581 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 141:
#line 822 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpMinus, (yyvsp[0].expr)); }
#line 3587 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 142:
#line 823 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpPlus, (yyvsp[0].expr)); }
#line 3593 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 143:
#line 824 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpSlash, (yyvsp[0].expr)); }
#line 3599 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 144:
#line 825 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpAsterisk, (yyvsp[0].expr)); }
#line 3605 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 145:
#line 826 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpPercentage, (yyvsp[0].expr)); }
#line 3611 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 146:
#line 827 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpCaret, (yyvsp[0].expr)); }
#line 3617 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 147:
#line 828 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLike, (yyvsp[0].expr)); }
#line 3623 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 148:
#line 829 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-3].expr), kOpNotLike, (yyvsp[0].expr)); }
#line 3629 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 149:
#line 830 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpILike, (yyvsp[0].expr)); }
#line 3635 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 150:
#line 831 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpConcat, (yyvsp[0].expr)); }
#line 3641 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 151:
#line 835 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpAnd, (yyvsp[0].expr)); }
#line 3647 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 152:
#line 836 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpOr, (yyvsp[0].expr)); }
#line 3653 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 153:
#line 840 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].expr_vec)); }
#line 3659 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 154:
#line 841 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].expr_vec))); }
#line 3665 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 155:
#line 842 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].select_stmt)); }
#line 3671 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 156:
#line 843 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].select_stmt))); }
#line 3677 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 157:
#line 849 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeCase((yyvsp[-2].expr), (yyvsp[-1].expr), nullptr); }
#line 3683 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 158:
#line 850 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeCase((yyvsp[-4].expr), (yyvsp[-3].expr), (yyvsp[-1].expr)); }
#line 3689 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 159:
#line 851 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeCase(nullptr, (yyvsp[-1].expr), nullptr); }
#line 3695 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 160:
#line 852 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeCase(nullptr, (yyvsp[-3].expr), (yyvsp[-1].expr)); }
#line 3701 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 161:
#line 856 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeCaseList(Expr::makeCaseListElement((yyvsp[-2].expr), (yyvsp[0].expr))); }
#line 3707 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 162:
#line 857 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::caseListAppend((yyvsp[-4].expr), Expr::makeCaseListElement((yyvsp[-2].expr), (yyvsp[0].expr))); }
#line 3713 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 163:
#line 861 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeExists((yyvsp[-1].select_stmt)); }
#line 3719 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 164:
#line 862 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeExists((yyvsp[-1].select_stmt))); }
#line 3725 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 165:
#line 866 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpEquals, (yyvsp[0].expr)); }
#line 3731 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 166:
#line 867 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpEquals, (yyvsp[0].expr)); }
#line 3737 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 167:
#line 868 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpNotEquals, (yyvsp[0].expr)); }
#line 3743 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 168:
#line 869 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLess, (yyvsp[0].expr)); }
#line 3749 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 169:
#line 870 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpGreater, (yyvsp[0].expr)); }
#line 3755 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 170:
#line 871 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLessEq, (yyvsp[0].expr)); }
#line 3761 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 171:
#line 872 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpGreaterEq, (yyvsp[0].expr)); }
#line 3767 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 172:
#line 876 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeFunctionRef((yyvsp[-2].sval), new std::vector<Expr*>(), false); }
#line 3773 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 173:
#line 877 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeFunctionRef((yyvsp[-4].sval), (yyvsp[-1].expr_vec), (yyvsp[-2].bval)); }
#line 3779 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 174:
#line 881 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeExtract((yyvsp[-3].datetime_field), (yyvsp[-1].expr)); }
#line 3785 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 175:
#line 885 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeSecond; }
#line 3791 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 176:
#line 886 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeMinute; }
#line 3797 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 177:
#line 887 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeHour; }
#line 3803 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 178:
#line 888 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeDay; }
#line 3809 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 179:
#line 889 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeMonth; }
#line 3815 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 180:
#line 890 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.datetime_field) = kDatetimeYear; }
#line 3821 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 181:
#line 893 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeArray((yyvsp[-1].expr_vec)); }
#line 3827 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 182:
#line 897 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeArrayIndex((yyvsp[-3].expr), (yyvsp[-1].expr)->ival); }
#line 3833 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 183:
#line 901 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeBetween((yyvsp[-4].expr), (yyvsp[-2].expr), (yyvsp[0].expr)); }
#line 3839 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 184:
#line 905 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeColumnRef((yyvsp[0].sval)); }
#line 3845 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 185:
#line 906 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeColumnRef((yyvsp[-2].sval), (yyvsp[0].sval)); }
#line 3851 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 186:
#line 907 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeStar(); }
#line 3857 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 187:
#line 908 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeStar((yyvsp[-2].sval)); }
#line 3863 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 193:
#line 920 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].sval)); }
#line 3869 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 194:
#line 924 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeLiteral(true); }
#line 3875 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 195:
#line 925 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeLiteral(false); }
#line 3881 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 196:
#line 929 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].fval)); }
#line 3887 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 198:
#line 934 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].ival)); }
#line 3893 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 199:
#line 938 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.expr) = Expr::makeNullLiteral(); }
#line 3899 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 200:
#line 942 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.expr) = Expr::makeParameter(yylloc.total_column);
(yyval.expr)->ival2 = yyloc.param_list.size();
yyloc.param_list.push_back((yyval.expr));
}
#line 3909 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 202:
#line 955 "bison_parser.y" /* yacc.c:1667 */
{
(yyvsp[-2].table_vec)->push_back((yyvsp[0].table));
auto tbl = new TableRef(kTableCrossProduct);
tbl->list = (yyvsp[-2].table_vec);
(yyval.table) = tbl;
}
#line 3920 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 206:
#line 971 "bison_parser.y" /* yacc.c:1667 */
{
auto tbl = new TableRef(kTableSelect);
tbl->select = (yyvsp[-2].select_stmt);
tbl->alias = (yyvsp[0].alias_t);
(yyval.table) = tbl;
}
#line 3931 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 207:
#line 980 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table_vec) = new std::vector<TableRef*>(); (yyval.table_vec)->push_back((yyvsp[0].table)); }
#line 3937 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 208:
#line 981 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].table_vec)->push_back((yyvsp[0].table)); (yyval.table_vec) = (yyvsp[-2].table_vec); }
#line 3943 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 209:
#line 986 "bison_parser.y" /* yacc.c:1667 */
{
auto tbl = new TableRef(kTableName);
tbl->schema = (yyvsp[-1].table_name).schema;
tbl->name = (yyvsp[-1].table_name).name;
tbl->alias = (yyvsp[0].alias_t);
(yyval.table) = tbl;
}
#line 3955 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 210:
#line 997 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.table) = new TableRef(kTableName);
(yyval.table)->schema = (yyvsp[0].table_name).schema;
(yyval.table)->name = (yyvsp[0].table_name).name;
}
#line 3965 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 211:
#line 1006 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table_name).schema = nullptr; (yyval.table_name).name = (yyvsp[0].sval);}
#line 3971 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 212:
#line 1007 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.table_name).schema = (yyvsp[-2].sval); (yyval.table_name).name = (yyvsp[0].sval); }
#line 3977 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 214:
#line 1013 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.alias_t) = new Alias((yyvsp[-3].sval), (yyvsp[-1].str_vec)); }
#line 3983 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 216:
#line 1019 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.alias_t) = nullptr; }
#line 3989 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 217:
#line 1023 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.alias_t) = new Alias((yyvsp[0].sval)); }
#line 3995 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 218:
#line 1024 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.alias_t) = new Alias((yyvsp[0].sval)); }
#line 4001 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 220:
#line 1030 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.alias_t) = nullptr; }
#line 4007 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 222:
#line 1039 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.with_description_vec) = nullptr; }
#line 4013 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 223:
#line 1043 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.with_description_vec) = (yyvsp[0].with_description_vec); }
#line 4019 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 224:
#line 1047 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.with_description_vec) = new std::vector<WithDescription*>();
(yyval.with_description_vec)->push_back((yyvsp[0].with_description_t));
}
#line 4028 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 225:
#line 1051 "bison_parser.y" /* yacc.c:1667 */
{
(yyvsp[-2].with_description_vec)->push_back((yyvsp[0].with_description_t));
(yyval.with_description_vec) = (yyvsp[-2].with_description_vec);
}
#line 4037 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 226:
#line 1058 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.with_description_t) = new WithDescription();
(yyval.with_description_t)->alias = (yyvsp[-2].sval);
(yyval.with_description_t)->select = (yyvsp[0].select_stmt);
}
#line 4047 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 227:
#line 1072 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.table) = new TableRef(kTableJoin);
(yyval.table)->join = new JoinDefinition();
(yyval.table)->join->type = kJoinNatural;
(yyval.table)->join->left = (yyvsp[-3].table);
(yyval.table)->join->right = (yyvsp[0].table);
}
#line 4059 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 228:
#line 1080 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.table) = new TableRef(kTableJoin);
(yyval.table)->join = new JoinDefinition();
(yyval.table)->join->type = (JoinType) (yyvsp[-4].uval);
(yyval.table)->join->left = (yyvsp[-5].table);
(yyval.table)->join->right = (yyvsp[-2].table);
(yyval.table)->join->condition = (yyvsp[0].expr);
}
#line 4072 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 229:
#line 1090 "bison_parser.y" /* yacc.c:1667 */
{
(yyval.table) = new TableRef(kTableJoin);
(yyval.table)->join = new JoinDefinition();
(yyval.table)->join->type = (JoinType) (yyvsp[-6].uval);
(yyval.table)->join->left = (yyvsp[-7].table);
(yyval.table)->join->right = (yyvsp[-4].table);
auto left_col = Expr::makeColumnRef(strdup((yyvsp[-1].expr)->name));
if ((yyvsp[-1].expr)->alias != nullptr) left_col->alias = strdup((yyvsp[-1].expr)->alias);
if ((yyvsp[-7].table)->getName() != nullptr) left_col->table = strdup((yyvsp[-7].table)->getName());
auto right_col = Expr::makeColumnRef(strdup((yyvsp[-1].expr)->name));
if ((yyvsp[-1].expr)->alias != nullptr) right_col->alias = strdup((yyvsp[-1].expr)->alias);
if ((yyvsp[-4].table)->getName() != nullptr) right_col->table = strdup((yyvsp[-4].table)->getName());
(yyval.table)->join->condition = Expr::makeOpBinary(left_col, kOpEquals, right_col);
delete (yyvsp[-1].expr);
}
#line 4092 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 230:
#line 1108 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinInner; }
#line 4098 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 231:
#line 1109 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinLeft; }
#line 4104 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 232:
#line 1110 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinLeft; }
#line 4110 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 233:
#line 1111 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinRight; }
#line 4116 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 234:
#line 1112 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinRight; }
#line 4122 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 235:
#line 1113 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinFull; }
#line 4128 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 236:
#line 1114 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinFull; }
#line 4134 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 237:
#line 1115 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinFull; }
#line 4140 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 238:
#line 1116 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinCross; }
#line 4146 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 239:
#line 1117 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.uval) = kJoinInner; }
#line 4152 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 243:
#line 1137 "bison_parser.y" /* yacc.c:1667 */
{ (yyval.str_vec) = new std::vector<char*>(); (yyval.str_vec)->push_back((yyvsp[0].sval)); }
#line 4158 "bison_parser.cpp" /* yacc.c:1667 */
break;
case 244:
#line 1138 "bison_parser.y" /* yacc.c:1667 */
{ (yyvsp[-2].str_vec)->push_back((yyvsp[0].sval)); (yyval.str_vec) = (yyvsp[-2].str_vec); }
#line 4164 "bison_parser.cpp" /* yacc.c:1667 */
break;
#line 4168 "bison_parser.cpp" /* yacc.c:1667 */
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
*++yyvsp = yyval;
*++yylsp = yyloc;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
#if ! YYERROR_VERBOSE
yyerror (&yylloc, result, scanner, YY_("syntax error"));
#else
# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
yyssp, yytoken)
{
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
yysyntax_error_status = YYSYNTAX_ERROR;
if (yysyntax_error_status == 0)
yymsgp = yymsg;
else if (yysyntax_error_status == 1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
if (!yymsg)
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
yysyntax_error_status = 2;
}
else
{
yysyntax_error_status = YYSYNTAX_ERROR;
yymsgp = yymsg;
}
}
yyerror (&yylloc, result, scanner, yymsgp);
if (yysyntax_error_status == 2)
goto yyexhaustedlab;
}
# undef YYSYNTAX_ERROR
#endif
}
yyerror_range[1] = yylloc;
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval, &yylloc, result, scanner);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yyerror_range[1] = *yylsp;
yydestruct ("Error: popping",
yystos[yystate], yyvsp, yylsp, result, scanner);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
yyerror_range[2] = yylloc;
/* Using YYLLOC is tempting, but would change the location of
the lookahead. YYLOC is available though. */
YYLLOC_DEFAULT (yyloc, yyerror_range, 2);
*++yylsp = yyloc;
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturn;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturn;
#if !defined yyoverflow || YYERROR_VERBOSE
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
yyexhaustedlab:
yyerror (&yylloc, result, scanner, YY_("memory exhausted"));
yyresult = 2;
/* Fall through. */
#endif
/*-----------------------------------------------------.
| yyreturn -- parsing is finished, return the result. |
`-----------------------------------------------------*/
yyreturn:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval, &yylloc, result, scanner);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
yystos[*yyssp], yyvsp, yylsp, result, scanner);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
return yyresult;
}
#line 1141 "bison_parser.y" /* yacc.c:1918 */
/*********************************
** Section 4: Additional C code
*********************************/
/* empty */