~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2008-12-06 02:02:19 UTC
  • Revision ID: brian@tangent.org-20081206020219-61o4ij7tsms6qwna
First major pass through new replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
928
928
  
929
929
  thr_lock_type update_lock_default;
930
930
 
 
931
  /*
 
932
    Both of the following container points in session will be converted to an API.
 
933
  */
 
934
 
931
935
  /* container for handler's private per-connection data */
932
936
  Ha_data ha_data[MAX_HA];
933
937
 
 
938
  /* container for replication data */
 
939
  void *replication_data;
 
940
  inline void setReplicationData (void *data) { replication_data= data; }
 
941
  inline void *getReplicationData () { return replication_data; }
 
942
 
934
943
  /* Place to store various things */
935
944
  void *session_marker;
936
945
  int binlog_setup_trx_data();