~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-10-28 17:12:01 UTC
  • mfrom: (1887.1.3 merge)
  • Revision ID: brian@tangent.org-20101028171201-baj6l1bnntn1s4ad
Merge in POTFILES changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
class Statement;
74
74
class Resultset;
75
75
}
 
76
 
76
77
namespace internal
77
78
{
78
79
struct st_my_thread_var;
79
80
}
80
81
 
 
82
namespace table
 
83
{
 
84
class Placeholder;
 
85
}
 
86
 
81
87
class Lex_input_stream;
82
88
class user_var_entry;
83
89
class CopyField;
1496
1502
  void close_cached_table(Table *table);
1497
1503
 
1498
1504
  /* Create a lock in the cache */
1499
 
  Table *table_cache_insert_placeholder(const TableIdentifier &identifier);
 
1505
  table::Placeholder *table_cache_insert_placeholder(const TableIdentifier &identifier);
1500
1506
  bool lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table);
1501
1507
 
1502
1508
  typedef boost::unordered_map<std::string, message::Table, util::insensitive_hash, util::insensitive_equal_to> TableMessageCache;