diff options
author | lars/lthalmann@mysql.com/dl145k.mysql.com <> | 2007-05-30 11:55:56 +0200 |
---|---|---|
committer | lars/lthalmann@mysql.com/dl145k.mysql.com <> | 2007-05-30 11:55:56 +0200 |
commit | a6cf35bb787a3cbf79b1b6354d3b78fae3b89682 (patch) | |
tree | 9598d502db237a176febf2aa611baa1a4e83cd2c /sql/log_event.cc | |
parent | ad8e43155b9b9daf92156a13ddbafce31901b932 (diff) | |
download | mariadb-git-a6cf35bb787a3cbf79b1b6354d3b78fae3b89682.tar.gz |
Added extra parenthesis to remove compiler warning
Fixed test case rpl_incident.test (synchronize drop table, masked IO thread behaviour)
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r-- | sql/log_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc index 906e55704d7..3cca8d53f07 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -6809,7 +6809,7 @@ int Write_rows_log_event::do_after_row_operations(TABLE *table, int error) fires bug#27077 todo: explain or fix */ - if (local_error= table->file->ha_end_bulk_insert()) + if ((local_error= table->file->ha_end_bulk_insert())) { table->file->print_error(local_error, MYF(0)); } |