summaryrefslogtreecommitdiff
path: root/sql/backup.cc
Commit message (Collapse)AuthorAgeFilesLines
* perfschema mdl related instrumentation changesSergei Golubchik2020-03-101-1/+2
|
* Removed tc_purge() and purge_tables() argumentSergey Vojtovich2019-11-251-1/+1
| | | | | | | | It was mistakenly used by tdc_start_shutdown() to make sure TABLE_SHARE gets evicted from table definition cache when it becomes unused. However same effect is achieved by resetting tdc_size and tc_size. Part of MDEV-17882 - Cleanup refresh version
* Fix that BACKUP STAGE BLOCK_COMMIT flushes binary logMonty2019-11-011-0/+8
|
* MDEV-19585 Assertion with S3 table and flush_tablesMonty2019-06-261-1/+6
| | | | | | | | | The problem was two fault: - flush_tables() wrongly gave errors when failing to open read only tables - backup_block_ddl() didn't properly ignores errors from flush_tables() The test case for this will be pushed in 10.5 as the test involves S3 tables.
* Added support for BACKUP LOCK / BACKUP UNLOCKMichael Widenius2019-01-141-0/+29
|
* Added syntax and implementation for BACKUP STAGE'sMonty2018-12-091-0/+356
Part of MDEV-5336 Implement LOCK FOR BACKUP - Changed check of Global_only_lock to also include BACKUP lock. - We store latest MDL_BACKUP_DDL lock in thd->mdl_backup_ticket to be able to downgrade lock during copy_data_between_tables()