~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function_container.cc

  • Committer: Brian Aker
  • Date: 2010-12-23 22:20:46 UTC
  • mto: (2026.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2027.
  • Revision ID: brian@tangent.org-20101223222046-152kydsd1cyexfme
Update to tests, we just want to look at our own tables, not global.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
#include <drizzled/plugin/table_function.h>
23
 
#include <drizzled/function_container.h>
 
21
#include "config.h"
 
22
#include "drizzled/plugin/table_function.h"
 
23
#include "drizzled/function_container.h"
24
24
 
25
25
#include <iostream>
26
26
 
27
27
using namespace std;
28
28
 
29
 
static drizzled::FunctionContainer::Map _functions_map;
 
29
static drizzled::NativeFunctionsMap native_functions_map;
30
30
 
31
31
namespace drizzled
32
32
{
33
33
 
34
 
FunctionContainer::Map &FunctionContainer::getMap()
 
34
NativeFunctionsMap &FunctionContainer::getMap()
35
35
{
36
 
  return _functions_map;
 
36
  return native_functions_map;
37
37
}
38
38
 
39
39
} /* namespace drizzled */