~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

MergedĀ fromĀ me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    return new (mem_root) ha_tina(*this, table);
130
130
  }
131
131
 
 
132
  uint64_t table_flags() const
 
133
  {
 
134
    return (HA_NO_TRANSACTIONS | HA_NO_AUTO_INCREMENT);
 
135
  }
 
136
 
132
137
  const char **bas_ext() const {
133
138
    return ha_tina_exts;
134
139
  }
189
194
                               const bool,
190
195
                               drizzled::message::Table *table_proto)
191
196
{
192
 
  int error= 1;
 
197
  int error= ENOENT;
193
198
  ProtoCache::iterator iter;
194
199
 
195
200
  pthread_mutex_lock(&proto_cache_mutex);