~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function_container.h

  • Committer: Brian Aker
  • Date: 2010-09-11 21:30:52 UTC
  • mto: (1759.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1762.
  • Revision ID: brian@tangent.org-20100911213052-jkz020dgfjl1cw83
Change hash used for looking up native functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define DRIZZLED_FUNCTION_CONTAINER_H
23
23
 
24
24
#include <set>
25
 
#include <map>
26
25
#include <boost/unordered_map.hpp>
27
26
#include "drizzled/util/string.h"
28
27
 
29
28
namespace drizzled {
30
29
 
31
30
struct Native_func_registry;
32
 
typedef std::map<std::string, Native_func_registry *> NativeFunctionsMap;
 
31
typedef boost::unordered_map<std::string, Native_func_registry *, util::insensitive_hash, util::insensitive_equal_to> NativeFunctionsMap;
33
32
 
34
33
class FunctionContainer {
35
34
public: