diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-08-23 11:57:47 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-05 15:02:46 +0400 |
commit | 71a0a12e61818d68201dfc985a64b58c19cfef44 (patch) | |
tree | c137948ce7224c35baba9e7e9daa069686c12cbe /sql/sql_lex.h | |
parent | 8ec4cf1f013363c7e5417f2b1862be6552409649 (diff) | |
download | mariadb-git-71a0a12e61818d68201dfc985a64b58c19cfef44.tar.gz |
Changing a LEX::sp_variable_declarations_finalize() parameter
from "const Lex_field_type_st &" to "const Column_definition &".
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 1cc8cf77b35..041a0c8f130 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -3099,7 +3099,7 @@ public: LEX_STRING name); void sp_variable_declarations_init(THD *thd, int nvars); bool sp_variable_declarations_finalize(THD *thd, int nvars, - const Lex_field_type_st &type, + const Column_definition &cdef, Item *def); bool sp_handler_declaration_init(THD *thd, int type); bool sp_handler_declaration_finalize(THD *thd, int type); |