diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2017-12-01 10:08:57 +0300 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-12-01 12:21:49 +0300 |
commit | 5c820a7125b3b049043078e152104a0b56e5fba0 (patch) | |
tree | 97c8e31ffc9584aaf293f10c07f8395bdb4f45b7 /sql/handler.h | |
parent | b9225bb52c201bda3afd3543c7c7fb4cea17a927 (diff) | |
download | mariadb-git-5c820a7125b3b049043078e152104a0b56e5fba0.tar.gz |
SQL: create_like_table strip versioning for tmp tables [#365 bug 6]
Tests affected (forced versioning):
rpl.rpl_row_merge_engine
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 9e04453589d..90b7bb4ba1a 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1747,8 +1747,8 @@ public: const char *table_name); bool check_and_fix_alter(THD *thd, Alter_info *alter_info, HA_CREATE_INFO *create_info, TABLE *table); - bool fix_create_like(THD *thd, Alter_info *alter_info, - HA_CREATE_INFO *create_info, TABLE_LIST *table); + bool fix_create_like(Alter_info &alter_info, HA_CREATE_INFO &create_info, + TABLE_LIST &src_table, TABLE_LIST &table); /** User has added 'WITH SYSTEM VERSIONING' to table definition */ bool with_system_versioning : 1; |