~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.h

  • Committer: Brian Aker
  • Date: 2009-11-18 06:11:12 UTC
  • mfrom: (1220.1.10 staging)
  • Revision ID: brian@gaz-20091118061112-tyf4qrfr5v7i946b
Monty + Brian Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
  const char *index_type(uint32_t inx);
44
44
  enum row_type get_row_type() const;
45
 
  uint64_t table_flags() const
46
 
  {
47
 
    return (HA_FAST_KEY_READ | HA_NO_BLOBS | HA_NULL_IN_KEY |
48
 
            HA_REC_NOT_IN_SEQ | HA_NO_TRANSACTIONS |
49
 
            HA_HAS_RECORDS | HA_STATS_RECORDS_IS_EXACT);
50
 
  }
51
45
  uint32_t index_flags(uint32_t inx, uint32_t part, bool all_parts) const;
52
46
  const key_map *keys_to_use_for_scanning() { return &btree_keys; }
53
47
  uint32_t max_supported_keys()          const { return MAX_KEY; }