~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/compressionudf.cc

  • Committer: Lee Bieber
  • Date: 2011-01-25 02:10:42 UTC
  • mfrom: (2109.1.4 build)
  • Revision ID: kalebral@gmail.com-20110125021042-ocqa0v509ae7fmtz
Need to add a "drop table a" in execute.wait test
Add execute test suite to regular test run
Merge Lee - fix second part of 705699, check for both client and server before building and testing rabbitmq plugin
Merge Shrews - Changes TransactionServices methods to use references to Session objects instead of pointers.

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;