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
700b24db
Commit
700b24db
authored
Oct 21, 2012
by
Nuno Carvalho
Browse files
Options
Browse Files
Download
Plain Diff
BUG#14629727: USER_VAR_EVENT IS MISSING RANGE CHECKS
Merge from mysql-5.1 into mysql-5.5.
parents
c752059e
62503f9c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
9 deletions
+16
-9
sql/log_event.cc
sql/log_event.cc
+16
-0
sql/sql_priv.h
sql/sql_priv.h
+0
-9
No files found.
sql/log_event.cc
View file @
700b24db
...
@@ -66,6 +66,22 @@
...
@@ -66,6 +66,22 @@
*/
*/
#define FMT_G_BUFSIZE(PREC) (3 + (PREC) + 5 + 1)
#define FMT_G_BUFSIZE(PREC) (3 + (PREC) + 5 + 1)
/*
Explicit instantiation to unsigned int of template available_buffer
function.
*/
template
unsigned
int
available_buffer
<
unsigned
int
>(
const
char
*
,
const
char
*
,
unsigned
int
);
/*
Explicit instantiation to unsigned int of template valid_buffer_range
function.
*/
template
bool
valid_buffer_range
<
unsigned
int
>(
unsigned
int
,
const
char
*
,
const
char
*
,
unsigned
int
);
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
static
int
rows_event_stmt_cleanup
(
Relay_log_info
const
*
rli
,
THD
*
thd
);
static
int
rows_event_stmt_cleanup
(
Relay_log_info
const
*
rli
,
THD
*
thd
);
...
...
sql/sql_priv.h
View file @
700b24db
...
@@ -166,10 +166,6 @@ template <class T> T available_buffer(const char* buf_start,
...
@@ -166,10 +166,6 @@ template <class T> T available_buffer(const char* buf_start,
{
{
return
buf_len
-
(
buf_current
-
buf_start
);
return
buf_len
-
(
buf_current
-
buf_start
);
}
}
/* Explicit instantion to unsigned int. */
template
unsigned
int
available_buffer
<
unsigned
int
>(
const
char
*
,
const
char
*
,
unsigned
int
);
/*
/*
Check if jump value is within buffer limits.
Check if jump value is within buffer limits.
...
@@ -189,11 +185,6 @@ template <class T> bool valid_buffer_range(T jump,
...
@@ -189,11 +185,6 @@ template <class T> bool valid_buffer_range(T jump,
{
{
return
(
jump
<=
available_buffer
(
buf_start
,
buf_current
,
buf_len
));
return
(
jump
<=
available_buffer
(
buf_start
,
buf_current
,
buf_len
));
}
}
/* Explicit instantion to unsigned int. */
template
bool
valid_buffer_range
<
unsigned
int
>(
unsigned
int
,
const
char
*
,
const
char
*
,
unsigned
int
);
/* The rest of the file is included in the server only */
/* The rest of the file is included in the server only */
#ifndef MYSQL_CLIENT
#ifndef MYSQL_CLIENT
...
...
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