Commit 7d91d98a authored by Alexander Barkov's avatar Alexander Barkov Committed by Vladislav Vaintroub

A cleanup for 2a33d248

- Removing the unused "THD*" paramer from Lex_ident_sys_st::to_size_number()
- Removing redundant #include for "sql_tvc.h" and "vers_utils.h"
parent b73083c5
...@@ -7980,7 +7980,7 @@ bool Lex_ident_sys_st::convert(THD *thd, ...@@ -7980,7 +7980,7 @@ bool Lex_ident_sys_st::convert(THD *thd,
} }
bool Lex_ident_sys_st::to_size_number(THD *thd, ulonglong *to) const bool Lex_ident_sys_st::to_size_number(ulonglong *to) const
{ {
ulonglong number; ulonglong number;
uint text_shift_number= 0; uint text_shift_number= 0;
......
...@@ -143,7 +143,7 @@ struct Lex_ident_sys_st: public LEX_CSTRING ...@@ -143,7 +143,7 @@ struct Lex_ident_sys_st: public LEX_CSTRING
bool convert(THD *thd, const LEX_CSTRING *str, CHARSET_INFO *cs); bool convert(THD *thd, const LEX_CSTRING *str, CHARSET_INFO *cs);
bool copy_or_convert(THD *thd, const Lex_ident_cli_st *str, CHARSET_INFO *cs); bool copy_or_convert(THD *thd, const Lex_ident_cli_st *str, CHARSET_INFO *cs);
bool is_null() const { return str == NULL; } bool is_null() const { return str == NULL; }
bool to_size_number(THD *thd, ulonglong *to) const; bool to_size_number(ulonglong *to) const;
}; };
......
...@@ -67,8 +67,6 @@ ...@@ -67,8 +67,6 @@
#include "lex_token.h" #include "lex_token.h"
#include "sql_lex.h" #include "sql_lex.h"
#include "sql_sequence.h" #include "sql_sequence.h"
#include "sql_tvc.h"
#include "vers_utils.h"
#include "my_base.h" #include "my_base.h"
/* this is to get the bison compilation windows warnings out */ /* this is to get the bison compilation windows warnings out */
...@@ -5142,7 +5140,7 @@ size_number: ...@@ -5142,7 +5140,7 @@ size_number:
real_ulonglong_num { $$= $1;} real_ulonglong_num { $$= $1;}
| IDENT_sys | IDENT_sys
{ {
if ($1.to_size_number(thd, &$$)) if ($1.to_size_number(&$$))
MYSQL_YYABORT; MYSQL_YYABORT;
} }
; ;
......
...@@ -67,8 +67,6 @@ ...@@ -67,8 +67,6 @@
#include "lex_token.h" #include "lex_token.h"
#include "sql_lex.h" #include "sql_lex.h"
#include "sql_sequence.h" #include "sql_sequence.h"
#include "sql_tvc.h"
#include "vers_utils.h"
#include "my_base.h" #include "my_base.h"
/* this is to get the bison compilation windows warnings out */ /* this is to get the bison compilation windows warnings out */
...@@ -5100,7 +5098,7 @@ size_number: ...@@ -5100,7 +5098,7 @@ size_number:
real_ulonglong_num { $$= $1;} real_ulonglong_num { $$= $1;}
| IDENT_sys | IDENT_sys
{ {
if ($1.to_size_number(thd, &$$)) if ($1.to_size_number(&$$))
MYSQL_YYABORT; MYSQL_YYABORT;
} }
; ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment