~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/index_hint.cc

  • Committer: Brian Aker
  • Date: 2009-04-07 06:38:05 UTC
  • mfrom: (975.1.3 merge)
  • Revision ID: brian@gaz-20090407063805-vd0t7tim8vxkqz4j
Merge of session lock removal

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 */