~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/compressionudf.cc

  • Committer: Brian Aker
  • Date: 2009-08-17 22:19:53 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817221953-6qzdxpi8l9nd342y
More dead option removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 */
15
15
 
16
 
#include "drizzled/server_includes.h"
17
 
#include "drizzled/plugin/function.h"
 
16
#include <drizzled/server_includes.h>
 
17
#include <drizzled/sql_udf.h>
18
18
 
19
19
#include "plugin/compression/compress.h"
20
20
#include "plugin/compression/uncompress.h"
21
21
#include "plugin/compression/uncompressed_length.h"
22
 
 
23
 
using namespace std;
24
 
using namespace drizzled;
25
 
 
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;
30
 
 
31
 
static int compressionudf_plugin_init(plugin::Registry &registry)
 
22
#include <string>
 
23
 
 
24
 
 
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");
 
29
 
 
30
static int compressionudf_plugin_init(drizzled::plugin::Registry &registry)
32
31
{
33
 
  compressudf= new plugin::Create_function<Item_func_compress>("compress");
34
 
  uncompressudf=
35
 
    new plugin::Create_function<Item_func_uncompress>("uncompress");
36
 
  uncompressed_lengthudf=
37
 
    new plugin::Create_function<Item_func_uncompressed_length>("uncompressed_length");
38
 
  registry.add(compressudf);
39
 
  registry.add(uncompressudf);
40
 
  registry.add(uncompressed_lengthudf);
 
32
  registry.add(&compressudf);
 
33
  registry.add(&uncompressudf);
 
34
  registry.add(&uncompressed_lengthudf);
41
35
  return 0;
42
36
}
43
37
 
44
 
static int compressionudf_plugin_deinit(plugin::Registry &registry)
 
38
static int compressionudf_plugin_deinit(drizzled::plugin::Registry &registry)
45
39
{
46
 
  registry.remove(compressudf);
47
 
  registry.remove(uncompressudf);
48
 
  registry.remove(uncompressed_lengthudf);
49
 
  delete compressudf;
50
 
  delete uncompressudf;
51
 
  delete uncompressed_lengthudf;
 
40
  registry.remove(&compressudf);
 
41
  registry.remove(&uncompressudf);
 
42
  registry.remove(&uncompressed_lengthudf);
52
43
  return 0;
53
44
}
54
45