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
4097d049
Commit
4097d049
authored
Mar 15, 2006
by
mats@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/bkroot/mysql-5.1-new
into mysql.com:/home/bk/b17400-mysql-5.1-new
parents
fbe3db30
bea2ca46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
sql/sql_delete.cc
sql/sql_delete.cc
+8
-6
No files found.
sql/sql_delete.cc
View file @
4097d049
...
@@ -82,8 +82,9 @@ bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
...
@@ -82,8 +82,9 @@ bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
table
->
file
->
info
(
HA_STATUS_VARIABLE
|
HA_STATUS_NO_LOCK
);
table
->
file
->
info
(
HA_STATUS_VARIABLE
|
HA_STATUS_NO_LOCK
);
ha_rows
const
maybe_deleted
=
table
->
file
->
records
;
ha_rows
const
maybe_deleted
=
table
->
file
->
records
;
/*
/*
If all rows shall be deleted, we always log this statement-based
If all rows shall be deleted, we (almost) always log this
(see [binlog], below), so we set this flag and test it below.
statement-based (see [binlog], below), so we set this flag and
test it below.
*/
*/
ha_delete_all_rows
=
1
;
ha_delete_all_rows
=
1
;
if
(
!
(
error
=
table
->
file
->
delete_all_rows
()))
if
(
!
(
error
=
table
->
file
->
delete_all_rows
()))
...
@@ -330,12 +331,13 @@ cleanup:
...
@@ -330,12 +331,13 @@ cleanup:
thd
->
clear_error
();
thd
->
clear_error
();
/*
/*
[binlog]: If 'handler::delete_all_rows()' was called, we
[binlog]: If 'handler::delete_all_rows()' was called and the
replicate statement-based; otherwise, 'ha_delete_row()' was
storage engine does not inject the rows itself, we replicate
used to delete specific rows which we might log row-based.
statement-based; otherwise, 'ha_delete_row()' was used to
delete specific rows which we might log row-based.
*/
*/
THD
::
enum_binlog_query_type
const
THD
::
enum_binlog_query_type
const
query_type
(
ha_delete_all_rows
?
query_type
(
ha_delete_all_rows
&&
!
table
->
file
->
is_injective
()
?
THD
::
STMT_QUERY_TYPE
:
THD
::
STMT_QUERY_TYPE
:
THD
::
ROW_QUERY_TYPE
);
THD
::
ROW_QUERY_TYPE
);
int
log_result
=
thd
->
binlog_query
(
query_type
,
int
log_result
=
thd
->
binlog_query
(
query_type
,
...
...
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