~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2010-07-28 21:35:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728213530-aiunkn1ne40wsgtn
This fixes the issue with case and unordered map.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "drizzled/typelib.h"
34
34
#include "drizzled/memory/root.h"
35
35
#include "drizzled/message/table.pb.h"
 
36
#include "drizzled/util/string.h"
36
37
 
37
38
namespace drizzled
38
39
{
143
144
 
144
145
  /* hash of field names (contains pointers to elements of field array) */
145
146
private:
146
 
  typedef boost::unordered_map < std::string, Field **> FieldMap;
 
147
  typedef boost::unordered_map < std::string, Field **, insensitive_hash, insensitive_equal_to> FieldMap;
147
148
  typedef std::pair< std::string, Field ** > FieldMapPair;
148
149
  FieldMap name_hash; /* hash of field names */
149
150
public: