~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2009-11-18 06:11:12 UTC
  • mfrom: (1220.1.10 staging)
  • Revision ID: brian@gaz-20091118061112-tyf4qrfr5v7i946b
Monty + Brian Merge.

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);
1617
1622
}
1618
1623
 
1619
1624
 
1620
 
drizzle_declare_plugin(csv)
 
1625
drizzle_declare_plugin
1621
1626
{
1622
1627
  "CSV",
1623
1628
  "1.0",