diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-03-21 20:21:58 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-03-31 17:42:33 +0200 |
commit | 8ab693847e83b62a4df1903333c8aac416418f8a (patch) | |
tree | 38a971a9cfaa96616a62c095d89abc1242f5bbca /sql/sql_plugin.h | |
parent | 64be8c2bf2c939b39d7c83eb06e26123d8347099 (diff) | |
download | mariadb-git-8ab693847e83b62a4df1903333c8aac416418f8a.tar.gz |
cleanup: remove unused PLUGIN_INIT_SKIP_DYNAMIC_LOADING
Diffstat (limited to 'sql/sql_plugin.h')
-rw-r--r-- | sql/sql_plugin.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/sql_plugin.h b/sql/sql_plugin.h index 352d1e22ac4..8b200cfc6fd 100644 --- a/sql/sql_plugin.h +++ b/sql/sql_plugin.h @@ -55,9 +55,8 @@ extern ulong dlopen_count; /* the following flags are valid for plugin_init() */ -#define PLUGIN_INIT_SKIP_DYNAMIC_LOADING 1U -#define PLUGIN_INIT_SKIP_PLUGIN_TABLE 2U -#define PLUGIN_INIT_SKIP_INITIALIZATION 4U +#define PLUGIN_INIT_SKIP_PLUGIN_TABLE 1U +#define PLUGIN_INIT_SKIP_INITIALIZATION 2U #define INITIAL_LEX_PLUGIN_LIST_SIZE 16 |