~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.cc

Merged trunk and use-std-unordred.

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)