~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

Table index up to SE merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  const char *table_type(void) const { return "CSV"; }
102
102
  const char *index_type(uint32_t)
103
103
  { return "NONE"; }
104
 
  uint32_t index_flags(uint32_t, uint32_t, bool) const
105
 
  {
106
 
    /*
107
 
      We will never have indexes so this will never be called(AKA we return
108
 
      zero)
109
 
    */
110
 
    return 0;
111
 
  }
 
104
 
112
105
  /*
113
106
     Called in test_quick_select to determine if indexes should be used.
114
107
   */
115
108
  virtual double scan_time() { return (double) (stats.records+stats.deleted) / 20.0+10; }
 
109
 
116
110
  /* The next method will never be called */
117
111
  virtual bool fast_key_read() { return 1;}
118
112
  /*