1 | /****************************************************** |
2 | Percona XtraBackup: hot backup tool for InnoDB |
3 | (c) 2009-2014 Percona LLC and/or its affiliates |
4 | Originally Created 3/3/2009 Yasufumi Kinoshita |
5 | Written by Alexey Kopytov, Aleksandr Kuzminsky, Stewart Smith, Vadim Tkachenko, |
6 | Yasufumi Kinoshita, Ignacio Nin and Baron Schwartz. |
7 | |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by |
10 | the Free Software Foundation; version 2 of the License. |
11 | |
12 | This program is distributed in the hope that it will be useful, |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | GNU General Public License for more details. |
16 | |
17 | You should have received a copy of the GNU General Public License |
18 | along with this program; if not, write to the Free Software |
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
20 | *******************************************************/ |
21 | |
22 | #ifndef BACKUP_WSREP_H |
23 | #define BACKUP_WSREP_H |
24 | |
25 | /*********************************************************************** |
26 | Store Galera checkpoint info in the 'xtrabackup_galera_info' file, if that |
27 | information is present in the trx system header. Otherwise, do nothing. */ |
28 | void |
29 | xb_write_galera_info(bool incremental_prepare); |
30 | /*==================*/ |
31 | |
32 | #endif |
33 | |