~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2008-11-19 08:07:10 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 590.
  • Revision ID: monty@inaugust.com-20081119080710-wjyg9i0hcfddzss4
Removed field includes from field.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <drizzled/session.h>
29
29
#include <drizzled/protocol.h>
30
30
#include <drizzled/table.h>
 
31
#include <drizzled/field/timestamp.h>
31
32
 
32
33
ulong myisam_recover_options= HA_RECOVER_NONE;
33
34
 
35
36
const char *myisam_recover_names[] =
36
37
{ "DEFAULT", "BACKUP", "FORCE", "QUICK", NULL};
37
38
TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"",
38
 
                                 myisam_recover_names, NULL};
 
39
                                 myisam_recover_names, NULL};
39
40
 
40
41
const char *myisam_stats_method_names[] = {"nulls_unequal", "nulls_equal",
41
42
                                           "nulls_ignored", NULL};