diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2016-09-29 11:12:46 +0000 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-05-05 20:36:08 +0300 |
commit | 1ec7dbe1766f00c542971784b967cb6a738e3a57 (patch) | |
tree | 287c2fb005608506b7eea8c4a1fd2af563bf8cdf /sql/sql_insert.h | |
parent | 23f4e40839bd80d4309a41b21245f3d9c27a660b (diff) | |
download | mariadb-git-1ec7dbe1766f00c542971784b967cb6a738e3a57.tar.gz |
IB: 0.2 part III
* versioned DML: INSERT, UPDATE, DELETE;
* general refactoring and fixes.
Warning: breaks 'insert' and 'update' tests since they require part IV.
Diffstat (limited to 'sql/sql_insert.h')
-rw-r--r-- | sql/sql_insert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_insert.h b/sql/sql_insert.h index a8794e7414b..6efd680d188 100644 --- a/sql/sql_insert.h +++ b/sql/sql_insert.h @@ -37,7 +37,7 @@ void upgrade_lock_type_for_insert(THD *thd, thr_lock_type *lock_type, bool is_multi_insert); int check_that_all_fields_are_given_values(THD *thd, TABLE *entry, TABLE_LIST *table_list); -int vers_insert_history_row(TABLE *table, ha_rows *inserted); +int vers_insert_history_row(TABLE *table); int write_record(THD *thd, TABLE *table, COPY_INFO *info); void kill_delayed_threads(void); |