~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.cc

  • Committer: Mark Atwood
  • Date: 2011-08-01 05:22:14 UTC
  • mfrom: (1919.3.53 drizzle_pbms)
  • Revision ID: me@mark.atwood.name-20110801052214-3wdsx3xgld6b5v4f
mergeĀ lp:~barry-leslie/drizzle/drizzle_pbms

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
plugin::TableFunction *TableFunctionContainer::getFunction(const std::string &path)
32
32
{
33
 
  return find_ptr2(table_map, path);
 
33
  ToolMap::mapped_type* ptr= find_ptr(table_map, path);
 
34
  return ptr ? *ptr : NULL;
34
35
}
35
36
 
36
37
void TableFunctionContainer::getNames(const string &predicate, std::set<std::string> &set_of_names)