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
76473cba
Commit
76473cba
authored
Jun 13, 2006
by
mats@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#19066 (DELETE FROM replication inconsistency for NDB):
Post-merge fixes.
parent
8d97b5f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
sql/sql_class.h
sql/sql_class.h
+0
-1
sql/sql_delete.cc
sql/sql_delete.cc
+2
-0
No files found.
sql/sql_class.h
View file @
76473cba
...
@@ -941,7 +941,6 @@ public:
...
@@ -941,7 +941,6 @@ public:
int
binlog_flush_pending_rows_event
(
bool
stmt_end
);
int
binlog_flush_pending_rows_event
(
bool
stmt_end
);
void
binlog_delete_pending_rows_event
();
void
binlog_delete_pending_rows_event
();
#ifdef HAVE_ROW_BASED_REPLICATION
private:
private:
uint
binlog_table_maps
;
// Number of table maps currently in the binlog
uint
binlog_table_maps
;
// Number of table maps currently in the binlog
public:
public:
...
...
sql/sql_delete.cc
View file @
76473cba
...
@@ -977,7 +977,9 @@ trunc_by_del:
...
@@ -977,7 +977,9 @@ trunc_by_del:
thd
->
options
&=
~
(
ulong
)
(
OPTION_BEGIN
|
OPTION_NOT_AUTOCOMMIT
);
thd
->
options
&=
~
(
ulong
)
(
OPTION_BEGIN
|
OPTION_NOT_AUTOCOMMIT
);
ha_enable_transaction
(
thd
,
FALSE
);
ha_enable_transaction
(
thd
,
FALSE
);
mysql_init_select
(
thd
->
lex
);
mysql_init_select
(
thd
->
lex
);
#ifdef HAVE_ROW_BASED_REPLICATION
thd
->
clear_current_stmt_binlog_row_based
();
thd
->
clear_current_stmt_binlog_row_based
();
#endif
error
=
mysql_delete
(
thd
,
table_list
,
(
COND
*
)
0
,
(
SQL_LIST
*
)
0
,
error
=
mysql_delete
(
thd
,
table_list
,
(
COND
*
)
0
,
(
SQL_LIST
*
)
0
,
HA_POS_ERROR
,
LL
(
0
),
TRUE
);
HA_POS_ERROR
,
LL
(
0
),
TRUE
);
ha_enable_transaction
(
thd
,
TRUE
);
ha_enable_transaction
(
thd
,
TRUE
);
...
...
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