mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
384407aaeb
Due to the complexity of this change, everything is documented in WL#3565 This patch is the third iteration, it takes into account the comments received to date. mysql-test/r/func_math.result: Improved test coverage mysql-test/r/view.result: Name collision, x() is a geometry native in function mysql-test/t/func_math.test: Improved test coverage mysql-test/t/view.test: Name collision, x() is a geometry native in function sql/item_create.cc: Revised the create_func implementation sql/item_create.h: Revised the create_func implementation sql/item_geofunc.h: Explicit Item allocation in the thread memory pool. sql/lex.h: Removed function parsing from the lexical parser sql/lex_symbol.h: Removed function parsing from the lexical parser sql/mysql_priv.h: Server initialization and shutdown sql/mysqld.cc: Server initialization and shutdown sql/share/errmsg.txt: New error messages sql/sql_yacc.yy: Removed function parsing from the lexical parser tests/mysql_client_test.c: Spaces are no longer significant for function calls mysql-test/include/parser_bug21114.inc: New tests mysql-test/r/parser.result: New tests mysql-test/r/parser_bug21114_innodb.result: New tests mysql-test/t/parser.test: New tests mysql-test/t/parser_bug21114_innodb.test: New tests
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
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 2 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, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
/* This struct includes all reserved words and functions */
|
|
|
|
#ifndef _lex_symbol_h
|
|
#define _lex_symbol_h
|
|
|
|
struct st_sym_group;
|
|
|
|
typedef struct st_symbol {
|
|
const char *name;
|
|
uint tok;
|
|
uint length;
|
|
struct st_sym_group *group;
|
|
} SYMBOL;
|
|
|
|
typedef struct st_lex_symbol
|
|
{
|
|
SYMBOL *symbol;
|
|
char *str;
|
|
uint length;
|
|
} LEX_SYMBOL;
|
|
|
|
typedef struct st_sym_group {
|
|
const char *name;
|
|
const char *needed_define;
|
|
} SYM_GROUP;
|
|
|
|
extern SYM_GROUP sym_group_common;
|
|
extern SYM_GROUP sym_group_geom;
|
|
extern SYM_GROUP sym_group_rtree;
|
|
|
|
#endif /* _lex_symbol_h */
|