1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

after merge fixes

sql/opt_range.h:
  compatibility fix
sql/sql_lex.cc:
  cleanup
This commit is contained in:
unknown
2004-07-22 00:26:33 +02:00
parent a9856042bc
commit 1d29e6b0d4
8 changed files with 62 additions and 63 deletions

View File

@@ -111,8 +111,8 @@ void lex_start(THD *thd, uchar *buf,uint length)
LEX *lex= thd->lex;
lex->thd= thd;
lex->next_state=MY_LEX_START;
lex->buf= buf;
lex->end_of_query=(lex->ptr=buf)+length;
lex->buf= lex->ptr= buf;
lex->end_of_query=buf+length;
lex->yylineno = 1;
lex->in_comment=0;
lex->length=0;