/** Performs a deep copy on <i>other</i>. */
 public batch_mutation_super_t(batch_mutation_super_t other) {
   __isset.table = other.__isset.table;
   if (other.table != null) {
     this.table = other.table;
   }
   __isset.key = other.__isset.key;
   if (other.key != null) {
     this.key = other.key;
   }
   __isset.cfmap = other.__isset.cfmap;
   if (other.cfmap != null) {
     this.cfmap = other.cfmap;
   }
   __isset.cfmapdel = other.__isset.cfmapdel;
   if (other.cfmapdel != null) {
     this.cfmapdel = other.cfmapdel;
   }
 }