summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2017-09-28 17:26:23 +0400
committerAlexander Barkov <bar@mariadb.org>2017-09-28 17:26:23 +0400
commit596baeb1bfb812ad9b458eba0f6ea7d9bcdf4671 (patch)
tree04471f0d7548603406c1fd6d03e2e965022bffbf /sql/field.h
parent3a6d94428f71171a88f1e7324952c1abbda00295 (diff)
downloadmariadb-git-596baeb1bfb812ad9b458eba0f6ea7d9bcdf4671.tar.gz
A cleanup for MDEV-10577 and MDEV-13919: moving a few sp_rcontext methods
Moving a few methods from sp_rcontext to different classes: - Table_ident::resolve_table_rowtype_ref - Qualified_column_ident::resolve_type_ref - Row_definition_list::resolve_table_rowtype_ref - Row_definition_list::adjust_formal_params_to_actual_params It easier to reuse these methods this way in the future.
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/field.h b/sql/field.h
index f36e9a668c4..32ff75042e0 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -4095,6 +4095,8 @@ public:
}
return 0;
}
+ bool adjust_formal_params_to_actual_params(THD *thd, List<Item> *args);
+ bool resolve_type_refs(THD *);
};