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
8cc379eb
Commit
8cc379eb
authored
Nov 13, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes to eliminate warnings.
parent
b3c4bc6e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
sql/log_event.cc
sql/log_event.cc
+6
-4
No files found.
sql/log_event.cc
View file @
8cc379eb
...
...
@@ -1455,8 +1455,10 @@ static void copy_str_and_move(const char **src,
}
static
char
const
*
code_name
(
int
code
)
{
char
buf
[
255
];
static
char
const
*
code_name
(
int
code
)
{
static
char
buf
[
255
];
switch
(
code
)
{
case
Q_FLAGS2_CODE
:
return
"Q_FLAGS2_CODE"
;
case
Q_SQL_MODE_CODE
:
return
"Q_SQL_MODE_CODE"
;
...
...
@@ -1549,7 +1551,7 @@ Query_log_event::Query_log_event(const char* buf, uint event_len,
*/
if
(
status_vars_len
>
min
(
data_len
,
MAX_SIZE_LOG_EVENT_STATUS
))
{
DBUG_PRINT
(
"info"
,
(
"status_vars_len
: %d; data_len: %d
; query= 0"
,
DBUG_PRINT
(
"info"
,
(
"status_vars_len
(%u) > data_len (%lu)
; query= 0"
,
status_vars_len
,
data_len
));
query
=
0
;
DBUG_VOID_RETURN
;
...
...
@@ -1594,7 +1596,7 @@ Query_log_event::Query_log_event(const char* buf, uint event_len,
}
case
Q_CATALOG_NZ_CODE
:
DBUG_PRINT
(
"info"
,
(
"case Q_CATALOG_NZ_CODE; pos: 0x%lx; end: 0x%lx"
,
pos
,
end
));
(
ulong
)
pos
,
(
ulong
)
end
));
if
(
get_str_len_and_pointer
(
&
pos
,
&
catalog
,
&
catalog_len
,
end
))
{
DBUG_PRINT
(
"info"
,
(
"query= 0"
));
...
...
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