diff options
author | unknown <acurtis@xiphis.org> | 2005-12-21 12:50:50 -0800 |
---|---|---|
committer | unknown <acurtis@xiphis.org> | 2005-12-21 12:50:50 -0800 |
commit | c3c43e129bfbad98917e5e01b7d926ae69706a21 (patch) | |
tree | 4a1015558225260892dd15f344cb6184480393ee /storage/example/ha_example.cc | |
parent | 5459c9709e047e3424001504f6cb99265ea650ff (diff) | |
download | mariadb-git-c3c43e129bfbad98917e5e01b7d926ae69706a21.tar.gz |
plugin version changes
include/plugin.h:
relocate version
sql/handler.cc:
no version checks here
sql/handler.h:
version is kinda short
sql/sql_show.cc:
version is a short, rearrange and show all
storage/csv/ha_tina.cc:
rearrange version
storage/example/ha_example.cc:
rearrange version
Diffstat (limited to 'storage/example/ha_example.cc')
-rw-r--r-- | storage/example/ha_example.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 74f25d1411d..79e13f3502d 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -730,11 +730,11 @@ mysql_declare_plugin MYSQL_STORAGE_ENGINE_PLUGIN, &example_hton, example_hton.name, - 0x01000000 /* 1.0.0 */, "Brian Aker, MySQL AB", "Example Storage Engine", tina_init_func, /* Plugin Init */ - tina_done_func /* Plugin Deinit */ + tina_done_func, /* Plugin Deinit */ + 0x0001 /* 0.1 */, } mysql_declare_plugin_end; |