Commit 4bce203f authored by brian@zim.(none)'s avatar brian@zim.(none)

Merge zim.(none):/home/brian/mysql/merge-5.1

into  zim.(none):/home/brian/mysql/arch-5.1
parents 8b80901d f9a02811
...@@ -301,7 +301,6 @@ struct st_mysql_ftparser ...@@ -301,7 +301,6 @@ struct st_mysql_ftparser
struct st_mysql_storage_engine struct st_mysql_storage_engine
{ {
int interface_version; int interface_version;
struct handlerton *handlerton;
}; };
#endif #endif
......
...@@ -10749,7 +10749,7 @@ SHOW_VAR ndb_status_variables_export[]= { ...@@ -10749,7 +10749,7 @@ SHOW_VAR ndb_status_variables_export[]= {
}; };
struct st_mysql_storage_engine ndbcluster_storage_engine= struct st_mysql_storage_engine ndbcluster_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, ndbcluster_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(ndbcluster) mysql_declare_plugin(ndbcluster)
{ {
......
...@@ -5632,7 +5632,7 @@ static int free_share(PARTITION_SHARE *share) ...@@ -5632,7 +5632,7 @@ static int free_share(PARTITION_SHARE *share)
#endif /* NOT_USED */ #endif /* NOT_USED */
struct st_mysql_storage_engine partition_storage_engine= struct st_mysql_storage_engine partition_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, partition_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(partition) mysql_declare_plugin(partition)
{ {
......
...@@ -4678,7 +4678,7 @@ err1: ...@@ -4678,7 +4678,7 @@ err1:
} }
struct st_mysql_storage_engine binlog_storage_engine= struct st_mysql_storage_engine binlog_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, binlog_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(binlog) mysql_declare_plugin(binlog)
{ {
......
...@@ -1571,7 +1571,7 @@ bool ha_archive::check_and_repair(THD *thd) ...@@ -1571,7 +1571,7 @@ bool ha_archive::check_and_repair(THD *thd)
} }
struct st_mysql_storage_engine archive_storage_engine= struct st_mysql_storage_engine archive_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, archive_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(archive) mysql_declare_plugin(archive)
{ {
......
...@@ -212,7 +212,7 @@ static int blackhole_init(void *p) ...@@ -212,7 +212,7 @@ static int blackhole_init(void *p)
} }
struct st_mysql_storage_engine blackhole_storage_engine= struct st_mysql_storage_engine blackhole_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, blackhole_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(blackhole) mysql_declare_plugin(blackhole)
{ {
......
...@@ -1516,7 +1516,7 @@ bool ha_tina::check_if_incompatible_data(HA_CREATE_INFO *info, ...@@ -1516,7 +1516,7 @@ bool ha_tina::check_if_incompatible_data(HA_CREATE_INFO *info,
} }
struct st_mysql_storage_engine csv_storage_engine= struct st_mysql_storage_engine csv_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, tina_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(csv) mysql_declare_plugin(csv)
{ {
......
...@@ -703,7 +703,7 @@ int ha_example::create(const char *name, TABLE *table_arg, ...@@ -703,7 +703,7 @@ int ha_example::create(const char *name, TABLE *table_arg,
} }
struct st_mysql_storage_engine example_storage_engine= struct st_mysql_storage_engine example_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, example_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(example) mysql_declare_plugin(example)
......
...@@ -2882,7 +2882,7 @@ int ha_federated::execute_simple_query(const char *query, int len) ...@@ -2882,7 +2882,7 @@ int ha_federated::execute_simple_query(const char *query, int len)
} }
struct st_mysql_storage_engine federated_storage_engine= struct st_mysql_storage_engine federated_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, federated_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(federated) mysql_declare_plugin(federated)
{ {
......
...@@ -701,7 +701,7 @@ bool ha_heap::check_if_incompatible_data(HA_CREATE_INFO *info, ...@@ -701,7 +701,7 @@ bool ha_heap::check_if_incompatible_data(HA_CREATE_INFO *info,
} }
struct st_mysql_storage_engine heap_storage_engine= struct st_mysql_storage_engine heap_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, heap_hton}; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(heap) mysql_declare_plugin(heap)
{ {
......
...@@ -7607,7 +7607,7 @@ SHOW_VAR innodb_status_variables_export[]= { ...@@ -7607,7 +7607,7 @@ SHOW_VAR innodb_status_variables_export[]= {
}; };
struct st_mysql_storage_engine innobase_storage_engine= struct st_mysql_storage_engine innobase_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, innobase_hton}; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(innobase) mysql_declare_plugin(innobase)
{ {
......
...@@ -1801,7 +1801,7 @@ static int myisam_init(void *p) ...@@ -1801,7 +1801,7 @@ static int myisam_init(void *p)
} }
struct st_mysql_storage_engine myisam_storage_engine= struct st_mysql_storage_engine myisam_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, myisam_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(myisam) mysql_declare_plugin(myisam)
{ {
......
...@@ -568,7 +568,7 @@ static int myisammrg_init(void *p) ...@@ -568,7 +568,7 @@ static int myisammrg_init(void *p)
} }
struct st_mysql_storage_engine myisammrg_storage_engine= struct st_mysql_storage_engine myisammrg_storage_engine=
{ MYSQL_HANDLERTON_INTERFACE_VERSION, myisammrg_hton }; { MYSQL_HANDLERTON_INTERFACE_VERSION };
mysql_declare_plugin(myisammrg) mysql_declare_plugin(myisammrg)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment