~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.cc

  • Committer: Joe Daly
  • Date: 2010-03-08 04:23:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1380.
  • Revision ID: skinny.moey@gmail.com-20100308042354-7k0jibdqaxkhac7o
scoreboardĀ implementationĀ forĀ statistics

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/* This implements 'user defined functions' */
22
22
#include "config.h"
23
 
 
24
 
#include <drizzled/unordered_map.h>
25
 
 
26
23
#include <drizzled/gettext.h>
 
24
#include "drizzled/hash.h"
27
25
#include "drizzled/plugin/function.h"
28
26
 
29
27
using namespace std;
31
29
namespace drizzled
32
30
{
33
31
 
34
 
typedef unordered_map<string, const plugin::Function *> UdfMap;
 
32
typedef hash_map<string, const plugin::Function *> UdfMap;
35
33
static UdfMap udf_registry;
36
34
 
37
35
bool plugin::Function::addPlugin(const plugin::Function *udf)