23 #include <plugin/function_dictionary/dictionary.h>
25 #include <drizzled/atomics.h>
26 #include <drizzled/session.h>
32 #define FUNCTION_NAME_LEN 64
34 function_dictionary::Functions::Functions() :
35 plugin::TableFunction(
"DATA_DICTIONARY",
"FUNCTIONS")
37 add_field(
"FUNCTION_NAME", plugin::TableFunction::STRING, FUNCTION_NAME_LEN,
false);
40 bool function_dictionary::Functions::Generator::populate()
42 std::string *name_ptr;
44 while ((name_ptr= functions))
TODO: Rename this file - func.h is stupid.