diff options
Diffstat (limited to 'storage/example/ha_example.cc')
-rw-r--r-- | storage/example/ha_example.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 868d30d2081..5f42f657ef3 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -262,7 +262,7 @@ static int example_init_func(void *p) example_hton->table_options= example_table_option_list; example_hton->field_options= example_field_option_list; example_hton->tablefile_extensions= ha_example_exts; - example_hton->drop_table= [](handlerton *, const char*) { return 0; }; + example_hton->drop_table= [](handlerton *, const char*) { return -1; }; DBUG_RETURN(0); } |