~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/compressionudf.cc

  • Committer: Joseph Daly
  • Date: 2010-10-24 03:19:07 UTC
  • mto: (1856.2.16 transaction_id_innodb)
  • mto: This revision was merged to the branch mainline in revision 1900.
  • Revision ID: skinny.moey@gmail.com-20101024031907-cnkdjmjycx62jsv0
create schema changes

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 <config.h>
17
 
#include <drizzled/plugin/function.h>
 
16
#include "config.h"
 
17
#include "drizzled/plugin/function.h"
18
18
 
19
 
#include <plugin/compression/compress.h>
20
 
#include <plugin/compression/uncompress.h>
21
 
#include <plugin/compression/uncompressed_length.h>
 
19
#include "plugin/compression/compress.h"
 
20
#include "plugin/compression/uncompress.h"
 
21
#include "plugin/compression/uncompressed_length.h"
22
22
 
23
23
using namespace std;
24
24
using namespace drizzled;
50
50
  "UDFs for compression functions",
51
51
  PLUGIN_LICENSE_GPL,
52
52
  compressionudf_plugin_init, /* Plugin Init */
53
 
  NULL,   /* depends */
 
53
  NULL,   /* system variables */
54
54
  NULL    /* config options */
55
55
}
56
56
DRIZZLE_DECLARE_PLUGIN_END;