~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.h

  • Committer: Brian Aker
  • Date: 2010-10-08 16:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1834.
  • Revision ID: brian@tangent.org-20101008161147-o3us2a8itszsaycx
Typdef our lock type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_TABLE_FUNCTION_CONTAINER_H
22
22
#define DRIZZLED_TABLE_FUNCTION_CONTAINER_H
23
23
 
24
 
#include "drizzled/hash.h"
25
24
#include <set>
 
25
#include <boost/unordered_map.hpp>
 
26
#include "drizzled/util/string.h"
26
27
 
27
28
namespace drizzled {
28
29
 
29
30
class TableFunctionContainer {
30
 
  typedef hash_map<std::string, plugin::TableFunction *> ToolMap;
 
31
  typedef boost::unordered_map<std::string, plugin::TableFunction *, util::insensitive_hash, util::insensitive_equal_to> ToolMap;
31
32
 
32
33
  ToolMap table_map;
33
34