~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.cc

  • Committer: Brian Aker
  • Date: 2010-09-10 22:40:11 UTC
  • mto: (1759.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1762.
  • Revision ID: brian@tangent.org-20100910224011-gya7cep2bl8h7vdw
Adding in data dictionary table to list out functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
namespace drizzled
34
34
{
35
35
 
36
 
typedef boost::unordered_map<string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> UdfMap;
37
 
static UdfMap udf_registry;
 
36
static plugin::Function::UdfMap udf_registry;
 
37
 
 
38
const plugin::Function::UdfMap &plugin::Function::getMap()
 
39
{
 
40
  return udf_registry;
 
41
}
38
42
 
39
43
bool plugin::Function::addPlugin(const plugin::Function *udf)
40
44
{