~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2008-12-23 10:21:39 UTC
  • Revision ID: brian@tangent.org-20081223102139-8pk0zkkmk5bz0m38
Removed dead table map code in replication. Also refactored drizzledump a
bit (removed dead code around VIEW).

Show diffs side-by-side

added added

removed removed

Lines of Context:
897
897
 
898
898
  void set_server_id(uint32_t sid) { server_id = sid; }
899
899
 
900
 
private:
901
 
  uint32_t binlog_table_maps; // Number of table maps currently in the binlog
902
 
 
903
 
  /**
904
 
     Flags with per-thread information regarding the status of the
905
 
     binary log.
906
 
   */
907
 
  uint32_t binlog_flags;
908
 
public:
909
 
  uint32_t get_binlog_table_maps() const {
910
 
    return binlog_table_maps;
911
 
  }
912
 
  void clear_binlog_table_maps() {
913
 
    binlog_table_maps= 0;
914
 
  }
915
 
 
916
900
public:
917
901
 
918
902
  struct st_transactions {