~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

  • Committer: lbieber
  • Date: 2010-10-01 12:16:18 UTC
  • mfrom: (1802.1.1 fix-bug-651256)
  • Revision ID: lbieber@orisndriz08-20101001121618-uqcboygpjwbiglem
Merge Vijay - fix bug 651256 - Remove --help-extended

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "drizzled/atomics.h"
28
28
#include "drizzled/plugin/plugin.h"
29
29
 
30
 
#include "drizzled/visibility.h"
31
 
 
32
30
/**
33
31
 * @file Defines the API for a QueryRewriter.  
34
32
 */
42
40
/**
43
41
 * Class which rewrites queries
44
42
 */
45
 
class DRIZZLED_API QueryRewriter : public Plugin
 
43
class QueryRewriter : public Plugin
46
44
{
47
45
 
48
46
public:
71
69
   * TODO: does it make sense to have multiple rewriters?
72
70
   *
73
71
   * @param[in] schema the schema the current session is
74
 
   * @param[out] to_rewrite the query to rewrite
 
72
   * @param[out] to_rewrite string representing the query to rewrite
75
73
   */
76
74
  static void rewriteQuery(const std::string &schema, std::string &to_rewrite);
77
75