~jaypipes/drizzle/item-class-file-reorg

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.h

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

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 __attribute__((__unused__)))
 
87
  const char *index_type(uint inx __attribute__((unused)))
88
88
  { return "NONE"; }
89
89
  const char **bas_ext() const;
90
90
  uint64_t table_flags() const
95
95
            HA_HAS_RECORDS |
96
96
            HA_FILE_BASED | HA_CAN_INSERT_DELAYED | HA_CAN_GEOMETRY);
97
97
  }
98
 
  uint32_t index_flags(uint idx __attribute__((__unused__)),
99
 
                       uint part __attribute__((__unused__)),
100
 
                       bool all_parts __attribute__((__unused__))) const
 
98
  uint32_t index_flags(uint idx __attribute__((unused)),
 
99
                       uint part __attribute__((unused)),
 
100
                       bool all_parts __attribute__((unused))) const
101
101
  {
102
102
    return HA_ONLY_WHOLE_INDEX;
103
103
  }