diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2016-12-30 15:04:10 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2016-12-30 16:05:42 +0200 |
commit | 63574f1275eda0f0ed439f4896b6e7daf6832a8f (patch) | |
tree | aead50be1af894234be2be8d06c341e328bf8636 /storage/innobase/include/trx0rec.ic | |
parent | 9ebd76733198578e0ac8ca854d667ab114b3d581 (diff) | |
download | mariadb-git-63574f1275eda0f0ed439f4896b6e7daf6832a8f.tar.gz |
MDEV-11690 Remove UNIV_HOTBACKUP
The InnoDB source code contains quite a few references to a closed-source
hot backup tool which was originally called InnoDB Hot Backup (ibbackup)
and later incorporated in MySQL Enterprise Backup.
The open source backup tool XtraBackup uses the full database for recovery.
So, the references to UNIV_HOTBACKUP are only cluttering the source code.
Diffstat (limited to 'storage/innobase/include/trx0rec.ic')
-rw-r--r-- | storage/innobase/include/trx0rec.ic | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/innobase/include/trx0rec.ic b/storage/innobase/include/trx0rec.ic index 111c05c60aa..c2c756484b2 100644 --- a/storage/innobase/include/trx0rec.ic +++ b/storage/innobase/include/trx0rec.ic @@ -23,7 +23,6 @@ Transaction undo log record Created 3/26/1996 Heikki Tuuri *******************************************************/ -#ifndef UNIV_HOTBACKUP /**********************************************************************//** Reads from an undo log record the record type. @return record type */ @@ -98,4 +97,3 @@ trx_undo_rec_copy( ut_ad(len < UNIV_PAGE_SIZE); return((trx_undo_rec_t*) mem_heap_dup(heap, undo_rec, len)); } -#endif /* !UNIV_HOTBACKUP */ |