13
13
along with this program; if not, write to the Free Software
14
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
17
#include "drizzled/plugin/function.h"
16
#include <drizzled/server_includes.h>
17
#include <drizzled/sql_udf.h>
19
19
#include "plugin/compression/compress.h"
20
20
#include "plugin/compression/uncompress.h"
21
21
#include "plugin/compression/uncompressed_length.h"
24
using namespace drizzled;
26
plugin::Create_function<Item_func_compress> *compressudf= NULL;
27
plugin::Create_function<Item_func_uncompress> *uncompressudf= NULL;
28
plugin::Create_function<Item_func_uncompressed_length>
29
*uncompressed_lengthudf= NULL;
31
static int compressionudf_plugin_init(module::Context &context)
33
compressudf= new plugin::Create_function<Item_func_compress>("compress");
35
new plugin::Create_function<Item_func_uncompress>("uncompress");
36
uncompressed_lengthudf=
37
new plugin::Create_function<Item_func_uncompressed_length>("uncompressed_length");
38
context.add(compressudf);
39
context.add(uncompressudf);
40
context.add(uncompressed_lengthudf);
44
DRIZZLE_DECLARE_PLUGIN
25
Create_function<Item_func_compress> compressudf("compress");
26
Create_function<Item_func_uncompress> uncompressudf("uncompress");
27
Create_function<Item_func_uncompressed_length>
28
uncompressed_lengthudf("uncompressed_length");
30
static int compressionudf_plugin_init(PluginRegistry ®istry)
32
registry.add(&compressudf);
33
registry.add(&uncompressudf);
34
registry.add(&uncompressed_lengthudf);
38
static int compressionudf_plugin_deinit(PluginRegistry ®istry)
40
registry.remove(&compressudf);
41
registry.remove(&uncompressudf);
42
registry.remove(&uncompressed_lengthudf);
46
drizzle_declare_plugin(compression)
50
51
"UDFs for compression functions",
51
52
PLUGIN_LICENSE_GPL,
52
53
compressionudf_plugin_init, /* Plugin Init */
54
compressionudf_plugin_deinit, /* Plugin Deinit */
55
NULL, /* status variables */
56
NULL, /* system variables */
54
57
NULL /* config options */
56
DRIZZLE_DECLARE_PLUGIN_END;
59
drizzle_declare_plugin_end;