~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Stewart Smith
  • Author(s): Brian Aker
  • Date: 2009-07-21 05:16:27 UTC
  • mto: (1093.1.29 captain)
  • mto: This revision was merged to the branch mainline in revision 1102.
  • Revision ID: stewart@flamingspork.com-20090721051627-uhgp5av31lehrh9s
Moved file based flag up to engine (from handler). checkLowercaseNames() is now a ember of StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
{
72
72
public:
73
73
  MyisamEngine(string name_arg)
74
 
   : StorageEngine(name_arg, HTON_CAN_RECREATE | HTON_TEMPORARY_ONLY) {}
 
74
   : StorageEngine(name_arg, HTON_CAN_RECREATE | HTON_TEMPORARY_ONLY | HTON_FILE_BASED) {}
75
75
 
76
76
  virtual handler *create(TableShare *table,
77
77
                          MEM_ROOT *mem_root)
508
508
                  HA_DUPLICATE_POS |
509
509
                  HA_CAN_INDEX_BLOBS |
510
510
                  HA_AUTO_PART_KEY |
511
 
                  HA_FILE_BASED |
512
511
                  HA_NO_TRANSACTIONS |
513
512
                  HA_HAS_RECORDS |
514
513
                  HA_STATS_RECORDS_IS_EXACT |