~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Lee Bieber
  • Date: 2011-04-14 19:29:43 UTC
  • mfrom: (2278.1.2 build)
  • Revision ID: kalebral@gmail.com-20110414192943-q1nxcdqupal0anjb
Merge Olaf - Refactor Table Cache
Merge Olaf - Delete unused functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
776
776
   * @param The packet pointer to read from
777
777
   * @param The length of the query to read
778
778
   */
779
 
  bool readAndStoreQuery(const char *in_packet, uint32_t in_packet_length);
 
779
  void readAndStoreQuery(const char *in_packet, uint32_t in_packet_length);
780
780
 
781
781
  /**
782
782
   * Ends the current transaction and (maybe) begins the next.
1108
1108
  void close_cached_table(Table *table);
1109
1109
 
1110
1110
  /* Create a lock in the cache */
1111
 
  table::Placeholder *table_cache_insert_placeholder(const identifier::Table &identifier);
 
1111
  table::Placeholder& table_cache_insert_placeholder(const identifier::Table&);
1112
1112
  bool lock_table_name_if_not_cached(const identifier::Table &identifier, Table **table);
1113
1113
 
1114
1114
  session::TableMessages &getMessageCache();