~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2009-10-30 15:58:06 UTC
  • mfrom: (1183.1.30 merge)
  • Revision ID: brian@gaz-20091030155806-bq7mu2f5ljtodn0h
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include <drizzled/xid.h>
38
38
 
39
39
#include <netdb.h>
 
40
#include <map>
40
41
#include <string>
41
42
#include <bitset>
42
43
 
70
71
extern uint32_t tc_heuristic_recover;
71
72
 
72
73
/**
 
74
  @brief
 
75
  Local storage for proto that are tmp table. This should be enlarged
 
76
  to hande the entire table-share for a local table. Once Hash is done,
 
77
  we should consider exchanging the map for it.
 
78
*/
 
79
typedef std::map <std::string, drizzled::message::Table> ProtoCache;
 
80
 
 
81
/**
73
82
  The COPY_INFO structure is used by INSERT/REPLACE code.
74
83
  The schema of the row counting by the INSERT/INSERT ... ON DUPLICATE KEY
75
84
  UPDATE code:
743
752
  
744
753
  /** Place to store various things */
745
754
  void *session_marker;
 
755
 
746
756
  /** Keeps a copy of the previous table around in case we are just slamming on particular table */
747
757
  Table *cached_table;
748
758