1520
1525
DRIZZLE_UPDATE_ROW_START(table_share->getSchemaName(), table_share->getTableName());
1521
1526
setTransactionReadWrite();
1522
if (unlikely(plugin::Event::preUpdateRowDo(table->in_use, table_share, old_data, new_data)))
1527
if (unlikely(plugin::EventObserver::preUpdateRowDo(*(table->in_use), *table_share, old_data, new_data)))
1526
1533
error= doUpdateRecord(old_data, new_data);
1527
plugin::Event::postUpdateRowDo(table->in_use, table_share, old_data, new_data, error);
1534
if (unlikely(plugin::EventObserver::postUpdateRowDo(*(table->in_use), *table_share, old_data, new_data, error)))
1530
1540
DRIZZLE_UPDATE_ROW_DONE(error);