diff options
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 0dc8e27fe61..588cf11f641 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -499,8 +499,6 @@ int ha_example::write_row(uchar *buf) Currently new_data will not have an updated auto_increament record, or and updated timestamp field. You can do these for example by doing: @code - if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE) - table->timestamp_field->set_time(); if (table->next_number_field && record == table->record[0]) update_auto_increment(); @endcode |