mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
handlerton cleanup:
duplicate fields removed, st_mysql_storage_engine added to support run-time handlerton initialization (no compiler warnings), handler API is now tied to MySQL version, handlerton->plugin mapping added (slot-based), dummy default_hton removed, plugin-type-specific initialization generalized, built-in plugins are now initialized too, --default-storage-engine no longer needs a list of storage engines in handle_options(). mysql-test-run.pl bugfixes
This commit is contained in:
@ -61,6 +61,8 @@ struct st_plugin_int
|
||||
uint ref_count; /* number of threads using the plugin */
|
||||
};
|
||||
|
||||
typedef int (*plugin_type_init)(struct st_plugin_int *);
|
||||
|
||||
extern char *opt_plugin_dir_ptr;
|
||||
extern char opt_plugin_dir[FN_REFLEN];
|
||||
extern LEX_STRING plugin_type_names[];
|
||||
|
Reference in New Issue
Block a user