~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/index_hint.cc

  • Committer: Monty Taylor
  • Date: 2009-12-14 22:00:27 UTC
  • mto: (1241.9.10 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091214220027-kpmfbl452nctzc0g
pandora-build v0.85 - Fixed C++ standard setting.

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
34
#include "drizzled/sql_table.h"
35
35
 
36
 
namespace drizzled
37
 
{
38
 
 
39
36
/*
40
37
 * Names of the index hints (for error messages). Keep in sync with
41
38
 * index_hint_type
68
65
  }
69
66
  str->append(')');
70
67
}
71
 
 
72
 
} /* namespace drizzled */