~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

fix pthread atomics. operator precedence is important. The unit test now passes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include "drizzled/atomics.h"
28
28
#include "drizzled/plugin/plugin.h"
29
 
#include "drizzled/session.h"
30
29
 
31
30
/**
32
31
 * @file Defines the API for a QueryRewriter.  
59
58
   * @param[in] schema the schema the current session is in
60
59
   * @param[out] to_rewrite string representing the query to rewrite
61
60
   */
62
 
  virtual void rewrite(const std::string &schema, Session::QueryString &to_rewrite)= 0; 
 
61
  virtual void rewrite(const std::string &schema, std::string &to_rewrite)= 0; 
63
62
 
64
63
  static bool addPlugin(QueryRewriter *in_rewriter);
65
64
  static void removePlugin(QueryRewriter *in_rewriter);
72
71
   * @param[in] schema the schema the current session is
73
72
   * @param[out] to_rewrite string representing the query to rewrite
74
73
   */
75
 
  static void rewriteQuery(const std::string &schema, Session::QueryString to_rewrite);
 
74
  static void rewriteQuery(const std::string &schema, std::string &to_rewrite);
76
75
 
77
76
private:
78
77