~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_engine.h

I_S now provides its own tables via the SE interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  int rnd_pos(unsigned char * buf, unsigned char *pos);
55
55
  void position(const unsigned char *record);
56
56
  int info(uint32_t flag);
57
 
  int external_lock(Session *session, int lock_type);
58
57
  THR_LOCK_DATA **store_lock(Session *session,
59
58
                             THR_LOCK_DATA **to,
60
59
                             enum thr_lock_type lock_type);
96
95
 
97
96
  int deleteTableImplementation(Session*, const string table_name); 
98
97
 
99
 
  void doGetTableNames(CachedDirectory&, string& db, set<string>& set_of_names)
100
 
  {
101
 
    if (db.compare("information_schema"))
102
 
      return;
103
 
    (void)set_of_names;
104
 
  }
 
98
  void doGetTableNames(CachedDirectory&, string& db, set<string>& set_of_names);
105
99
};
106
100
 
107
101
#endif /* PLUGIN_INFORMATION_ENGINE_HA_INFORMATION_ENGINE_H */