~stewart/drizzle/embedded-innodb-create-table-with-index

« back to all changes in this revision

Viewing changes to plugin/function_engine/function.h

  • Committer: Stewart Smith
  • Date: 2010-03-11 01:15:57 UTC
  • mfrom: (1319.1.29)
  • Revision ID: stewart@flamingspork.com-20100311011557-49r2ye69bqh4abti
Merged embedded-innodb-rnd-read into embedded-innodb-create-table-with-index.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    return EPERM;
52
52
  }
53
53
 
54
 
  int doDropTable(drizzled::Session&, const std::string) 
 
54
  int doDropTable(drizzled::Session&, const std::string&) 
55
55
  { 
56
56
    return EPERM; 
57
57
  }
69
69
    return drizzled::plugin::TableFunction::getFunction(path);
70
70
  }
71
71
 
 
72
  bool doCanCreateTable(const drizzled::TableIdentifier &identifier);
 
73
 
 
74
 
72
75
  void doGetTableNames(drizzled::CachedDirectory&, 
73
76
                       std::string &db, 
74
77
                       std::set<std::string> &set_of_names);