summaryrefslogtreecommitdiff
path: root/sql/sql_class.h
diff options
context:
space:
mode:
authorAleksey Midenkov <midenok@gmail.com>2022-08-31 11:55:04 +0300
committerAleksey Midenkov <midenok@gmail.com>2022-08-31 11:55:04 +0300
commit86da0f4ee8381e7543733fae209252ff2b873631 (patch)
tree220dfdfc88ba42c754abb13db82b95f9ba34223a /sql/sql_class.h
parentd145dda9c7b6db394edf7150cc255343a4a7b116 (diff)
downloadmariadb-git-86da0f4ee8381e7543733fae209252ff2b873631.tar.gz
MDEV-25292 select_create::create_table removed
create_table duplicates select_insert::table_list. Since select_create inherits select_insert and the functional role of the members is the same we should remove one to eliminate the need of keeping them in sync.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r--sql/sql_class.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h
index 6a107fed54d..ee51b1828da 100644
--- a/sql/sql_class.h
+++ b/sql/sql_class.h
@@ -6115,7 +6115,6 @@ class select_insert :public select_result_interceptor {
class select_create: public select_insert {
- TABLE_LIST *create_table;
Table_specification_st *create_info;
TABLE_LIST *select_tables;
Alter_info *alter_info;
@@ -6136,7 +6135,6 @@ public:
TABLE_LIST *select_tables_arg):
select_insert(thd_arg, table_arg, NULL, &select_fields, 0, 0, duplic,
ignore, NULL),
- create_table(table_arg),
create_info(create_info_par),
select_tables(select_tables_arg),
alter_info(alter_info_arg),