~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

Blackhole, CSV, Pool of Threads,Single Thread, Multi Thread.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
using namespace std;
57
57
 
58
 
static const string engine_name("CSV");
59
 
 
60
58
/*
61
59
  unsigned char + unsigned char + uint64_t + uint64_t + uint64_t + uint64_t + unsigned char
62
60
*/
221
219
static int tina_init_func(drizzled::plugin::Registry &registry)
222
220
{
223
221
 
224
 
  tina_engine= new Tina(engine_name);
 
222
  tina_engine= new Tina("CSV");
225
223
  registry.add(tina_engine);
226
224
 
227
225
  pthread_mutex_init(&tina_mutex,MY_MUTEX_INIT_FAST);