~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

  • Committer: Brian Aker
  • Date: 2010-12-08 18:53:46 UTC
  • mto: This revision was merged to the branch mainline in revision 1983.
  • Revision ID: brian@tangent.org-20101208185346-89uak2ofyivk1yss
Update schema, make sure that it always ruturns a valid string (it just
makes the entire interface simpler to use).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef DRIZZLED_PLUGIN_QUERY_REWRITE_H
25
25
#define DRIZZLED_PLUGIN_QUERY_REWRITE_H
26
26
 
27
 
#include <drizzled/atomics.h>
28
 
#include <drizzled/plugin/plugin.h>
29
 
 
30
 
#include <drizzled/visibility.h>
 
27
#include "drizzled/atomics.h"
 
28
#include "drizzled/plugin/plugin.h"
 
29
#include "drizzled/session.h"
31
30
 
32
31
/**
33
32
 * @file Defines the API for a QueryRewriter.  
42
41
/**
43
42
 * Class which rewrites queries
44
43
 */
45
 
class DRIZZLED_API QueryRewriter : public Plugin
 
44
class QueryRewriter : public Plugin
46
45
{
47
46
 
48
47
public: