~stewart/percona-xtrabackup/die-Die

« back to all changes in this revision

Viewing changes to src/xb0xb.h

  • Committer: jenkins at percona
  • Date: 2013-01-22 01:23:45 UTC
  • mfrom: (477.1.1 compact-backups)
  • Revision ID: jenkins@jenkins.percona.com-20130122012345-ujoqhdcv13aa2l3e
MergeĀ lp:~akopytov/percona-xtrabackup/compact-backups

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
Copyright (c) 2012 Percona Ireland Ltd.
 
3
 
 
4
Declarations of XtraBackup functions called by InnoDB code.
 
5
 
 
6
This program is free software; you can redistribute it and/or modify
 
7
it under the terms of the GNU General Public License as published by
 
8
the Free Software Foundation; version 2 of the License.
 
9
 
 
10
This program is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
GNU General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; if not, write to the Free Software
 
17
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
 
 
19
*******************************************************/
 
20
 
 
21
#ifndef xb0xb_h
 
22
#define xb0xb_h
 
23
 
 
24
extern ibool srv_compact_backup;
 
25
extern ibool srv_rebuild_indexes;
 
26
 
 
27
/******************************************************************************
 
28
Callback used in buf_page_io_complete() to detect compacted pages.
 
29
@return TRUE if the page is marked as compacted, FALSE otherwise. */
 
30
ibool
 
31
buf_page_is_compacted(
 
32
/*==================*/
 
33
        const byte*     page);  /*!< in: a database page */
 
34
 
 
35
/******************************************************************************
 
36
Rebuild all secondary indexes in all tables in separate spaces. Called from
 
37
innobase_start_or_create_for_mysql(). */
 
38
void
 
39
xb_compact_rebuild_indexes(void);
 
40
#endif