~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blackhole/ha_blackhole.h

  • Committer: Brian Aker
  • Date: 2009-08-10 16:55:06 UTC
  • mfrom: (1112.1.4 merge)
  • Revision ID: brian@gaz-20090810165506-rgqyrd7pwrmkaw3d
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
public:
48
48
  ha_blackhole(StorageEngine *engine, TableShare *table_arg);
49
49
  ~ha_blackhole()
50
 
  {
51
 
  }
 
50
  {}
52
51
 
53
52
  /*
54
53
    The name of the index type that will be used for display
57
56
  const char *index_type(uint32_t key_number);
58
57
  uint64_t table_flags() const
59
58
  {
60
 
    return(HA_NULL_IN_KEY |
61
 
           HA_BINLOG_STMT_CAPABLE |
62
 
           HA_CAN_INDEX_BLOBS |
63
 
           HA_AUTO_PART_KEY |
64
 
           HA_FILE_BASED);
 
59
    return(HA_NULL_IN_KEY | HA_CAN_INDEX_BLOBS | HA_AUTO_PART_KEY);
65
60
  }
66
61
  uint32_t index_flags(uint32_t inx, uint32_t part, bool all_parts) const;
67
62
  /* The following defines can be increased if necessary */