~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

  • Committer: Zimin
  • Date: 2010-06-30 06:36:56 UTC
  • mto: (1643.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1644.
  • Revision ID: ziminq@gmail.com-20100630063656-5oa531u1mfyn6ybl
move the comment of 'create' in TableList as well

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.  
70
69
   * TODO: does it make sense to have multiple rewriters?
71
70
   *
72
71
   * @param[in] schema the schema the current session is
73
 
   * @param[out] to_rewrite the query to rewrite
 
72
   * @param[out] to_rewrite string representing the query to rewrite
74
73
   */
75
74
  static void rewriteQuery(const std::string &schema, std::string &to_rewrite);
76
75