~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.h

InnoDB compiles clean. Need to send this patch upstream. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
        enum row_type get_row_type() const;
91
91
 
92
92
        const char* table_type() const { return("InnoDB");}
93
 
        const char *index_type(uint key_number) { return "BTREE"; }
 
93
        const char *index_type(uint key_number __attribute__((__unused__)))
 
94
        { return "BTREE"; }
94
95
        const char** bas_ext() const;
95
96
        Table_flags table_flags() const;
96
 
        uint32_t index_flags(uint idx, uint part, bool all_parts) const
 
97
        uint32_t index_flags(uint idx __attribute__((__unused__)),
 
98
                             uint part __attribute__((__unused__)),
 
99
                             bool all_parts __attribute__((__unused__))) const
97
100
        {
98
101
          return (HA_READ_NEXT |
99
102
                  HA_READ_PREV |