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
7f346859
Commit
7f346859
authored
Oct 11, 2008
by
Build Team
Browse files
Options
Browse Files
Download
Plain Diff
Added "-rc" to the version
Removed use of __FUNCTION__
parents
0c20c0f1
86af3f63
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
configure.in
configure.in
+1
-1
sql/log.cc
sql/log.cc
+1
-1
sql/sql_class.cc
sql/sql_class.cc
+1
-1
No files found.
configure.in
View file @
7f346859
...
...
@@ -10,7 +10,7 @@ AC_CANONICAL_SYSTEM
#
# When changing major version number please also check switch statement
# in mysqlbinlog::check_master_version().
AM_INIT_AUTOMAKE
(
mysql, 5.1.29
)
AM_INIT_AUTOMAKE
(
mysql, 5.1.29
-rc
)
AM_CONFIG_HEADER
([
include/config.h:config.h.in]
)
PROTOCOL_VERSION
=
10
...
...
sql/log.cc
View file @
7f346859
...
...
@@ -3779,7 +3779,7 @@ THD::binlog_set_pending_rows_event(Rows_log_event* ev)
int
MYSQL_BIN_LOG
::
remove_pending_rows_event
(
THD
*
thd
)
{
DBUG_ENTER
(
__FUNCTION__
);
DBUG_ENTER
(
"MYSQL_BIN_LOG::remove_pending_rows_event"
);
binlog_trx_data
*
const
trx_data
=
(
binlog_trx_data
*
)
thd_get_ha_data
(
thd
,
binlog_hton
);
...
...
sql/sql_class.cc
View file @
7f346859
...
...
@@ -3513,7 +3513,7 @@ int THD::binlog_delete_row(TABLE* table, bool is_trans,
int
THD
::
binlog_remove_pending_rows_event
(
bool
clear_maps
)
{
DBUG_ENTER
(
__FUNCTION__
);
DBUG_ENTER
(
"THD::binlog_remove_pending_rows_event"
);
if
(
!
mysql_bin_log
.
is_open
())
DBUG_RETURN
(
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