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 | |
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')
-rw-r--r-- | storage/csv/ha_tina.cc | 4 | ||||
-rw-r--r-- | storage/example/ha_example.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/storage/csv/ha_tina.cc b/storage/csv/ha_tina.cc index 7bb68d4502b..78ea1b9fc1d 100644 --- a/storage/csv/ha_tina.cc +++ b/storage/csv/ha_tina.cc @@ -949,11 +949,11 @@ mysql_declare_plugin MYSQL_STORAGE_ENGINE_PLUGIN, &tina_hton, tina_hton.name, - 0x00010000 /* 0.1.0 */, "Brian Aker, MySQL AB", "CSV Storage Engine", tina_init_func, /* Plugin Init */ - tina_done_func /* Plugin Deinit */ + tina_done_func, /* Plugin Deinit */ + 0x0100 /* 1.0 */, } mysql_declare_plugin_end; 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; |