diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2022-01-18 13:01:19 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2022-01-18 13:01:19 +0200 |
commit | b0998583f8e7331245597a7bf9a878cf6c7fa969 (patch) | |
tree | 9beb25da065c03bc89f295d4a1fc274af0b6c034 /storage/example/ha_example.cc | |
parent | c669e764d86a5b575df41d287947816878e21697 (diff) | |
parent | 1abc476f0b4fe60cb268fc68cefd9b5a479983ac (diff) | |
download | mariadb-git-b0998583f8e7331245597a7bf9a878cf6c7fa969.tar.gz |
Merge 10.6 into 10.7st-10.7-merge
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); } |