~raghavendra-prabhu/percona-xtradb-cluster/galera-bug1153727

« back to all changes in this revision

Viewing changes to galera/src/key.hpp

  • Committer: Raghavendra D Prabhu
  • Date: 2013-04-12 15:26:34 UTC
  • mfrom: (95.2.24 2.x)
  • Revision ID: raghavendra.prabhu@percona.com-20130412152634-2y2u0swshf5fie2x
Merge lp:galera-2.x upto revision 150.

Following bugs are fixed:

lp:1166065
lp:1164992

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
                break;
138
138
            default:
139
139
                gu_throw_fatal << "unsupported key version: " << version_;
140
 
                throw;
141
140
            }
142
141
        }
143
142
 
244
243
        }
245
244
        default:
246
245
            gu_throw_fatal << "unsupported key version: " << key.version_;
247
 
            throw;
248
246
        }
249
247
        os.flags(flags);
250
248
        return os;
304
302
        default:
305
303
            gu_throw_error(EPROTONOSUPPORT) << "unsupported key version: "
306
304
                                            << key.version_;
307
 
            throw;
308
305
        }
309
306
    }
310
307