diff options
author | acurtis/antony@xiphis.org/ltantony.xiphis.org <> | 2006-08-30 14:27:29 -0700 |
---|---|---|
committer | acurtis/antony@xiphis.org/ltantony.xiphis.org <> | 2006-08-30 14:27:29 -0700 |
commit | 38a59efbc9828afcead6389f6abab8a5e35eb314 (patch) | |
tree | 28c8cec32c86a73c7a9119feb5b6c32e27cd9bf2 /plugin | |
parent | 7ae3682dc8e67cc6398c6bb2c1b1aa3a4732b979 (diff) | |
download | mariadb-git-38a59efbc9828afcead6389f6abab8a5e35eb314.tar.gz |
add 2 placeholder values for config and system variables.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/fulltext/plugin_example.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin/fulltext/plugin_example.c b/plugin/fulltext/plugin_example.c index beb02128774..34350e317ba 100644 --- a/plugin/fulltext/plugin_example.c +++ b/plugin/fulltext/plugin_example.c @@ -225,7 +225,9 @@ mysql_declare_plugin(ftexample) simple_parser_plugin_init, /* init function (when loaded) */ simple_parser_plugin_deinit,/* deinit function (when unloaded) */ 0x0001, /* version */ - simple_status /* status variables */ + simple_status, /* status variables */ + NULL, /* system variables */ + NULL /* config options */ } mysql_declare_plugin_end; |