~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.cc

Merge Brian - Adds random_number, random_string, and a counter table to DD.

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
{