~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.cc

  • Committer: Brian Aker
  • Date: 2010-07-09 20:51:34 UTC
  • mfrom: (1643.4.3 drizzle)
  • Revision ID: brian@gaz-20100709205134-ru4s0889youfrmm5
Merge of Patrick

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  return (*iter).second;
41
41
}
42
42
 
43
 
void TableFunctionContainer::getNames(const string &predicate,
 
43
void TableFunctionContainer::getNames(string predicate,
44
44
                                      std::set<std::string> &set_of_names)
45
45
{
 
46
  std::transform(predicate.begin(), predicate.end(),
 
47
                 predicate.begin(), ::tolower);
 
48
 
46
49
  for (ToolMap::iterator it= table_map.begin();
47
50
       it != table_map.end();
48
51
       it++)