~drizzle-trunk/drizzle/development

« back to all changes in this revision

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