diff options
author | unknown <serg@serg.mysql.com> | 2001-03-13 12:54:43 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-03-13 12:54:43 +0100 |
commit | 99f49c3c966ecaff273ec40223128c9211faa193 (patch) | |
tree | 63172fe2bbdfdfbe3b6f765455912c82334f031a /sql/sql_lex.cc | |
parent | f9df810cc6484d77aba512fe983fef7b1529f2ef (diff) | |
download | mariadb-git-99f49c3c966ecaff273ec40223128c9211faa193.tar.gz |
sql_lex.cc per-thread state_map temporarily disabled
mysql-test-run.sh PATH corrected
mysql-test/mysql-test-run.sh:
PATH corrected
sql/sql_lex.cc:
per-thread state_map temporarily disabled
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index f0357b99d70..5e75339b0db 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -425,7 +425,7 @@ int yylex(void *arg) uint length; enum lex_states state,prev_state; LEX *lex=current_lex; - uchar *state_map = lex->thd->state_map; + uchar *state_map = global_state_map; // thd->lex->state_map; YYSTYPE *yylval=(YYSTYPE*) arg; lex->yylval=yylval; // The global state |