| 7 | { |
| 8 | |
| 9 | TIDHash TransactionID::getHash() const |
| 10 | { |
| 11 | SipHash hash; |
| 12 | hash.update(start_csn); |
| 13 | hash.update(local_tid); |
| 14 | hash.update(host_id); |
| 15 | return hash.get64(); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | void TransactionID::write(const TransactionID & tid, WriteBuffer & buf) |
no test coverage detected