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

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-09 06:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20101209060239-t0ujftvcvd558yno
Tags: upstream-2010.12.05
ImportĀ upstreamĀ versionĀ 2010.12.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
#include <vector>
30
30
 
31
 
using namespace std;
32
 
 
33
31
namespace drizzled
34
32
{
35
33
 
61
59
  return false;
62
60
}
63
61
 
64
 
plugin::TableFunction *plugin::TableFunction::getFunction(const string &arg)
 
62
plugin::TableFunction *plugin::TableFunction::getFunction(const std::string &arg)
65
63
{
66
64
  return table_functions.getFunction(arg);
67
65
}
68
66
 
69
 
void plugin::TableFunction::getNames(const string &arg,
70
 
                                     set<std::string> &set_of_names)
 
67
void plugin::TableFunction::getNames(const std::string &arg,
 
68
                                     std::set<std::string> &set_of_names)
71
69
{
72
70
  table_functions.getNames(arg, set_of_names);
73
71
}