~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.h

  • Committer: Monty Taylor
  • Date: 2008-07-05 23:05:08 UTC
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: monty@inaugust.com-20080705230508-9txkg702oln6hxjl
First large swath at getting handler stuff clean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
  {
85
85
  }
86
86
  const char *table_type() const { return "ARCHIVE"; }
87
 
  const char *index_type(uint inx) { return "NONE"; }
 
87
  const char *index_type(uint inx __attribute__((__unused__)))
 
88
  { return "NONE"; }
88
89
  const char **bas_ext() const;
89
90
  uint64_t table_flags() const
90
91
  {
94
95
            HA_HAS_RECORDS |
95
96
            HA_FILE_BASED | HA_CAN_INSERT_DELAYED | HA_CAN_GEOMETRY);
96
97
  }
97
 
  ulong index_flags(uint idx, uint part, bool all_parts) const
 
98
  ulong index_flags(uint idx __attribute__((__unused__)),
 
99
                    uint part __attribute__((__unused__)),
 
100
                    bool all_parts __attribute__((__unused__))) const
98
101
  {
99
102
    return HA_ONLY_WHOLE_INDEX;
100
103
  }