~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-08-08 03:02:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1697.
  • Revision ID: brian@gaz-20100808030202-nmg3opfwrcj3ytye
Do a case insensitive search for path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1419
1419
  Table *table_cache_insert_placeholder(const char *db_name, const char *table_name);
1420
1420
  bool lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table);
1421
1421
 
1422
 
  typedef boost::unordered_map<std::string, message::Table> TableMessageCache;
 
1422
  typedef boost::unordered_map<std::string, message::Table, util::insensitive_hash, util::insensitive_equal_to> TableMessageCache;
1423
1423
  TableMessageCache table_message_cache;
1424
1424
 
1425
1425
  bool storeTableMessage(const TableIdentifier &identifier, message::Table &table_message);