~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
public:
35
35
  plugin::TableFunction *getFunction(const std::string &path);
36
36
 
37
 
  void getNames(const std::string &predicate,
38
 
                std::set<std::string> &set_of_names);
 
37
  void getNames(const std::string &predicate, std::set<std::string> &set_of_names);
39
38
 
40
39
 
41
40
  void addFunction(plugin::TableFunction *tool);
42
41
 
43
 
  const ToolMap& getTableContainer()
 
42
  const ToolMap& getTableContainer() const
44
43
  {
45
44
    return table_map;
46
45
  }