(x, y *TxID)
| 109 | } |
| 110 | |
| 111 | func equalTxID(x, y *TxID) bool { |
| 112 | return x.ConnectionID == y.ConnectionID && x.SeqNo == y.SeqNo && x.Timestamp == y.Timestamp |
| 113 | } |
| 114 | |
| 115 | // Storage represents a underlying storage implementation based on sqlite3. |
| 116 | type Storage struct { |