~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

  • Committer: Brian Aker
  • Date: 2009-05-06 06:59:53 UTC
  • mfrom: (1003.1.20 merge)
  • Revision ID: brian@gaz-20090506065953-4mrfmaty42e0ixpq
Merge handler cleanup (and ALTER TABLE cleanup) We go from 1 and 2 half
thought out systems... to just 1.

This should all be changed when we finish the StorageEngine rewrite

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
  const char **bas_ext() const;
106
106
  uint64_t table_flags() const
107
107
  {
108
 
    return (HA_NO_TRANSACTIONS | HA_REC_NOT_IN_SEQ | HA_NO_AUTO_INCREMENT |
109
 
            HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE);
 
108
    return (HA_NO_TRANSACTIONS | HA_REC_NOT_IN_SEQ | HA_NO_AUTO_INCREMENT);
110
109
  }
111
110
  uint32_t index_flags(uint32_t, uint32_t, bool) const
112
111
  {
152
151
  int info(uint);
153
152
  int delete_all_rows(void);
154
153
  int create(const char *name, Table *form, HA_CREATE_INFO *create_info);
155
 
  bool check_if_incompatible_data(HA_CREATE_INFO *info,
156
 
                                  uint32_t table_changes);
157
154
 
158
155
  THR_LOCK_DATA **store_lock(Session *session, THR_LOCK_DATA **to,
159
156
      enum thr_lock_type lock_type);