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
090e0209
Commit
090e0209
authored
Sep 08, 2006
by
mats@romeo.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patches to fix problems on Windows
parent
dbc98766
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/rpl_utility.cc
sql/rpl_utility.cc
+2
-0
No files found.
sql/log_event.cc
View file @
090e0209
...
...
@@ -5369,7 +5369,7 @@ unpack_row(RELAY_LOG_INFO *rli,
if
(
master_reclength
)
{
if
(
*
field_ptr
)
*
master_reclength
=
(
*
field_ptr
)
->
ptr
-
table
->
record
[
0
];
*
master_reclength
=
(
*
field_ptr
)
->
ptr
-
(
char
*
)
table
->
record
[
0
];
else
*
master_reclength
=
table
->
s
->
reclength
;
}
...
...
sql/rpl_utility.cc
View file @
090e0209
...
...
@@ -96,6 +96,8 @@ field_length_from_packed(enum_field_types const field_type,
length
=
~
0UL
;
// NYI
break
;
}
return
length
;
}
/*********************************************************************
...
...
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