~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-07-28 23:07:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728230742-idji8pjd3trphd1a
Fix up a few additional cases around case insensitive usage for
unordered_map. This also places the code in util/string.h behind an
additional namespace of "util"

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
#include <drizzled/plugin/authorization.h>
55
55
 
 
56
#include <boost/unordered_map.hpp>
 
57
 
56
58
#define MIN_HANDSHAKE_SIZE      6
57
59
 
58
60
namespace drizzled
1412
1414
  Table *table_cache_insert_placeholder(const char *db_name, const char *table_name);
1413
1415
  bool lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table);
1414
1416
 
1415
 
  typedef unordered_map<std::string, message::Table> TableMessageCache;
 
1417
  typedef boost::unordered_map<std::string, message::Table> TableMessageCache;
1416
1418
  TableMessageCache table_message_cache;
1417
1419
 
1418
1420
  bool storeTableMessage(const TableIdentifier &identifier, message::Table &table_message);