Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d5a6bae7
Commit
d5a6bae7
authored
Aug 21, 2017
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation errors
parent
4aaa38d2
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
7 deletions
+14
-7
extra/mariabackup/datasink.c
extra/mariabackup/datasink.c
+1
-0
extra/mariabackup/ds_buffer.c
extra/mariabackup/ds_buffer.c
+1
-1
extra/mariabackup/ds_compress.c
extra/mariabackup/ds_compress.c
+1
-0
extra/mariabackup/ds_local.c
extra/mariabackup/ds_local.c
+1
-1
extra/mariabackup/ds_stdout.c
extra/mariabackup/ds_stdout.c
+1
-0
extra/mariabackup/ds_tmpfile.c
extra/mariabackup/ds_tmpfile.c
+1
-0
extra/mariabackup/ds_xbstream.c
extra/mariabackup/ds_xbstream.c
+1
-1
extra/mariabackup/encryption_plugin.cc
extra/mariabackup/encryption_plugin.cc
+1
-0
extra/mariabackup/fil_cur.cc
extra/mariabackup/fil_cur.cc
+1
-0
extra/mariabackup/write_filt.cc
extra/mariabackup/write_filt.cc
+1
-0
extra/mariabackup/wsrep.cc
extra/mariabackup/wsrep.cc
+1
-1
extra/mariabackup/xbstream.c
extra/mariabackup/xbstream.c
+1
-1
extra/mariabackup/xbstream_read.c
extra/mariabackup/xbstream_read.c
+1
-1
extra/mariabackup/xbstream_write.c
extra/mariabackup/xbstream_write.c
+1
-1
No files found.
extra/mariabackup/datasink.c
View file @
d5a6bae7
...
...
@@ -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"
...
...
extra/mariabackup/ds_buffer.c
View file @
d5a6bae7
...
...
@@ -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 <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include "ds_buffer.h"
#include "common.h"
...
...
extra/mariabackup/ds_compress.c
View file @
d5a6bae7
...
...
@@ -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>
...
...
extra/mariabackup/ds_local.c
View file @
d5a6bae7
...
...
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include <mysys_err.h>
#include "common.h"
...
...
extra/mariabackup/ds_stdout.c
View file @
d5a6bae7
...
...
@@ -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"
...
...
extra/mariabackup/ds_tmpfile.c
View file @
d5a6bae7
...
...
@@ -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"
...
...
extra/mariabackup/ds_xbstream.c
View file @
d5a6bae7
...
...
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include "common.h"
#include "datasink.h"
...
...
extra/mariabackup/encryption_plugin.cc
View file @
d5a6bae7
#include <my_global.h>
#include <mysqld.h>
#include <mysql.h>
#include <xtrabackup.h>
...
...
extra/mariabackup/fil_cur.cc
View file @
d5a6bae7
...
...
@@ -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>
...
...
extra/mariabackup/write_filt.cc
View file @
d5a6bae7
...
...
@@ -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"
...
...
extra/mariabackup/wsrep.cc
View file @
d5a6bae7
...
...
@@ -40,7 +40,7 @@ permission notice:
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include <handler.h>
#include <trx0sys.h>
...
...
extra/mariabackup/xbstream.c
View file @
d5a6bae7
...
...
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include <my_getopt.h>
#include <hash.h>
...
...
extra/mariabackup/xbstream_read.c
View file @
d5a6bae7
...
...
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include <zlib.h>
#include "common.h"
...
...
extra/mariabackup/xbstream_write.c
View file @
d5a6bae7
...
...
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*******************************************************/
#include <my
sql_version
.h>
#include <my
_global
.h>
#include <my_base.h>
#include <zlib.h>
#include "common.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment