diff options
author | Michael Widenius <monty@mariadb.org> | 2019-01-14 15:46:49 +0200 |
---|---|---|
committer | Michael Widenius <monty@mariadb.org> | 2019-01-14 16:18:50 +0200 |
commit | aad0165ceab4fa4e756f5fd473ef9df003a447cb (patch) | |
tree | 1ed8c68e116b67a51b810e6c8b0c6b408ff23708 /sql/backup.h | |
parent | 3975e22d55834930be7b1939ae9a5d416fa0905a (diff) | |
download | mariadb-git-aad0165ceab4fa4e756f5fd473ef9df003a447cb.tar.gz |
Added support for BACKUP LOCK / BACKUP UNLOCK
Diffstat (limited to 'sql/backup.h')
-rw-r--r-- | sql/backup.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/backup.h b/sql/backup.h index e6f290ae9c8..8d8a28b6082 100644 --- a/sql/backup.h +++ b/sql/backup.h @@ -28,4 +28,7 @@ bool run_backup_stage(THD *thd, backup_stages stage); bool backup_end(THD *thd); void backup_set_alter_copy_lock(THD *thd, TABLE *altered_table); bool backup_reset_alter_copy_lock(THD *thd); + +bool backup_lock(THD *thd, TABLE_LIST *table); +void backup_unlock(THD *thd); #endif /* BACKUP_INCLUDED */ |