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
377e0862
Commit
377e0862
authored
Jul 07, 2006
by
konstantin/kostja@bodhi.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for Windows compilation failures.
parent
a1f7b448
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
server-tools/instance-manager/parse.h
server-tools/instance-manager/parse.h
+1
-1
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/rpl_filter.cc
sql/rpl_filter.cc
+1
-1
sql/rpl_filter.h
sql/rpl_filter.h
+1
-1
No files found.
server-tools/instance-manager/parse.h
View file @
377e0862
...
...
@@ -69,7 +69,7 @@ private:
inline
char
*
Named_value
::
alloc_str
(
const
LEX_STRING
*
str
)
{
return
my_strndup
(
(
const
byte
*
)
str
->
str
,
str
->
length
,
MYF
(
0
));
return
my_strndup
(
str
->
str
,
str
->
length
,
MYF
(
0
));
}
inline
char
*
Named_value
::
alloc_str
(
const
char
*
str
)
...
...
sql/log_event.cc
View file @
377e0862
...
...
@@ -5839,7 +5839,7 @@ int Table_map_log_event::exec_event(st_relay_log_info *rli)
if
(
memory
==
NULL
)
DBUG_RETURN
(
HA_ERR_OUT_OF_MEM
);
uint
32
dummy_len
;
uint
dummy_len
;
bzero
(
table_list
,
sizeof
(
*
table_list
));
table_list
->
db
=
db_mem
;
table_list
->
alias
=
table_list
->
table_name
=
tname_mem
;
...
...
sql/rpl_filter.cc
View file @
377e0862
...
...
@@ -513,7 +513,7 @@ Rpl_filter::get_wild_ignore_table(String* str)
const
char
*
Rpl_filter
::
get_rewrite_db
(
const
char
*
db
,
uint
32
*
new_len
)
Rpl_filter
::
get_rewrite_db
(
const
char
*
db
,
uint
*
new_len
)
{
if
(
rewrite_db
.
is_empty
()
||
!
db
)
return
db
;
...
...
sql/rpl_filter.h
View file @
377e0862
...
...
@@ -70,7 +70,7 @@ public:
void
get_wild_do_table
(
String
*
str
);
void
get_wild_ignore_table
(
String
*
str
);
const
char
*
get_rewrite_db
(
const
char
*
db
,
uint
32
*
new_len
);
const
char
*
get_rewrite_db
(
const
char
*
db
,
uint
*
new_len
);
I_List
<
i_string
>*
get_do_db
();
I_List
<
i_string
>*
get_ignore_db
();
...
...
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