summaryrefslogtreecommitdiff
path: root/sql/sp_pcontext.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2015-11-25 11:22:10 +0400
committerAlexander Barkov <bar@mariadb.org>2015-11-25 11:22:10 +0400
commit00ed55c71ab08045d79917ae3a749d2c3dae25cf (patch)
tree83b774822a3c8fc88402b10517d7a7a56ac4ca6e /sql/sp_pcontext.h
parenta099686e2e9fdc3d7dc2948cc13165c9e8aaf11d (diff)
downloadmariadb-git-00ed55c71ab08045d79917ae3a749d2c3dae25cf.tar.gz
A joint patch for:
- MDEV-8093 sql_yacc.yy: add %type create_field for field_spec and column_def and partially: - MDEV-8095 Split Create_field
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r--sql/sp_pcontext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h
index efe9531c3a0..c15d6bc7016 100644
--- a/sql/sp_pcontext.h
+++ b/sql/sp_pcontext.h
@@ -60,7 +60,7 @@ public:
Item *default_value;
/// Full type information (field meta-data) of the SP-variable.
- Create_field field_def;
+ Column_definition field_def;
public:
sp_variable(LEX_STRING _name, uint _offset)
@@ -347,7 +347,7 @@ public:
/// context and its children.
///
/// @param field_def_lst[out] Container to store type information.
- void retrieve_field_definitions(List<Create_field> *field_def_lst) const;
+ void retrieve_field_definitions(List<Column_definition> *field_def_lst) const;
/// Find SP-variable by name.
///