diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-12-06 09:05:52 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-05 15:02:54 +0400 |
commit | 46d076d67ab82b6b967d86b867a42b337daff5de (patch) | |
tree | 08bf12ff3a5374e37f7df71137e75b148372de96 /sql/sp_pcontext.h | |
parent | cd1afe0aac28cec267e9c2e74d7a5f73050e2614 (diff) | |
download | mariadb-git-46d076d67ab82b6b967d86b867a42b337daff5de.tar.gz |
MDEV-10577 sql_mode=ORACLE: %TYPE in variable declarations
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index 33a7bffca7c..414a3cbc7cc 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -57,7 +57,7 @@ public: Item *default_value; /// Full type information (field meta-data) of the SP-variable. - Column_definition field_def; + Spvar_definition field_def; /// Field-type of the SP-variable. enum_field_types sql_type() const { return field_def.sql_type; } @@ -436,7 +436,7 @@ public: /// context and its children. /// /// @param field_def_lst[out] Container to store type information. - void retrieve_field_definitions(List<Column_definition> *field_def_lst) const; + void retrieve_field_definitions(List<Spvar_definition> *field_def_lst) const; /// Find SP-variable by name. /// |