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
8485c574
Commit
8485c574
authored
May 24, 2006
by
holyfoot@deer.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #19650 (Embedded crashes in 5.1.10)
parent
ade3de74
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/extra/binlog_tests/innodb_stat.test
mysql-test/extra/binlog_tests/innodb_stat.test
+2
-0
sql/log.cc
sql/log.cc
+2
-4
sql/sql_insert.cc
sql/sql_insert.cc
+2
-0
No files found.
mysql-test/extra/binlog_tests/innodb_stat.test
View file @
8485c574
# Embedded server doesn't support binlog
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb
.
inc
#
#
...
...
sql/log.cc
View file @
8485c574
...
@@ -2877,7 +2877,7 @@ bool MYSQL_LOG::write(Log_event *event_info)
...
@@ -2877,7 +2877,7 @@ bool MYSQL_LOG::write(Log_event *event_info)
}
}
#endif
/* HAVE_REPLICATION */
#endif
/* HAVE_REPLICATION */
#if
def USING_TRANSACTIONS
#if
defined(USING_TRANSACTIONS) && defined(HAVE_ROW_BASED_REPLICATION)
/*
/*
Should we write to the binlog cache or to the binlog on disk?
Should we write to the binlog cache or to the binlog on disk?
Write to the binlog cache if:
Write to the binlog cache if:
...
@@ -2889,10 +2889,8 @@ bool MYSQL_LOG::write(Log_event *event_info)
...
@@ -2889,10 +2889,8 @@ bool MYSQL_LOG::write(Log_event *event_info)
*/
*/
if
(
opt_using_transactions
&&
thd
)
if
(
opt_using_transactions
&&
thd
)
{
{
#ifdef HAVE_ROW_BASED_REPLICATION
if
(
thd
->
binlog_setup_trx_data
())
if
(
thd
->
binlog_setup_trx_data
())
goto
err
;
goto
err
;
#endif
/*HAVE_ROW_BASED_REPLICATION*/
binlog_trx_data
*
const
trx_data
=
binlog_trx_data
*
const
trx_data
=
(
binlog_trx_data
*
)
thd
->
ha_data
[
binlog_hton
.
slot
];
(
binlog_trx_data
*
)
thd
->
ha_data
[
binlog_hton
.
slot
];
...
@@ -2916,7 +2914,7 @@ bool MYSQL_LOG::write(Log_event *event_info)
...
@@ -2916,7 +2914,7 @@ bool MYSQL_LOG::write(Log_event *event_info)
LOCK_log.
LOCK_log.
*/
*/
}
}
#endif
#endif
/* USING_TRANSACTIONS && HAVE_ROW_BASED_REPLICATION */
DBUG_PRINT
(
"info"
,(
"event type: %d"
,
event_info
->
get_type_code
()));
DBUG_PRINT
(
"info"
,(
"event type: %d"
,
event_info
->
get_type_code
()));
/*
/*
...
...
sql/sql_insert.cc
View file @
8485c574
...
@@ -2759,7 +2759,9 @@ select_create::binlog_show_create_table(TABLE **tables, uint count)
...
@@ -2759,7 +2759,9 @@ select_create::binlog_show_create_table(TABLE **tables, uint count)
on rollback, we clear the OPTION_STATUS_NO_TRANS_UPDATE bit of
on rollback, we clear the OPTION_STATUS_NO_TRANS_UPDATE bit of
thd->options.
thd->options.
*/
*/
#ifdef HAVE_ROW_BASED_REPLICATION
DBUG_ASSERT
(
thd
->
current_stmt_binlog_row_based
);
DBUG_ASSERT
(
thd
->
current_stmt_binlog_row_based
);
#endif
DBUG_ASSERT
(
tables
&&
*
tables
&&
count
>
0
);
DBUG_ASSERT
(
tables
&&
*
tables
&&
count
>
0
);
thd
->
options
&=
~
OPTION_STATUS_NO_TRANS_UPDATE
;
thd
->
options
&=
~
OPTION_STATUS_NO_TRANS_UPDATE
;
...
...
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