~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/index_hint.cc

  • Committer: Jay Pipes
  • Date: 2009-09-21 14:33:44 UTC
  • mfrom: (1126.10.26 dtrace-probes)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: jpipes@serialcoder-20090921143344-jnarp7gcn6zmg19c
Merge fixes from Trond and Padraig on dtrace probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 *
28
28
 * Implementation of SQL index hints
29
29
 */
30
 
#include "config.h"
 
30
#include "drizzled/global.h"
31
31
#include "drizzled/sql_string.h"
32
32
#include "drizzled/session.h"
33
33
#include "drizzled/index_hint.h"
34
 
#include "drizzled/sql_table.h"
35
 
 
36
 
namespace drizzled
37
 
{
38
34
 
39
35
/*
40
36
 * Names of the index hints (for error messages). Keep in sync with
68
64
  }
69
65
  str->append(')');
70
66
}
71
 
 
72
 
} /* namespace drizzled */