summaryrefslogtreecommitdiff
path: root/sql/log_event.cc
diff options
context:
space:
mode:
authorAnnamalai Gurusami <annamalai.gurusami@oracle.com>2012-10-08 19:40:30 +0530
committerAnnamalai Gurusami <annamalai.gurusami@oracle.com>2012-10-08 19:40:30 +0530
commit378a7d1ef5e60884d21f3e4059aad29d0e4dcefa (patch)
treef4b66e0e1aa0556afbaf7190a833dc54c0792585 /sql/log_event.cc
parent52a4ef95e87af8d85f5682e9e643e563d41169c4 (diff)
downloadmariadb-git-378a7d1ef5e60884d21f3e4059aad29d0e4dcefa.tar.gz
Bug #14036214 MYSQLD CRASHES WHEN EXECUTING UPDATE IN TRX WITH
CONSISTENT SNAPSHOT OPTION A transaction is started with a consistent snapshot. After the transaction is started new indexes are added to the table. Now when we issue an update statement, the optimizer chooses an index. When the index scan is being initialized via ha_innobase::change_active_index(), InnoDB reports the error code HA_ERR_TABLE_DEF_CHANGED, with message stating that "insufficient history for index". This error message is propagated up to the SQL layer. But the my_error() api is never called. The statement level diagnostics area is not updated with the correct error status (it remains in Diagnostics_area::DA_EMPTY). Hence the following check in the Protocol::end_statement() fails. 516 case Diagnostics_area::DA_EMPTY: 517 default: 518 DBUG_ASSERT(0); 519 error= send_ok(thd->server_status, 0, 0, 0, NULL); 520 break; The fix is to backport the fix of bugs 14365043, 11761652 and 11746399. 14365043 PROTOCOL::END_STATEMENT(): ASSERTION `0' FAILED 11761652 HA_RND_INIT() RESULT CODE NOT CHECKED 11746399 RETURN VALUES OF HA_INDEX_INIT() AND INDEX_INIT() IGNORED rb://1227 approved by guilhem and mattiasj.
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r--sql/log_event.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc
index c4a6ebb9a71..a31e5f71c37 100644
--- a/sql/log_event.cc
+++ b/sql/log_event.cc
@@ -9777,19 +9777,25 @@ int Rows_log_event::find_row(const Relay_log_info *rli)
case HA_ERR_END_OF_FILE:
if (++restart_count < 2)
- table->file->ha_rnd_init(1);
+ {
+ if ((error= table->file->ha_rnd_init(1)))
+ {
+ table->file->print_error(error, MYF(0));
+ goto err;
+ }
+ }
break;
default:
DBUG_PRINT("info", ("Failed to get next record"
" (rnd_next returns %d)",error));
table->file->print_error(error, MYF(0));
- table->file->ha_rnd_end();
+ (void) table->file->ha_rnd_end();
goto err;
}
}
while (restart_count < 2 && record_compare(table));
-
+
/*
Note: above record_compare will take into accout all record fields
which might be incorrect in case a partial row was given in the event