~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
463
463
 
464
464
ha_myisam::ha_myisam(handlerton *hton, TABLE_SHARE *table_arg)
465
465
  :handler(hton, table_arg), file(0),
466
 
  int_table_flags(HA_NULL_IN_KEY | HA_CAN_FULLTEXT | HA_CAN_SQL_HANDLER |
467
 
                  HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE |
468
 
                  HA_DUPLICATE_POS | HA_CAN_INDEX_BLOBS | HA_AUTO_PART_KEY |
469
 
                  HA_FILE_BASED | HA_CAN_GEOMETRY | HA_NO_TRANSACTIONS |
470
 
                  HA_CAN_INSERT_DELAYED | HA_CAN_BIT_FIELD | HA_CAN_RTREEKEYS |
471
 
                  HA_HAS_RECORDS | HA_STATS_RECORDS_IS_EXACT |
472
 
                  HA_NEED_READ_RANGE_BUFFER | HA_MRR_CANT_SORT),
 
466
  int_table_flags(HA_NULL_IN_KEY |
 
467
                  HA_BINLOG_ROW_CAPABLE |
 
468
                  HA_BINLOG_STMT_CAPABLE |
 
469
                  HA_DUPLICATE_POS |
 
470
                  HA_CAN_INDEX_BLOBS |
 
471
                  HA_AUTO_PART_KEY |
 
472
                  HA_FILE_BASED |
 
473
                  HA_NO_TRANSACTIONS |
 
474
                  HA_HAS_RECORDS |
 
475
                  HA_STATS_RECORDS_IS_EXACT |
 
476
                  HA_NEED_READ_RANGE_BUFFER |
 
477
                  HA_MRR_CANT_SORT),
473
478
   can_enable_indexes(1)
474
479
{}
475
480