mirror of
https://github.com/MariaDB/server.git
synced 2026-04-29 19:55:32 +02:00
Added SQL_ANSI_MODE.
Docs/manual.texi: Added News section for 3.23.35, and change notes for SQL_ANSI_MODE. sql/gen_lex_hash.cc: Fixed typo. Updated the values, so the parser can be created. sql/mysql_priv.h: Added ``global_state_map'' from sql_lex.cc. sql/sql_class.h: Added ``state_map'' to THD. This is a per-thread state map for lex. sql/sql_lex.cc: Renamed ``state_map'' to ``global_state_map''. Changed yylex() to use the new per-thread state map. sql/sql_parse.cc: Copy global_state_map into thd->state_map on thread start. sql/sql_yacc.yy: Added SQL_ANSI_MODE. Cleaned up some.
This commit is contained in:
parent
c663909815
commit
ee92b9f634
8 changed files with 89 additions and 34 deletions
|
|
@ -280,7 +280,10 @@ public:
|
|||
|
||||
ulong slave_proxy_id; // in slave thread we need to know in behalf of which
|
||||
// thread the query is being run to replicate temp tables properly
|
||||
|
||||
|
||||
// thread-specific state map for lex parser
|
||||
uchar state_map[256];
|
||||
|
||||
THD();
|
||||
~THD();
|
||||
bool store_globals();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue