Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vuvova committed Aug 23, 2017
1 parent 4aaa38d commit d5a6bae
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions extra/mariabackup/datasink.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <my_global.h>
#include <my_base.h>
#include "common.h"
#include "datasink.h"
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/ds_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Writes to the destination datasink are guaranteed to not be smaller than a
specified buffer size (DS_DEFAULT_BUFFER_SIZE by default), with the only
exception for the last write for a file. */

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include "ds_buffer.h"
#include "common.h"
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/ds_compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <my_global.h>
#include <mysql_version.h>
#include <my_base.h>
#include <quicklz.h>
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/ds_local.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include <mysys_err.h>
#include "common.h"
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/ds_stdout.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <my_global.h>
#include <my_base.h>
#include <mysys_err.h>
#include "common.h"
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/ds_tmpfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
/* Do all writes to temporary files first, then pipe them to the specified
datasink in a serialized way in deinit(). */

#include <my_global.h>
#include <my_base.h>
#include "common.h"
#include "datasink.h"
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/ds_xbstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include "common.h"
#include "datasink.h"
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/encryption_plugin.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <my_global.h>
#include <mysqld.h>
#include <mysql.h>
#include <xtrabackup.h>
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/fil_cur.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

/* Source file cursor implementation */

#include <my_global.h>
#include <my_base.h>

#include <fil0fil.h>
Expand Down
1 change: 1 addition & 0 deletions extra/mariabackup/write_filt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

/* Page write filters implementation */

#include <my_global.h>
#include <my_base.h>
#include "common.h"
#include "write_filt.h"
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/wsrep.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permission notice:
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include <handler.h>
#include <trx0sys.h>
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/xbstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include <my_getopt.h>
#include <hash.h>
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/xbstream_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include <zlib.h>
#include "common.h"
Expand Down
2 changes: 1 addition & 1 deletion extra/mariabackup/xbstream_write.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/

#include <mysql_version.h>
#include <my_global.h>
#include <my_base.h>
#include <zlib.h>
#include "common.h"
Expand Down

0 comments on commit d5a6bae

Please sign in to comment.