summaryrefslogtreecommitdiff
path: root/sql/sql_table.h
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2023-01-31 09:57:52 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2023-01-31 09:57:52 +0100
commit638625278e7cadf42633e6f9d1b663ca1e3e1bb1 (patch)
tree8c93d8a33713abff96d229e96828870a53d0a5a0 /sql/sql_table.h
parentfa543a0f621fcf19e31c7d044f2b6c4f0836cd5a (diff)
parentb923b80cfd8628ef973019bf3dba76dda8d940c4 (diff)
downloadmariadb-git-638625278e7cadf42633e6f9d1b663ca1e3e1bb1.tar.gz
Merge branch '10.7' into 10.8
Diffstat (limited to 'sql/sql_table.h')
-rw-r--r--sql/sql_table.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_table.h b/sql/sql_table.h
index e3cfec9ca93..0f9a73c848a 100644
--- a/sql/sql_table.h
+++ b/sql/sql_table.h
@@ -165,6 +165,7 @@ bool mysql_alter_table(THD *thd, const LEX_CSTRING *new_db,
const LEX_CSTRING *new_name,
HA_CREATE_INFO *create_info,
TABLE_LIST *table_list,
+ class Recreate_info *recreate_info,
Alter_info *alter_info,
uint order_num, ORDER *order, bool ignore,
bool if_exists);
@@ -172,7 +173,8 @@ bool mysql_compare_tables(TABLE *table,
Alter_info *alter_info,
HA_CREATE_INFO *create_info,
bool *metadata_equal);
-bool mysql_recreate_table(THD *thd, TABLE_LIST *table_list, bool table_copy);
+bool mysql_recreate_table(THD *thd, TABLE_LIST *table_list,
+ class Recreate_info *recreate_info, bool table_copy);
bool mysql_create_like_table(THD *thd, TABLE_LIST *table,
TABLE_LIST *src_table,
Table_specification_st *create_info);