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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e63d0c91
Commit
e63d0c91
authored
Feb 16, 2012
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix link error on Windows.
error LNK2001: unresolved external symbol _debug_sync_C_callback_ptr
parent
2f755bdf
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
storage/innodb_plugin/row/row0ins.c
storage/innodb_plugin/row/row0ins.c
+9
-3
storage/innodb_plugin/row/row0upd.c
storage/innodb_plugin/row/row0upd.c
+9
-3
No files found.
storage/innodb_plugin/row/row0ins.c
View file @
e63d0c91
...
@@ -23,9 +23,15 @@ Insert into a table
...
@@ -23,9 +23,15 @@ Insert into a table
Created 4/20/1996 Heikki Tuuri
Created 4/20/1996 Heikki Tuuri
*******************************************************/
*******************************************************/
#include "my_global.h"
/* HAVE_* */
#ifdef __WIN__
#include "m_string.h"
/* for my_sys.h */
/* error LNK2001: unresolved external symbol _debug_sync_C_callback_ptr */
#include "my_sys.h"
/* DEBUG_SYNC_C */
# define DEBUG_SYNC_C(dummy) ((void) 0)
#else
# include "my_global.h"
/* HAVE_* */
# include "m_string.h"
/* for my_sys.h */
# include "my_sys.h"
/* DEBUG_SYNC_C */
#endif
#include "row0ins.h"
#include "row0ins.h"
#ifdef UNIV_NONINL
#ifdef UNIV_NONINL
...
...
storage/innodb_plugin/row/row0upd.c
View file @
e63d0c91
...
@@ -23,9 +23,15 @@ Update of a row
...
@@ -23,9 +23,15 @@ Update of a row
Created 12/27/1996 Heikki Tuuri
Created 12/27/1996 Heikki Tuuri
*******************************************************/
*******************************************************/
#include "my_global.h"
/* HAVE_* */
#ifdef __WIN__
#include "m_string.h"
/* for my_sys.h */
/* error LNK2001: unresolved external symbol _debug_sync_C_callback_ptr */
#include "my_sys.h"
/* DEBUG_SYNC_C */
# define DEBUG_SYNC_C(dummy) ((void) 0)
#else
# include "my_global.h"
/* HAVE_* */
# include "m_string.h"
/* for my_sys.h */
# include "my_sys.h"
/* DEBUG_SYNC_C */
#endif
#include "row0upd.h"
#include "row0upd.h"
#ifdef UNIV_NONINL
#ifdef UNIV_NONINL
...
...
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