2017-02-10 21:42:02 +01:00
|
|
|
/* A Bison parser, made by GNU Bison 3.0.4. */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* Bison implementation for Yacc-like parsers in C
|
|
|
|
|
2017-02-10 21:42:02 +01:00
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
/* Identify Bison output. */
|
|
|
|
#define YYBISON 1
|
|
|
|
|
|
|
|
/* Bison version. */
|
2017-02-10 21:42:02 +01:00
|
|
|
#define YYBISON_VERSION "3.0.4"
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
|
|
|
|
|
|
|
/* Copy the first part of user declarations. */
|
|
|
|
#line 1 "bison_parser.y" /* yacc.c:339 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
using namespace hsql;
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
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);
|
2015-12-23 17:02:45 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 104 "bison_parser.cpp" /* yacc.c:339 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
# ifndef YY_NULLPTR
|
|
|
|
# if defined __cplusplus && 201103L <= __cplusplus
|
|
|
|
# define YY_NULLPTR nullptr
|
|
|
|
# else
|
|
|
|
# define YY_NULLPTR 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. */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 36 "bison_parser.y" /* yacc.c:355 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
// %code requires block
|
2016-02-27 14:24:23 +01:00
|
|
|
|
|
|
|
#include "../sql/statements.h"
|
|
|
|
#include "../SQLParserResult.h"
|
2015-12-23 17:02:45 +01:00
|
|
|
#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++; \
|
|
|
|
if(yytext[i] == '\n') { \
|
|
|
|
yylloc->last_line++; \
|
|
|
|
yylloc->last_column = 0; \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
yylloc->last_column++; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 165 "bison_parser.cpp" /* yacc.c:355 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* Token type. */
|
|
|
|
#ifndef HSQL_TOKENTYPE
|
|
|
|
# define HSQL_TOKENTYPE
|
|
|
|
enum hsql_tokentype
|
|
|
|
{
|
|
|
|
SQL_IDENTIFIER = 258,
|
|
|
|
SQL_STRING = 259,
|
|
|
|
SQL_FLOATVAL = 260,
|
|
|
|
SQL_INTVAL = 261,
|
|
|
|
SQL_NOTEQUALS = 262,
|
|
|
|
SQL_LESSEQ = 263,
|
|
|
|
SQL_GREATEREQ = 264,
|
|
|
|
SQL_DEALLOCATE = 265,
|
|
|
|
SQL_PARAMETERS = 266,
|
|
|
|
SQL_INTERSECT = 267,
|
|
|
|
SQL_TEMPORARY = 268,
|
|
|
|
SQL_TIMESTAMP = 269,
|
|
|
|
SQL_DISTINCT = 270,
|
|
|
|
SQL_NVARCHAR = 271,
|
|
|
|
SQL_RESTRICT = 272,
|
|
|
|
SQL_TRUNCATE = 273,
|
|
|
|
SQL_ANALYZE = 274,
|
|
|
|
SQL_BETWEEN = 275,
|
|
|
|
SQL_CASCADE = 276,
|
|
|
|
SQL_COLUMNS = 277,
|
|
|
|
SQL_CONTROL = 278,
|
|
|
|
SQL_DEFAULT = 279,
|
|
|
|
SQL_EXECUTE = 280,
|
|
|
|
SQL_EXPLAIN = 281,
|
|
|
|
SQL_HISTORY = 282,
|
|
|
|
SQL_INTEGER = 283,
|
|
|
|
SQL_NATURAL = 284,
|
|
|
|
SQL_PREPARE = 285,
|
|
|
|
SQL_PRIMARY = 286,
|
|
|
|
SQL_SCHEMAS = 287,
|
|
|
|
SQL_SPATIAL = 288,
|
|
|
|
SQL_VIRTUAL = 289,
|
|
|
|
SQL_BEFORE = 290,
|
|
|
|
SQL_COLUMN = 291,
|
|
|
|
SQL_CREATE = 292,
|
|
|
|
SQL_DELETE = 293,
|
|
|
|
SQL_DIRECT = 294,
|
|
|
|
SQL_DOUBLE = 295,
|
|
|
|
SQL_ESCAPE = 296,
|
|
|
|
SQL_EXCEPT = 297,
|
|
|
|
SQL_EXISTS = 298,
|
|
|
|
SQL_GLOBAL = 299,
|
|
|
|
SQL_HAVING = 300,
|
|
|
|
SQL_IMPORT = 301,
|
|
|
|
SQL_INSERT = 302,
|
|
|
|
SQL_ISNULL = 303,
|
|
|
|
SQL_OFFSET = 304,
|
|
|
|
SQL_RENAME = 305,
|
|
|
|
SQL_SCHEMA = 306,
|
|
|
|
SQL_SELECT = 307,
|
|
|
|
SQL_SORTED = 308,
|
|
|
|
SQL_TABLES = 309,
|
|
|
|
SQL_UNIQUE = 310,
|
|
|
|
SQL_UNLOAD = 311,
|
|
|
|
SQL_UPDATE = 312,
|
|
|
|
SQL_VALUES = 313,
|
|
|
|
SQL_AFTER = 314,
|
|
|
|
SQL_ALTER = 315,
|
|
|
|
SQL_CROSS = 316,
|
|
|
|
SQL_DELTA = 317,
|
|
|
|
SQL_GROUP = 318,
|
|
|
|
SQL_INDEX = 319,
|
|
|
|
SQL_INNER = 320,
|
|
|
|
SQL_LIMIT = 321,
|
|
|
|
SQL_LOCAL = 322,
|
|
|
|
SQL_MERGE = 323,
|
|
|
|
SQL_MINUS = 324,
|
|
|
|
SQL_ORDER = 325,
|
|
|
|
SQL_OUTER = 326,
|
|
|
|
SQL_RIGHT = 327,
|
|
|
|
SQL_TABLE = 328,
|
|
|
|
SQL_UNION = 329,
|
|
|
|
SQL_USING = 330,
|
|
|
|
SQL_WHERE = 331,
|
|
|
|
SQL_CALL = 332,
|
2017-03-08 20:36:06 +01:00
|
|
|
SQL_CASE = 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_NULL = 348,
|
|
|
|
SQL_PART = 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_EQUALS = 381,
|
|
|
|
SQL_LESS = 382,
|
|
|
|
SQL_GREATER = 383,
|
|
|
|
SQL_NOTNULL = 384,
|
|
|
|
SQL_UMINUS = 385
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Value type. */
|
|
|
|
#if ! defined HSQL_STYPE && ! defined HSQL_STYPE_IS_DECLARED
|
2017-02-10 21:42:02 +01:00
|
|
|
|
2015-12-23 17:02:45 +01:00
|
|
|
union HSQL_STYPE
|
|
|
|
{
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 95 "bison_parser.y" /* yacc.c:355 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
double fval;
|
|
|
|
int64_t ival;
|
|
|
|
char* sval;
|
2016-05-24 15:09:11 +02:00
|
|
|
uintmax_t uval;
|
2015-12-23 17:02:45 +01:00
|
|
|
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::TableRef* table;
|
|
|
|
hsql::Expr* expr;
|
|
|
|
hsql::OrderDescription* order;
|
|
|
|
hsql::OrderType order_type;
|
|
|
|
hsql::LimitDescription* limit;
|
|
|
|
hsql::ColumnDefinition* column_t;
|
|
|
|
hsql::GroupByDescription* group_t;
|
|
|
|
hsql::UpdateClause* update_t;
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
std::vector<hsql::SQLStatement*>* stmt_vec;
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
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;
|
2017-03-08 20:36:06 +01:00
|
|
|
std::vector<hsql::OrderDescription*>* order_vec;
|
2015-12-23 17:02:45 +01:00
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 345 "bison_parser.cpp" /* yacc.c:355 */
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
2017-02-10 21:42:02 +01:00
|
|
|
|
|
|
|
typedef union HSQL_STYPE HSQL_STYPE;
|
2015-12-23 17:02:45 +01:00
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
int hsql_parse (hsql::SQLParserResult* result, yyscan_t scanner);
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
#endif /* !YY_HSQL_BISON_PARSER_H_INCLUDED */
|
|
|
|
|
|
|
|
/* Copy the second part of user declarations. */
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 375 "bison_parser.cpp" /* yacc.c:358 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
#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 int yytype_uint16;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef YYTYPE_INT16
|
|
|
|
typedef YYTYPE_INT16 yytype_int16;
|
|
|
|
#else
|
|
|
|
typedef short int 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 int
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#if !defined _Noreturn \
|
|
|
|
&& (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
|
|
|
|
# if defined _MSC_VER && 1200 <= _MSC_VER
|
|
|
|
# define _Noreturn __declspec (noreturn)
|
|
|
|
# else
|
|
|
|
# define _Noreturn YY_ATTRIBUTE ((__noreturn__))
|
|
|
|
# endif
|
|
|
|
#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__ && 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. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYFINAL 48
|
2015-12-23 17:02:45 +01:00
|
|
|
/* YYLAST -- Last index in YYTABLE. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYLAST 457
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYNTOKENS 151
|
2015-12-23 17:02:45 +01:00
|
|
|
/* YYNNTS -- Number of nonterminals. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYNNTS 76
|
2015-12-23 17:02:45 +01:00
|
|
|
/* YYNRULES -- Number of rules. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYNRULES 172
|
2015-12-23 17:02:45 +01:00
|
|
|
/* YYNSTATES -- Number of states. */
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYNSTATES 322
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
|
|
|
|
by yylex, with out-of-bounds checking. */
|
|
|
|
#define YYUNDEFTOK 2
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYMAXUTOK 385
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
#define YYTRANSLATE(YYX) \
|
|
|
|
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
|
|
|
|
|
|
|
|
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
|
|
|
|
as returned by yylex, without out-of-bounds checking. */
|
|
|
|
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,
|
2017-03-08 20:36:06 +01:00
|
|
|
2, 2, 2, 2, 2, 2, 2, 137, 2, 2,
|
|
|
|
142, 143, 135, 133, 149, 134, 144, 136, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 146, 145,
|
|
|
|
128, 126, 129, 150, 2, 2, 2, 2, 2, 2,
|
2015-12-23 17:02:45 +01:00
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
2017-03-08 20:36:06 +01:00
|
|
|
2, 140, 2, 141, 138, 2, 2, 2, 2, 2,
|
2015-12-23 17:02:45 +01:00
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
2017-03-08 20:36:06 +01:00
|
|
|
2, 2, 2, 147, 2, 148, 2, 2, 2, 2,
|
2015-12-23 17:02:45 +01:00
|
|
|
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,
|
2017-03-08 20:36:06 +01:00
|
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
|
|
125, 127, 130, 131, 132, 139
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#if HSQL_DEBUG
|
|
|
|
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
|
|
|
|
static const yytype_uint16 yyrline[] =
|
|
|
|
{
|
2017-04-07 16:26:20 +02:00
|
|
|
0, 240, 240, 251, 252, 256, 261, 266, 267, 268,
|
|
|
|
269, 270, 271, 272, 273, 274, 282, 287, 299, 303,
|
|
|
|
315, 323, 327, 337, 343, 349, 359, 360, 364, 365,
|
|
|
|
369, 376, 377, 378, 379, 389, 393, 397, 409, 417,
|
|
|
|
429, 435, 445, 446, 456, 465, 466, 470, 482, 483,
|
|
|
|
487, 488, 492, 502, 516, 530, 531, 532, 536, 548,
|
|
|
|
549, 553, 557, 562, 563, 567, 572, 576, 577, 580,
|
|
|
|
581, 585, 586, 590, 594, 595, 596, 602, 603, 607,
|
|
|
|
608, 609, 616, 617, 621, 622, 626, 633, 634, 635,
|
|
|
|
636, 637, 638, 642, 643, 644, 645, 646, 647, 651,
|
|
|
|
652, 653, 657, 658, 662, 663, 664, 665, 666, 667,
|
|
|
|
668, 669, 670, 674, 675, 679, 680, 681, 682, 687,
|
|
|
|
691, 692, 696, 697, 698, 699, 700, 701, 705, 709,
|
|
|
|
713, 714, 718, 719, 720, 724, 729, 730, 734, 738,
|
|
|
|
742, 753, 754, 764, 765, 771, 776, 777, 782, 792,
|
|
|
|
800, 801, 806, 807, 811, 812, 820, 832, 833, 834,
|
|
|
|
835, 836, 837, 838, 839, 840, 846, 852, 856, 865,
|
|
|
|
866, 871, 872
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
#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", "NOTEQUALS", "LESSEQ", "GREATEREQ", "DEALLOCATE", "PARAMETERS",
|
|
|
|
"INTERSECT", "TEMPORARY", "TIMESTAMP", "DISTINCT", "NVARCHAR",
|
|
|
|
"RESTRICT", "TRUNCATE", "ANALYZE", "BETWEEN", "CASCADE", "COLUMNS",
|
|
|
|
"CONTROL", "DEFAULT", "EXECUTE", "EXPLAIN", "HISTORY", "INTEGER",
|
|
|
|
"NATURAL", "PREPARE", "PRIMARY", "SCHEMAS", "SPATIAL", "VIRTUAL",
|
|
|
|
"BEFORE", "COLUMN", "CREATE", "DELETE", "DIRECT", "DOUBLE", "ESCAPE",
|
|
|
|
"EXCEPT", "EXISTS", "GLOBAL", "HAVING", "IMPORT", "INSERT", "ISNULL",
|
|
|
|
"OFFSET", "RENAME", "SCHEMA", "SELECT", "SORTED", "TABLES", "UNIQUE",
|
|
|
|
"UNLOAD", "UPDATE", "VALUES", "AFTER", "ALTER", "CROSS", "DELTA",
|
|
|
|
"GROUP", "INDEX", "INNER", "LIMIT", "LOCAL", "MERGE", "MINUS", "ORDER",
|
2017-03-08 20:36:06 +01:00
|
|
|
"OUTER", "RIGHT", "TABLE", "UNION", "USING", "WHERE", "CALL", "CASE",
|
|
|
|
"DATE", "DESC", "DROP", "ELSE", "FILE", "FROM", "FULL", "HASH", "HINT",
|
|
|
|
"INTO", "JOIN", "LEFT", "LIKE", "LOAD", "NULL", "PART", "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", "'='",
|
|
|
|
"EQUALS", "'<'", "'>'", "LESS", "GREATER", "NOTNULL", "'+'", "'-'",
|
|
|
|
"'*'", "'/'", "'%'", "'^'", "UMINUS", "'['", "']'", "'('", "')'", "'.'",
|
|
|
|
"';'", "':'", "'{'", "'}'", "','", "'?'", "$accept", "input",
|
|
|
|
"statement_list", "statement", "preparable_statement",
|
|
|
|
"prepare_statement", "execute_statement", "import_statement",
|
|
|
|
"import_file_type", "file_path", "create_statement", "opt_not_exists",
|
|
|
|
"column_def_commalist", "column_def", "column_type", "drop_statement",
|
|
|
|
"delete_statement", "truncate_statement", "insert_statement",
|
|
|
|
"opt_column_list", "update_statement", "update_clause_commalist",
|
|
|
|
"update_clause", "select_statement", "select_with_paren",
|
|
|
|
"select_no_paren", "set_operator", "select_clause", "opt_distinct",
|
|
|
|
"select_list", "from_clause", "opt_where", "opt_group", "opt_having",
|
|
|
|
"opt_order", "order_list", "order_desc", "opt_order_type", "opt_top",
|
|
|
|
"opt_limit", "expr_list", "literal_list", "expr_alias", "expr",
|
|
|
|
"operand", "scalar_expr", "unary_expr", "binary_expr", "logic_expr",
|
|
|
|
"in_expr", "case_expr", "exists_expr", "comp_expr", "function_expr",
|
|
|
|
"between_expr", "column_name", "literal", "string_literal",
|
|
|
|
"num_literal", "int_literal", "star_expr", "placeholder_expr",
|
|
|
|
"table_ref", "table_ref_atomic", "table_ref_commalist", "table_ref_name",
|
|
|
|
"table_ref_name_no_alias", "table_name", "alias", "opt_alias",
|
|
|
|
"join_clause", "opt_join_type", "join_table", "join_condition",
|
|
|
|
"opt_semicolon", "ident_commalist", YY_NULLPTR
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
#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,
|
2017-03-08 20:36:06 +01:00
|
|
|
375, 376, 377, 378, 379, 380, 61, 381, 60, 62,
|
|
|
|
382, 383, 384, 43, 45, 42, 47, 37, 94, 385,
|
|
|
|
91, 93, 40, 41, 46, 59, 58, 123, 125, 44,
|
|
|
|
63
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
# endif
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYPACT_NINF -248
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
#define yypact_value_is_default(Yystate) \
|
2017-03-08 20:36:06 +01:00
|
|
|
(!!((Yystate) == (-248)))
|
2015-12-23 17:02:45 +01:00
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
#define YYTABLE_NINF -168
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
#define yytable_value_is_error(Yytable_value) \
|
2017-03-08 20:36:06 +01:00
|
|
|
(!!((Yytable_value) == (-168)))
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
|
|
|
STATE-NUM. */
|
|
|
|
static const yytype_int16 yypact[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
169, 1, 53, 68, 91, -57, 19, 45, 38, 15,
|
|
|
|
53, 37, -37, 118, -7, -248, -248, -248, -248, -248,
|
|
|
|
-248, -248, -248, -248, -248, -248, -248, -248, -248, 66,
|
|
|
|
140, 32, -248, 5, 43, 27, 27, 53, 50, 53,
|
|
|
|
146, 154, 72, -248, 53, 53, 52, 59, -248, 169,
|
|
|
|
-248, -248, -248, 99, -248, -37, 156, -248, 216, 13,
|
|
|
|
202, 169, 116, 53, 53, 161, -248, 158, 102, -248,
|
|
|
|
-248, -248, 46, 242, -248, -248, -248, -248, -248, 46,
|
|
|
|
177, 177, 146, -248, -248, -248, -248, -248, -29, -248,
|
|
|
|
-248, -248, -248, -248, -248, -7, 215, -50, 102, 46,
|
|
|
|
-248, 256, 258, 55, -104, 120, 162, 63, 20, -248,
|
|
|
|
96, 185, 119, -248, 4, 164, -248, -248, -248, -248,
|
|
|
|
-248, -248, -248, -248, -248, -248, -248, -248, -248, 144,
|
|
|
|
-54, -248, 122, -248, 105, 156, 156, 224, -248, 13,
|
|
|
|
126, -248, 163, 274, 168, -69, 191, -248, -248, -26,
|
|
|
|
145, -248, 154, 283, 236, 46, 149, 20, 257, 30,
|
|
|
|
160, 6, 2, 161, 46, -248, 46, 302, 46, -248,
|
|
|
|
-248, 20, 20, 20, 20, 20, -61, 167, 20, 20,
|
|
|
|
20, 20, 20, 20, 20, 20, 20, 13, 242, -248,
|
|
|
|
46, -248, -248, -248, -248, -248, 146, -248, -248, 223,
|
|
|
|
25, -16, -248, -37, 53, -248, 320, 13, 46, -248,
|
|
|
|
181, -63, 236, 234, -248, -248, -37, -248, 178, 153,
|
|
|
|
8, -248, 367, 263, -248, -248, -248, 226, 273, 286,
|
|
|
|
286, 184, 273, 20, 186, 96, 273, 286, 286, 30,
|
|
|
|
30, 192, 192, 192, -248, -248, -248, -248, -248, 256,
|
|
|
|
-248, -248, -248, -248, -248, -248, 274, -248, -248, -248,
|
|
|
|
7, 10, -248, 20, 193, 195, 2, -248, -248, -248,
|
|
|
|
-248, -248, 268, 269, 240, 227, -248, 20, 273, 96,
|
|
|
|
198, 34, -248, -248, -248, -248, 225, -248, 8, -248,
|
|
|
|
194, -248, -248, 3, 46, 257, 199, 60, -248, -248,
|
|
|
|
20, 243, -248, 2, -37, -248, 211, -33, -248, -248,
|
|
|
|
244, -248, 203, 46, 46, -248, -248, 8, -69, -248,
|
|
|
|
-69, -248
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* 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[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 78,
|
|
|
|
0, 0, 0, 0, 170, 3, 6, 5, 15, 8,
|
|
|
|
9, 14, 11, 12, 10, 13, 7, 48, 49, 70,
|
|
|
|
0, 150, 39, 18, 0, 27, 27, 0, 0, 0,
|
|
|
|
0, 60, 0, 149, 0, 0, 0, 0, 1, 169,
|
|
|
|
2, 56, 57, 0, 55, 0, 81, 37, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 64, 21, 0, 43, 138,
|
|
|
|
77, 59, 0, 0, 35, 36, 51, 50, 4, 0,
|
|
|
|
70, 70, 0, 52, 151, 135, 136, 140, 0, 84,
|
|
|
|
132, 133, 137, 134, 16, 170, 0, 0, 43, 0,
|
|
|
|
38, 0, 0, 0, 130, 0, 0, 0, 0, 139,
|
|
|
|
0, 0, 61, 82, 155, 87, 94, 95, 96, 89,
|
|
|
|
92, 91, 90, 104, 97, 88, 99, 101, 100, 0,
|
|
|
|
64, 45, 69, 71, 76, 81, 81, 79, 19, 0,
|
|
|
|
0, 26, 0, 0, 0, 63, 0, 22, 171, 0,
|
|
|
|
0, 41, 60, 0, 0, 0, 0, 0, 103, 102,
|
|
|
|
0, 0, 0, 64, 0, 153, 0, 0, 0, 154,
|
|
|
|
86, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
|
|
|
0, 75, 74, 73, 54, 53, 0, 85, 17, 0,
|
|
|
|
0, 0, 28, 0, 0, 42, 0, 0, 0, 131,
|
|
|
|
0, 0, 0, 0, 98, 93, 0, 62, 141, 143,
|
|
|
|
155, 145, 165, 66, 83, 113, 152, 114, 123, 126,
|
|
|
|
127, 0, 111, 0, 0, 0, 122, 124, 125, 106,
|
|
|
|
105, 108, 107, 109, 110, 47, 46, 72, 80, 0,
|
|
|
|
32, 33, 34, 31, 30, 24, 0, 25, 20, 172,
|
|
|
|
0, 0, 120, 0, 0, 0, 0, 148, 164, 163,
|
|
|
|
157, 158, 162, 161, 0, 0, 58, 0, 112, 0,
|
|
|
|
0, 0, 23, 29, 40, 128, 0, 121, 155, 146,
|
|
|
|
142, 160, 159, 0, 0, 129, 0, 0, 117, 115,
|
|
|
|
0, 154, 144, 0, 0, 167, 0, 68, 118, 116,
|
|
|
|
0, 147, 0, 0, 0, 65, 119, 0, 168, 156,
|
|
|
|
67, 166
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
|
|
static const yytype_int16 yypgoto[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
-248, -248, 288, 298, 290, -248, -248, -248, -248, 106,
|
|
|
|
-248, 321, -248, 109, -248, -248, -248, -248, -248, 270,
|
|
|
|
-248, -248, 179, -189, 42, -12, -248, 311, 219, -248,
|
|
|
|
-248, -101, -248, -248, 176, -248, 197, -248, -248, -88,
|
|
|
|
-175, 182, 210, -78, -99, -248, -248, -248, -248, -248,
|
|
|
|
-248, -248, -248, -248, -248, -248, -46, -98, -248, -36,
|
|
|
|
-248, -248, -248, -246, -248, 82, -248, 0, -247, -192,
|
|
|
|
-248, -248, 83, -248, 289, -248
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
|
|
static const yytype_int16 yydefgoto[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
-1, 13, 14, 15, 16, 17, 18, 19, 67, 146,
|
|
|
|
20, 63, 201, 202, 254, 21, 22, 23, 24, 103,
|
|
|
|
25, 130, 131, 26, 27, 28, 55, 29, 72, 111,
|
|
|
|
163, 100, 276, 315, 56, 132, 133, 193, 41, 83,
|
|
|
|
112, 88, 113, 114, 115, 116, 117, 118, 119, 120,
|
|
|
|
121, 122, 123, 124, 125, 126, 127, 90, 91, 92,
|
|
|
|
128, 93, 217, 218, 290, 219, 42, 220, 169, 170,
|
|
|
|
221, 274, 222, 319, 50, 149
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* 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[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
47, 134, 32, 147, 70, 31, 31, 165, 158, 159,
|
|
|
|
43, 165, 314, 89, 257, 9, 35, 85, 86, 69,
|
|
|
|
289, 145, 99, 104, 85, 86, 69, 265, 267, 189,
|
|
|
|
233, 30, 161, 261, 142, 263, 166, 65, 152, 68,
|
|
|
|
153, 301, 166, 36, 74, 75, 137, 194, 195, 104,
|
|
|
|
85, 86, 69, 250, 46, 168, 31, 311, 158, 234,
|
|
|
|
281, 168, 223, 97, 98, 251, 104, 85, 86, 69,
|
|
|
|
321, 33, 228, 229, 230, 231, 232, 211, 51, 236,
|
|
|
|
237, 238, 239, 240, 241, 242, 243, 244, 225, 105,
|
|
|
|
227, 151, 143, 197, 34, 188, 302, 80, 160, 104,
|
|
|
|
85, 86, 69, 37, 297, 12, 156, 9, 52, 166,
|
|
|
|
44, 166, 134, 150, 138, 312, 164, 205, 48, 307,
|
|
|
|
139, 167, 252, 206, 106, 167, 39, 255, 168, 38,
|
|
|
|
168, 40, 157, 256, 278, 253, 53, 45, 49, 105,
|
|
|
|
54, 245, 210, 57, 216, 304, 62, 59, 9, 215,
|
|
|
|
284, 147, 69, 285, 108, 109, 139, 66, 107, 164,
|
|
|
|
248, 89, 110, 87, 286, 183, 184, 185, 186, 71,
|
|
|
|
87, 171, 172, 173, 106, 157, 58, 299, 295, 1,
|
|
|
|
108, 109, -167, 164, 174, 191, 73, 2, 110, 60,
|
|
|
|
61, 171, 172, 173, 3, 76, 87, 108, 109, 4,
|
|
|
|
264, 310, 77, 309, 258, 110, 5, 6, 107, 164,
|
|
|
|
166, 192, 1, 87, -167, 7, 8, 79, -167, 84,
|
|
|
|
2, 9, 82, 280, -167, -167, 10, 3, 96, 168,
|
|
|
|
108, 109, 171, 172, 173, 318, 320, 99, 110, 5,
|
|
|
|
6, 101, -167, -167, 102, 129, 87, 53, 7, 8,
|
|
|
|
11, 171, 172, 173, 9, 175, 135, 136, 141, 10,
|
|
|
|
85, 148, 154, 155, 171, 172, 173, 296, 164, 162,
|
|
|
|
187, 190, -166, 196, 198, 175, 176, 200, 199, 204,
|
|
|
|
171, 172, 173, 11, 177, 203, 209, 207, 9, 277,
|
|
|
|
178, 212, 179, 180, -168, -168, 213, 181, 182, 183,
|
|
|
|
184, 185, 186, 214, -166, 226, 249, 300, -166, 235,
|
|
|
|
178, 12, 179, 180, -166, -166, 175, 181, 182, 183,
|
|
|
|
184, 185, 186, 259, 262, 233, 275, 266, 279, 293,
|
|
|
|
186, 166, -166, -166, 313, 175, 287, 213, 288, 291,
|
|
|
|
292, 298, 308, 303, 12, 294, 317, 78, 175, 95,
|
|
|
|
94, 178, 316, 179, 180, 282, 213, 64, 181, 182,
|
|
|
|
183, 184, 185, 186, 175, 283, 81, 246, 144, 213,
|
|
|
|
178, 208, 179, 180, 224, 305, 306, 181, 182, 183,
|
|
|
|
184, 185, 186, 178, 140, 179, 180, 247, 0, 260,
|
|
|
|
181, 182, 183, 184, 185, 186, 268, 0, 0, 178,
|
|
|
|
0, 179, 180, 0, 0, 0, 181, 182, 183, 184,
|
|
|
|
185, 186, 0, 0, -168, -168, 0, 0, 0, 181,
|
|
|
|
182, 183, 184, 185, 186, 0, 0, 0, 269, 0,
|
|
|
|
0, 0, 270, 0, 0, 0, 0, 0, 271, 272,
|
2015-12-23 17:02:45 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2017-03-08 20:36:06 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 273
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
12, 79, 2, 101, 40, 3, 3, 3, 107, 108,
|
|
|
|
10, 3, 45, 59, 203, 52, 73, 4, 5, 6,
|
|
|
|
266, 99, 76, 3, 4, 5, 6, 216, 220, 130,
|
|
|
|
91, 30, 110, 208, 84, 98, 105, 37, 142, 39,
|
|
|
|
144, 288, 105, 100, 44, 45, 82, 135, 136, 3,
|
|
|
|
4, 5, 6, 28, 12, 124, 3, 303, 157, 120,
|
|
|
|
235, 124, 163, 63, 64, 40, 3, 4, 5, 6,
|
|
|
|
317, 3, 171, 172, 173, 174, 175, 155, 12, 178,
|
|
|
|
179, 180, 181, 182, 183, 184, 185, 186, 166, 43,
|
|
|
|
168, 103, 142, 139, 3, 149, 288, 55, 110, 3,
|
|
|
|
4, 5, 6, 84, 279, 142, 43, 52, 42, 105,
|
|
|
|
73, 105, 190, 58, 143, 304, 149, 143, 0, 294,
|
|
|
|
149, 117, 97, 149, 78, 117, 88, 143, 124, 84,
|
|
|
|
124, 116, 112, 149, 233, 110, 70, 100, 145, 43,
|
|
|
|
74, 187, 154, 3, 142, 142, 119, 142, 52, 143,
|
|
|
|
143, 249, 6, 143, 134, 135, 149, 107, 112, 149,
|
|
|
|
196, 207, 142, 150, 263, 135, 136, 137, 138, 15,
|
|
|
|
150, 7, 8, 9, 78, 112, 144, 143, 277, 10,
|
|
|
|
134, 135, 29, 149, 20, 80, 114, 18, 142, 146,
|
|
|
|
147, 7, 8, 9, 25, 143, 150, 134, 135, 30,
|
|
|
|
212, 300, 143, 143, 204, 142, 37, 38, 112, 149,
|
|
|
|
105, 106, 10, 150, 61, 46, 47, 118, 65, 3,
|
|
|
|
18, 52, 66, 235, 71, 72, 57, 25, 112, 124,
|
|
|
|
134, 135, 7, 8, 9, 313, 314, 76, 142, 37,
|
|
|
|
38, 83, 89, 90, 142, 3, 150, 70, 46, 47,
|
|
|
|
81, 7, 8, 9, 52, 91, 80, 81, 43, 57,
|
|
|
|
4, 3, 142, 101, 7, 8, 9, 279, 149, 84,
|
|
|
|
126, 149, 29, 49, 148, 91, 112, 3, 115, 88,
|
|
|
|
7, 8, 9, 81, 120, 117, 3, 142, 52, 105,
|
|
|
|
126, 142, 128, 129, 8, 9, 112, 133, 134, 135,
|
|
|
|
136, 137, 138, 143, 61, 3, 83, 82, 65, 142,
|
|
|
|
126, 142, 128, 129, 71, 72, 91, 133, 134, 135,
|
|
|
|
136, 137, 138, 3, 143, 91, 63, 149, 142, 89,
|
|
|
|
138, 105, 89, 90, 123, 91, 143, 112, 143, 71,
|
|
|
|
71, 143, 143, 149, 142, 118, 143, 49, 91, 61,
|
|
|
|
60, 126, 108, 128, 129, 249, 112, 36, 133, 134,
|
|
|
|
135, 136, 137, 138, 91, 256, 55, 188, 98, 112,
|
|
|
|
126, 152, 128, 129, 164, 293, 293, 133, 134, 135,
|
|
|
|
136, 137, 138, 126, 95, 128, 129, 190, -1, 207,
|
|
|
|
133, 134, 135, 136, 137, 138, 29, -1, -1, 126,
|
|
|
|
-1, 128, 129, -1, -1, -1, 133, 134, 135, 136,
|
|
|
|
137, 138, -1, -1, 128, 129, -1, -1, -1, 133,
|
|
|
|
134, 135, 136, 137, 138, -1, -1, -1, 61, -1,
|
|
|
|
-1, -1, 65, -1, -1, -1, -1, -1, 71, 72,
|
2015-12-23 17:02:45 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2017-03-08 20:36:06 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, 90
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
|
|
symbol of state STATE-NUM. */
|
|
|
|
static const yytype_uint8 yystos[] =
|
|
|
|
{
|
|
|
|
0, 10, 18, 25, 30, 37, 38, 46, 47, 52,
|
2017-03-08 20:36:06 +01:00
|
|
|
57, 81, 142, 152, 153, 154, 155, 156, 157, 158,
|
|
|
|
161, 166, 167, 168, 169, 171, 174, 175, 176, 178,
|
|
|
|
30, 3, 218, 3, 3, 73, 100, 84, 84, 88,
|
|
|
|
116, 189, 217, 218, 73, 100, 175, 176, 0, 145,
|
|
|
|
225, 12, 42, 70, 74, 177, 185, 3, 144, 142,
|
|
|
|
146, 147, 119, 162, 162, 218, 107, 159, 218, 6,
|
|
|
|
210, 15, 179, 114, 218, 218, 143, 143, 154, 118,
|
|
|
|
175, 178, 66, 190, 3, 4, 5, 150, 192, 207,
|
|
|
|
208, 209, 210, 212, 155, 153, 112, 218, 218, 76,
|
|
|
|
182, 83, 142, 170, 3, 43, 78, 112, 134, 135,
|
|
|
|
142, 180, 191, 193, 194, 195, 196, 197, 198, 199,
|
|
|
|
200, 201, 202, 203, 204, 205, 206, 207, 211, 3,
|
|
|
|
172, 173, 186, 187, 194, 185, 185, 210, 143, 149,
|
|
|
|
225, 43, 84, 142, 170, 194, 160, 208, 3, 226,
|
|
|
|
58, 176, 142, 144, 142, 101, 43, 112, 195, 195,
|
|
|
|
176, 194, 84, 181, 149, 3, 105, 117, 124, 219,
|
|
|
|
220, 7, 8, 9, 20, 91, 112, 120, 126, 128,
|
|
|
|
129, 133, 134, 135, 136, 137, 138, 126, 149, 182,
|
|
|
|
149, 80, 106, 188, 190, 190, 49, 207, 148, 115,
|
|
|
|
3, 163, 164, 117, 88, 143, 149, 142, 179, 3,
|
|
|
|
176, 194, 142, 112, 143, 143, 142, 213, 214, 216,
|
|
|
|
218, 221, 223, 182, 193, 194, 3, 194, 195, 195,
|
|
|
|
195, 195, 195, 91, 120, 142, 195, 195, 195, 195,
|
|
|
|
195, 195, 195, 195, 195, 207, 173, 187, 210, 83,
|
|
|
|
28, 40, 97, 110, 165, 143, 149, 174, 218, 3,
|
|
|
|
192, 191, 143, 98, 176, 174, 149, 220, 29, 61,
|
|
|
|
65, 71, 72, 90, 222, 63, 183, 105, 195, 142,
|
|
|
|
176, 191, 160, 164, 143, 143, 195, 143, 143, 214,
|
|
|
|
215, 71, 71, 89, 118, 195, 176, 191, 143, 143,
|
|
|
|
82, 219, 220, 149, 142, 216, 223, 191, 143, 143,
|
|
|
|
195, 214, 174, 123, 45, 184, 108, 143, 194, 224,
|
|
|
|
194, 219
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
|
|
static const yytype_uint8 yyr1[] =
|
|
|
|
{
|
2017-03-08 20:36:06 +01:00
|
|
|
0, 151, 152, 153, 153, 154, 154, 155, 155, 155,
|
|
|
|
155, 155, 155, 155, 155, 155, 156, 156, 157, 157,
|
|
|
|
158, 159, 160, 161, 161, 161, 162, 162, 163, 163,
|
|
|
|
164, 165, 165, 165, 165, 166, 166, 166, 167, 168,
|
|
|
|
169, 169, 170, 170, 171, 172, 172, 173, 174, 174,
|
|
|
|
175, 175, 176, 176, 176, 177, 177, 177, 178, 179,
|
|
|
|
179, 180, 181, 182, 182, 183, 183, 184, 184, 185,
|
|
|
|
185, 186, 186, 187, 188, 188, 188, 189, 189, 190,
|
|
|
|
190, 190, 191, 191, 192, 192, 193, 194, 194, 194,
|
|
|
|
194, 194, 194, 195, 195, 195, 195, 195, 195, 196,
|
|
|
|
196, 196, 197, 197, 198, 198, 198, 198, 198, 198,
|
|
|
|
198, 198, 198, 199, 199, 200, 200, 200, 200, 201,
|
|
|
|
202, 202, 203, 203, 203, 203, 203, 203, 204, 205,
|
|
|
|
206, 206, 207, 207, 207, 208, 209, 209, 210, 211,
|
|
|
|
212, 213, 213, 214, 214, 214, 215, 215, 216, 217,
|
|
|
|
218, 218, 219, 219, 220, 220, 221, 222, 222, 222,
|
|
|
|
222, 222, 222, 222, 222, 222, 223, 223, 224, 225,
|
|
|
|
225, 226, 226
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
|
|
|
|
static const yytype_uint8 yyr2[] =
|
|
|
|
{
|
|
|
|
0, 2, 2, 1, 3, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 4, 6, 2, 5,
|
2017-03-08 20:36:06 +01:00
|
|
|
7, 1, 1, 8, 7, 7, 3, 0, 1, 3,
|
|
|
|
2, 1, 1, 1, 1, 3, 3, 3, 4, 2,
|
|
|
|
8, 5, 3, 0, 5, 1, 3, 3, 1, 1,
|
|
|
|
3, 3, 3, 5, 5, 1, 1, 1, 7, 1,
|
|
|
|
0, 1, 2, 2, 0, 4, 0, 2, 0, 3,
|
|
|
|
0, 1, 3, 2, 1, 1, 0, 2, 0, 2,
|
|
|
|
4, 0, 1, 3, 1, 3, 2, 1, 1, 1,
|
|
|
|
1, 1, 1, 3, 1, 1, 1, 1, 3, 1,
|
|
|
|
1, 1, 2, 2, 1, 3, 3, 3, 3, 3,
|
|
|
|
3, 3, 4, 3, 3, 5, 6, 5, 6, 8,
|
|
|
|
4, 5, 3, 3, 3, 3, 3, 3, 5, 5,
|
|
|
|
1, 3, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 3, 1, 4, 1, 1, 3, 2, 1,
|
|
|
|
1, 3, 2, 1, 1, 0, 6, 1, 1, 2,
|
|
|
|
2, 1, 1, 1, 1, 0, 4, 1, 1, 1,
|
|
|
|
0, 1, 3
|
2015-12-23 17:02:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#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 unsigned
|
|
|
|
yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp)
|
|
|
|
{
|
|
|
|
unsigned 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 YYOUTPUT. |
|
|
|
|
`----------------------------------------*/
|
|
|
|
|
|
|
|
static void
|
2017-04-07 16:26:20 +02:00
|
|
|
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
FILE *yyo = yyoutput;
|
|
|
|
YYUSE (yyo);
|
|
|
|
YYUSE (yylocationp);
|
|
|
|
YYUSE (result);
|
|
|
|
YYUSE (scanner);
|
|
|
|
if (!yyvaluep)
|
|
|
|
return;
|
|
|
|
# ifdef YYPRINT
|
|
|
|
if (yytype < YYNTOKENS)
|
|
|
|
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
|
|
|
|
# endif
|
|
|
|
YYUSE (yytype);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------.
|
|
|
|
| Print this symbol on YYOUTPUT. |
|
|
|
|
`--------------------------------*/
|
|
|
|
|
|
|
|
static void
|
2017-04-07 16:26:20 +02:00
|
|
|
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
YYFPRINTF (yyoutput, "%s %s (",
|
|
|
|
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
|
|
|
|
|
|
|
|
YY_LOCATION_PRINT (yyoutput, *yylocationp);
|
|
|
|
YYFPRINTF (yyoutput, ": ");
|
|
|
|
yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp, result, scanner);
|
|
|
|
YYFPRINTF (yyoutput, ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------.
|
|
|
|
| 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
|
2017-04-07 16:26:20 +02:00
|
|
|
yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule, hsql::SQLParserResult* result, yyscan_t scanner)
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
unsigned long int 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;
|
|
|
|
/* Fall through. */
|
|
|
|
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 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))
|
|
|
|
return 2;
|
|
|
|
yysize = yysize1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (yycount)
|
|
|
|
{
|
|
|
|
# define YYCASE_(N, S) \
|
|
|
|
case N: \
|
|
|
|
yyformat = S; \
|
|
|
|
break
|
|
|
|
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))
|
|
|
|
return 2;
|
|
|
|
yysize = yysize1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2017-04-07 16:26:20 +02:00
|
|
|
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, hsql::SQLParserResult* result, yyscan_t scanner)
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
YYUSE (yyvaluep);
|
|
|
|
YYUSE (yylocationp);
|
|
|
|
YYUSE (result);
|
|
|
|
YYUSE (scanner);
|
|
|
|
if (!yymsg)
|
|
|
|
yymsg = "Deleting";
|
|
|
|
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
|
|
|
|
|
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
2017-02-08 04:56:07 +01:00
|
|
|
switch (yytype)
|
|
|
|
{
|
|
|
|
case 3: /* IDENTIFIER */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1578 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: /* STRING */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1584 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: /* FLOATVAL */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1590 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: /* INTVAL */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1596 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: /* NOTEQUALS */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1602 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 8: /* LESSEQ */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1608 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 9: /* GREATEREQ */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1614 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 153: /* statement_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
|
|
|
{
|
|
|
|
if ((((*yyvaluep).stmt_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).stmt_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete (((*yyvaluep).stmt_vec));
|
|
|
|
}
|
|
|
|
#line 1627 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 154: /* statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).statement)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1633 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 155: /* preparable_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).statement)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1639 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 156: /* prepare_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).prep_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1645 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 157: /* execute_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).exec_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1651 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 158: /* import_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).import_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1657 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 159: /* import_file_type */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1663 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 160: /* file_path */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1669 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 161: /* create_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).create_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1675 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 162: /* opt_not_exists */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1681 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 163: /* column_def_commalist */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).column_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).column_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).column_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1694 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 164: /* column_def */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).column_t)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1700 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 165: /* column_type */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1706 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 166: /* drop_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).drop_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1712 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 167: /* delete_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).delete_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1718 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 168: /* truncate_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).delete_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1724 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 169: /* insert_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).insert_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1730 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 170: /* opt_column_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).str_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).str_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).str_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1743 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 171: /* update_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).update_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1749 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 172: /* update_clause_commalist */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).update_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).update_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).update_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1762 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 173: /* update_clause */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).update_t)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1768 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 174: /* select_statement */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1774 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 175: /* select_with_paren */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1780 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 176: /* select_no_paren */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1786 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 178: /* select_clause */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1792 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 179: /* opt_distinct */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1798 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 180: /* select_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).expr_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).expr_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).expr_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1811 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 181: /* from_clause */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1817 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 182: /* opt_where */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1823 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 183: /* opt_group */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).group_t)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1829 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 184: /* opt_having */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1835 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 185: /* opt_order */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{
|
|
|
|
if ((((*yyvaluep).order_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).order_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete (((*yyvaluep).order_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1848 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 186: /* order_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{
|
|
|
|
if ((((*yyvaluep).order_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).order_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete (((*yyvaluep).order_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1861 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 187: /* order_desc */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).order)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1867 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 188: /* opt_order_type */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1873 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 189: /* opt_top */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).limit)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1879 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 190: /* opt_limit */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).limit)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1885 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 191: /* expr_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).expr_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).expr_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).expr_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1898 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 192: /* literal_list */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).expr_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).expr_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).expr_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1911 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 193: /* expr_alias */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1917 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 194: /* expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1923 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 195: /* operand */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1929 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 196: /* scalar_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1935 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 197: /* unary_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1941 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 198: /* binary_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1947 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 199: /* logic_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1953 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 200: /* in_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1959 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 201: /* case_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1965 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 202: /* exists_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1971 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 203: /* comp_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1977 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 204: /* function_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1983 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 205: /* between_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1989 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 206: /* column_name */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 1995 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 207: /* literal */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2001 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 208: /* string_literal */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2007 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 209: /* num_literal */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2013 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 210: /* int_literal */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2019 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 211: /* star_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2025 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 212: /* placeholder_expr */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2031 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 213: /* table_ref */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2037 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 214: /* table_ref_atomic */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2043 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 215: /* table_ref_commalist */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).table_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).table_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).table_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2056 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 216: /* table_ref_name */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2062 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 217: /* table_ref_name_no_alias */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2068 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 218: /* table_name */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2074 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 219: /* alias */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2080 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 220: /* opt_alias */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 137 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ free( (((*yyvaluep).sval)) ); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2086 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 221: /* join_clause */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2092 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 222: /* opt_join_type */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 136 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2098 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 223: /* join_table */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2104 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 224: /* join_condition */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 146 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{ delete (((*yyvaluep).expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2110 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 226: /* ident_commalist */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 138 "bison_parser.y" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
{
|
2017-02-10 21:42:02 +01:00
|
|
|
if ((((*yyvaluep).str_vec)) != NULL) {
|
|
|
|
for (auto ptr : *(((*yyvaluep).str_vec))) {
|
|
|
|
delete ptr;
|
|
|
|
}
|
2017-02-08 04:56:07 +01:00
|
|
|
}
|
|
|
|
delete (((*yyvaluep).str_vec));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2123 "bison_parser.cpp" /* yacc.c:1257 */
|
2017-02-08 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-12-23 17:02:45 +01:00
|
|
|
YY_IGNORE_MAYBE_UNINITIALIZED_END
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------.
|
|
|
|
| yyparse. |
|
|
|
|
`----------*/
|
|
|
|
|
|
|
|
int
|
2017-04-07 16:26:20 +02:00
|
|
|
yyparse (hsql::SQLParserResult* result, yyscan_t scanner)
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
/* 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. */
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 73 "bison_parser.y" /* yacc.c:1429 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
// Initialize
|
|
|
|
yylloc.first_column = 0;
|
|
|
|
yylloc.last_column = 0;
|
|
|
|
yylloc.first_line = 0;
|
|
|
|
yylloc.last_line = 0;
|
|
|
|
yylloc.total_column = 0;
|
|
|
|
yylloc.placeholder_id = 0;
|
|
|
|
}
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2242 "bison_parser.cpp" /* yacc.c:1429 */
|
2015-12-23 17:02:45 +01:00
|
|
|
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++;
|
|
|
|
|
|
|
|
yysetstate:
|
|
|
|
*yyssp = yystate;
|
|
|
|
|
|
|
|
if (yyss + yystacksize - 1 <= yyssp)
|
|
|
|
{
|
|
|
|
/* Get the current used size of the three stacks, in elements. */
|
|
|
|
YYSIZE_T yysize = yyssp - yyss + 1;
|
|
|
|
|
|
|
|
#ifdef 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);
|
|
|
|
|
|
|
|
yyls = yyls1;
|
|
|
|
yyss = yyss1;
|
|
|
|
yyvs = yyvs1;
|
|
|
|
}
|
|
|
|
#else /* no yyoverflow */
|
|
|
|
# ifndef YYSTACK_RELOCATE
|
|
|
|
goto yyexhaustedlab;
|
|
|
|
# else
|
|
|
|
/* 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
|
|
|
|
#endif /* no yyoverflow */
|
|
|
|
|
|
|
|
yyssp = yyss + yysize - 1;
|
|
|
|
yyvsp = yyvs + yysize - 1;
|
|
|
|
yylsp = yyls + yysize - 1;
|
|
|
|
|
|
|
|
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
|
|
|
|
(unsigned long int) yystacksize));
|
|
|
|
|
|
|
|
if (yyss + yystacksize - 1 <= yyssp)
|
|
|
|
YYABORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
YY_REDUCE_PRINT (yyn);
|
|
|
|
switch (yyn)
|
|
|
|
{
|
|
|
|
case 2:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 240 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
2017-04-07 16:26:20 +02:00
|
|
|
for (SQLStatement* stmt : *(yyvsp[-1].stmt_vec)) {
|
|
|
|
// Transfers ownership of the statement.
|
|
|
|
result->addStatement(stmt);
|
|
|
|
}
|
|
|
|
delete (yyvsp[-1].stmt_vec);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2437 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 251 "bison_parser.y" /* yacc.c:1646 */
|
|
|
|
{ (yyval.stmt_vec) = new std::vector<SQLStatement*>(); (yyval.stmt_vec)->push_back((yyvsp[0].statement)); }
|
|
|
|
#line 2443 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 252 "bison_parser.y" /* yacc.c:1646 */
|
|
|
|
{ (yyvsp[-2].stmt_vec)->push_back((yyvsp[0].statement)); (yyval.stmt_vec) = (yyvsp[-2].stmt_vec); }
|
|
|
|
#line 2449 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 256 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyvsp[0].prep_stmt)->setPlaceholders(yyloc.placeholder_list);
|
|
|
|
yyloc.placeholder_list.clear();
|
|
|
|
(yyval.statement) = (yyvsp[0].prep_stmt);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2459 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 266 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].select_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2465 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 8:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 267 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].import_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2471 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 9:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 268 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].create_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2477 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 10:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 269 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].insert_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2483 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 11:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 270 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].delete_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2489 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 12:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 271 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].delete_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2495 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 13:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 272 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].update_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2501 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 14:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 273 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].drop_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2507 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 15:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 274 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.statement) = (yyvsp[0].exec_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2513 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 282 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.prep_stmt) = new PrepareStatement();
|
|
|
|
(yyval.prep_stmt)->name = (yyvsp[-2].sval);
|
2016-02-27 14:24:23 +01:00
|
|
|
(yyval.prep_stmt)->query = new SQLParserResult((yyvsp[0].statement));
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2523 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 17:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 287 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.prep_stmt) = new PrepareStatement();
|
|
|
|
(yyval.prep_stmt)->name = (yyvsp[-4].sval);
|
2017-04-07 16:26:20 +02:00
|
|
|
(yyval.prep_stmt)->query = new SQLParserResult();
|
|
|
|
for (SQLStatement* stmt : *(yyvsp[-2].stmt_vec)) {
|
|
|
|
(yyval.prep_stmt)->query->addStatement(stmt);
|
|
|
|
}
|
|
|
|
delete (yyvsp[-2].stmt_vec);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2537 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 18:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 299 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.exec_stmt) = new ExecuteStatement();
|
|
|
|
(yyval.exec_stmt)->name = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2546 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 19:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 303 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.exec_stmt) = new ExecuteStatement();
|
|
|
|
(yyval.exec_stmt)->name = (yyvsp[-3].sval);
|
|
|
|
(yyval.exec_stmt)->parameters = (yyvsp[-1].expr_vec);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2556 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 20:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 315 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.import_stmt) = new ImportStatement((ImportStatement::ImportType) (yyvsp[-4].uval));
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.import_stmt)->filePath = (yyvsp[-2].sval);
|
|
|
|
(yyval.import_stmt)->tableName = (yyvsp[0].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2566 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 21:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 323 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = ImportStatement::kImportCSV; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2572 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 22:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 327 "bison_parser.y" /* yacc.c:1646 */
|
2017-02-08 04:27:04 +01:00
|
|
|
{ (yyval.sval) = strdup((yyvsp[0].expr)->name); delete (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2578 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 23:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 337 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.create_stmt) = new CreateStatement(CreateStatement::kTableFromTbl);
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.create_stmt)->ifNotExists = (yyvsp[-5].bval);
|
|
|
|
(yyval.create_stmt)->tableName = (yyvsp[-4].sval);
|
|
|
|
(yyval.create_stmt)->filePath = (yyvsp[0].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2589 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 24:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 343 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.create_stmt) = new CreateStatement(CreateStatement::kTable);
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.create_stmt)->ifNotExists = (yyvsp[-4].bval);
|
|
|
|
(yyval.create_stmt)->tableName = (yyvsp[-3].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
(yyval.create_stmt)->columns = (yyvsp[-1].column_vec);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2600 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 25:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 349 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{
|
|
|
|
(yyval.create_stmt) = new CreateStatement(CreateStatement::kView);
|
|
|
|
(yyval.create_stmt)->ifNotExists = (yyvsp[-4].bval);
|
|
|
|
(yyval.create_stmt)->tableName = (yyvsp[-3].sval);
|
|
|
|
(yyval.create_stmt)->viewColumns = (yyvsp[-2].str_vec);
|
|
|
|
(yyval.create_stmt)->select = (yyvsp[0].select_stmt);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2612 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 26:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 359 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.bval) = true; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2618 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 27:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 360 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.bval) = false; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2624 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 28:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 364 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.column_vec) = new std::vector<ColumnDefinition*>(); (yyval.column_vec)->push_back((yyvsp[0].column_t)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2630 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 29:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 365 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyvsp[-2].column_vec)->push_back((yyvsp[0].column_t)); (yyval.column_vec) = (yyvsp[-2].column_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2636 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 30:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 369 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.column_t) = new ColumnDefinition((yyvsp[-1].sval), (ColumnDefinition::DataType) (yyvsp[0].uval));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2644 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 31:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 376 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = ColumnDefinition::INT; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2650 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 32:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 377 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = ColumnDefinition::INT; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2656 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 33:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 378 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = ColumnDefinition::DOUBLE; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2662 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 34:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 379 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = ColumnDefinition::TEXT; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2668 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 35:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 389 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.drop_stmt) = new DropStatement(DropStatement::kTable);
|
|
|
|
(yyval.drop_stmt)->name = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2677 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 36:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 393 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{
|
|
|
|
(yyval.drop_stmt) = new DropStatement(DropStatement::kView);
|
|
|
|
(yyval.drop_stmt)->name = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2686 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 37:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 397 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.drop_stmt) = new DropStatement(DropStatement::kPreparedStatement);
|
|
|
|
(yyval.drop_stmt)->name = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2695 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 38:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 409 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.delete_stmt) = new DeleteStatement();
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.delete_stmt)->tableName = (yyvsp[-1].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
(yyval.delete_stmt)->expr = (yyvsp[0].expr);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2705 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 39:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 417 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.delete_stmt) = new DeleteStatement();
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.delete_stmt)->tableName = (yyvsp[0].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2714 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 40:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 429 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.insert_stmt) = new InsertStatement(InsertStatement::kInsertValues);
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.insert_stmt)->tableName = (yyvsp[-5].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
(yyval.insert_stmt)->columns = (yyvsp[-4].str_vec);
|
|
|
|
(yyval.insert_stmt)->values = (yyvsp[-1].expr_vec);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2725 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 41:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 435 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.insert_stmt) = new InsertStatement(InsertStatement::kInsertSelect);
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.insert_stmt)->tableName = (yyvsp[-2].sval);
|
2015-12-23 17:02:45 +01:00
|
|
|
(yyval.insert_stmt)->columns = (yyvsp[-1].str_vec);
|
|
|
|
(yyval.insert_stmt)->select = (yyvsp[0].select_stmt);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2736 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 42:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 445 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.str_vec) = (yyvsp[-1].str_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2742 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 43:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 446 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.str_vec) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2748 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 44:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 456 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(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);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2759 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 45:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 465 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.update_vec) = new std::vector<UpdateClause*>(); (yyval.update_vec)->push_back((yyvsp[0].update_t)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2765 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 46:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 466 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyvsp[-2].update_vec)->push_back((yyvsp[0].update_t)); (yyval.update_vec) = (yyvsp[-2].update_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2771 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 47:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 470 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.update_t) = new UpdateClause();
|
|
|
|
(yyval.update_t)->column = (yyvsp[-2].sval);
|
|
|
|
(yyval.update_t)->value = (yyvsp[0].expr);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2781 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 50:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 487 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.select_stmt) = (yyvsp[-1].select_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2787 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 51:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 488 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.select_stmt) = (yyvsp[-1].select_stmt); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2793 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 52:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 492 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.select_stmt) = (yyvsp[-2].select_stmt);
|
2017-03-08 20:36:06 +01:00
|
|
|
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
|
|
|
|
|
|
|
|
// Limit could have been set by TOP.
|
|
|
|
if ((yyvsp[0].limit) != NULL) {
|
|
|
|
delete (yyval.select_stmt)->limit;
|
|
|
|
(yyval.select_stmt)->limit = (yyvsp[0].limit);
|
|
|
|
}
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2808 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 53:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 502 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
// 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);
|
2016-02-27 15:22:22 +01:00
|
|
|
(yyval.select_stmt)->unionSelect = (yyvsp[-2].select_stmt);
|
2017-03-08 20:36:06 +01:00
|
|
|
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
|
|
|
|
|
|
|
|
// Limit could have been set by TOP.
|
|
|
|
if ((yyvsp[0].limit) != NULL) {
|
|
|
|
delete (yyval.select_stmt)->limit;
|
|
|
|
(yyval.select_stmt)->limit = (yyvsp[0].limit);
|
|
|
|
}
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2827 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 54:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 516 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-07 02:01:00 +01:00
|
|
|
{
|
|
|
|
(yyval.select_stmt) = (yyvsp[-4].select_stmt);
|
|
|
|
(yyval.select_stmt)->unionSelect = (yyvsp[-2].select_stmt);
|
2017-03-08 20:36:06 +01:00
|
|
|
(yyval.select_stmt)->order = (yyvsp[-1].order_vec);
|
|
|
|
|
|
|
|
// Limit could have been set by TOP.
|
|
|
|
if ((yyvsp[0].limit) != NULL) {
|
|
|
|
delete (yyval.select_stmt)->limit;
|
|
|
|
(yyval.select_stmt)->limit = (yyvsp[0].limit);
|
|
|
|
}
|
2017-03-07 02:01:00 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2843 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-07 02:01:00 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 58:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 536 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.select_stmt) = new SelectStatement();
|
2017-03-08 20:36:06 +01:00
|
|
|
(yyval.select_stmt)->limit = (yyvsp[-5].limit);
|
2016-02-27 15:22:22 +01:00
|
|
|
(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);
|
2015-12-23 17:02:45 +01:00
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2857 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 59:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 548 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.bval) = true; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2863 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 60:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 549 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.bval) = false; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2869 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 62:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 557 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.table) = (yyvsp[0].table); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2875 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 63:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 562 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2881 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 64:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 563 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2887 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 65:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 567 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.group_t) = new GroupByDescription();
|
|
|
|
(yyval.group_t)->columns = (yyvsp[-1].expr_vec);
|
|
|
|
(yyval.group_t)->having = (yyvsp[0].expr);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2897 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 66:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 572 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.group_t) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2903 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 67:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 576 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2909 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 68:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 577 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2915 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 69:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 580 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.order_vec) = (yyvsp[0].order_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2921 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 70:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 581 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.order_vec) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2927 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 71:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 585 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.order_vec) = new std::vector<OrderDescription*>(); (yyval.order_vec)->push_back((yyvsp[0].order)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2933 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 72:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 586 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyvsp[-2].order_vec)->push_back((yyvsp[0].order)); (yyval.order_vec) = (yyvsp[-2].order_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2939 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 73:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 590 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.order) = new OrderDescription((yyvsp[0].order_type), (yyvsp[-1].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2945 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 74:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 594 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.order_type) = kOrderAsc; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2951 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 75:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 595 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.order_type) = kOrderDesc; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2957 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 76:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 596 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.order_type) = kOrderAsc; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2963 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 77:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 602 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.limit) = new LimitDescription((yyvsp[0].expr)->ival, kNoOffset); delete (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2969 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 78:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 603 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.limit) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2975 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 79:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 607 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.limit) = new LimitDescription((yyvsp[0].expr)->ival, kNoOffset); delete (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2981 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 80:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 608 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.limit) = new LimitDescription((yyvsp[-2].expr)->ival, (yyvsp[0].expr)->ival); delete (yyvsp[-2].expr); delete (yyvsp[0].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2987 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 81:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 609 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.limit) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2993 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 82:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 616 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr_vec) = new std::vector<Expr*>(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 2999 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 83:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 617 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3005 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 84:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 621 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr_vec) = new std::vector<Expr*>(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3011 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 85:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 622 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3017 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 86:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 626 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.expr) = (yyvsp[-1].expr);
|
|
|
|
(yyval.expr)->alias = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3026 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 93:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 642 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = (yyvsp[-1].expr); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3032 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 98:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 647 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeSelect((yyvsp[-1].select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3038 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 102:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 657 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpUnary(kOpMinus, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3044 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 103:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 658 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3050 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 105:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 663 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '-', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3056 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 106:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 664 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '+', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3062 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 107:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 665 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '/', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3068 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 108:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 666 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '*', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3074 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 109:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 667 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '%', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3080 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 110:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 668 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '^', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3086 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 111:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 669 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLike, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3092 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 112:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 670 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-3].expr), kOpNotLike, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3098 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 113:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 674 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpAnd, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3104 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 114:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 675 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpOr, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3110 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 115:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 679 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].expr_vec)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3116 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 116:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 680 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].expr_vec))); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3122 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 117:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 681 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3128 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 118:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 682 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].select_stmt))); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3134 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 119:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 687 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeCase((yyvsp[-5].expr), (yyvsp[-3].expr), (yyvsp[-1].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3140 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 120:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 691 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeExists((yyvsp[-1].select_stmt)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3146 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 121:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 692 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeExists((yyvsp[-1].select_stmt))); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3152 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 122:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 696 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '=', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3158 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 123:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 697 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpNotEquals, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3164 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 124:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 698 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '<', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3170 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 125:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 699 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), '>', (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3176 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 126:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 700 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLessEq, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3182 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 127:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 701 "bison_parser.y" /* yacc.c:1646 */
|
2017-04-06 18:28:22 +02:00
|
|
|
{ (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpGreaterEq, (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3188 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 128:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 705 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeFunctionRef((yyvsp[-4].sval), (yyvsp[-1].expr_vec), (yyvsp[-2].bval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3194 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 129:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 709 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.expr) = Expr::makeBetween((yyvsp[-4].expr), (yyvsp[-2].expr), (yyvsp[0].expr)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3200 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 130:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 713 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeColumnRef((yyvsp[0].sval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3206 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 131:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 714 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeColumnRef((yyvsp[-2].sval), (yyvsp[0].sval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3212 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 135:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 724 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].sval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3218 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 136:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 729 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].fval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3224 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 138:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 734 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = Expr::makeLiteral((yyvsp[0].ival)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3230 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 139:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 738 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.expr) = new Expr(kExprStar); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3236 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 140:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 742 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.expr) = Expr::makePlaceholder(yylloc.total_column);
|
|
|
|
yyloc.placeholder_list.push_back((yyval.expr));
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3245 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 142:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 754 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyvsp[0].table_vec)->push_back((yyvsp[-2].table));
|
|
|
|
auto tbl = new TableRef(kTableCrossProduct);
|
|
|
|
tbl->list = (yyvsp[0].table_vec);
|
|
|
|
(yyval.table) = tbl;
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3256 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 144:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 765 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
auto tbl = new TableRef(kTableSelect);
|
|
|
|
tbl->select = (yyvsp[-2].select_stmt);
|
|
|
|
tbl->alias = (yyvsp[0].sval);
|
|
|
|
(yyval.table) = tbl;
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3267 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 146:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 776 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.table_vec) = new std::vector<TableRef*>(); (yyval.table_vec)->push_back((yyvsp[0].table)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3273 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 147:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 777 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyvsp[-2].table_vec)->push_back((yyvsp[0].table)); (yyval.table_vec) = (yyvsp[-2].table_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3279 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 148:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 782 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
auto tbl = new TableRef(kTableName);
|
|
|
|
tbl->name = (yyvsp[-1].sval);
|
|
|
|
tbl->alias = (yyvsp[0].sval);
|
|
|
|
(yyval.table) = tbl;
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3290 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 149:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 792 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(yyval.table) = new TableRef(kTableName);
|
|
|
|
(yyval.table)->name = (yyvsp[0].sval);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3299 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 152:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 806 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.sval) = (yyvsp[0].sval); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3305 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 155:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 812 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.sval) = NULL; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3311 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 156:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 821 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
(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);
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3324 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 157:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 832 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = kJoinInner; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3330 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 158:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 833 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = kJoinOuter; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3336 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 159:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 834 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.uval) = kJoinLeftOuter; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3342 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 160:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 835 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.uval) = kJoinRightOuter; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3348 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 161:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 836 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = kJoinLeft; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3354 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 162:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 837 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = kJoinRight; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3360 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 163:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 838 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.uval) = kJoinCross; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3366 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 164:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 839 "bison_parser.y" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
{ (yyval.uval) = kJoinNatural; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3372 "bison_parser.cpp" /* yacc.c:1646 */
|
2017-03-08 20:36:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 165:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 840 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.uval) = kJoinInner; }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3378 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 166:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 846 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{
|
|
|
|
auto tbl = new TableRef(kTableSelect);
|
|
|
|
tbl->select = (yyvsp[-2].select_stmt);
|
|
|
|
tbl->alias = (yyvsp[0].sval);
|
|
|
|
(yyval.table) = tbl;
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3389 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 171:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 871 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyval.str_vec) = new std::vector<char*>(); (yyval.str_vec)->push_back((yyvsp[0].sval)); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3395 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
2017-03-08 20:36:06 +01:00
|
|
|
case 172:
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 872 "bison_parser.y" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
{ (yyvsp[-2].str_vec)->push_back((yyvsp[0].sval)); (yyval.str_vec) = (yyvsp[-2].str_vec); }
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3401 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 3405 "bison_parser.cpp" /* yacc.c:1646 */
|
2015-12-23 17:02:45 +01:00
|
|
|
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. */
|
|
|
|
|
|
|
|
yyn = yyr1[yyn];
|
|
|
|
|
|
|
|
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
|
|
|
|
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
|
|
|
yystate = yytable[yystate];
|
|
|
|
else
|
|
|
|
yystate = yydefgoto[yyn - YYNTOKENS];
|
|
|
|
|
|
|
|
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 like GCC when the user code never invokes
|
|
|
|
YYERROR and the label yyerrorlab therefore never appears in user
|
|
|
|
code. */
|
|
|
|
if (/*CONSTCOND*/ 0)
|
|
|
|
goto yyerrorlab;
|
|
|
|
|
|
|
|
yyerror_range[1] = yylsp[1-yylen];
|
|
|
|
/* 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:
|
|
|
|
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;
|
|
|
|
}
|
2017-04-07 16:26:20 +02:00
|
|
|
#line 875 "bison_parser.y" /* yacc.c:1906 */
|
2015-12-23 17:02:45 +01:00
|
|
|
|
|
|
|
/*********************************
|
|
|
|
** Section 4: Additional C code
|
|
|
|
*********************************/
|
|
|
|
|
|
|
|
/* empty */
|
|
|
|
|