addresses compiler warning
Change-Id: I63ae0f15baf6512679ca32491b707500309b09e9
Reviewed-on: http://review.couchbase.org/70024
Reviewed-by: Dave Rigby <daver@couchbase.com>
Tested-by: Dave Rigby <daver@couchbase.com>
* the hashtable for any that are > the rollbackSeqno.
*/
void EventuallyPersistentStore::rollbackCheckpoint(RCPtr<VBucket> &vb,
- uint64_t rollbackSeqno) {
+ int64_t rollbackSeqno) {
std::vector<queued_item> items;
vb->checkpointManager.getAllItemsForCursor(CheckpointManager::pCursorName,
items);
* Drain the VB's checkpoints looking for items which have a seqno
* above the rollbackSeqno and must be rolled back themselves.
*/
- void rollbackCheckpoint(RCPtr<VBucket> &vb, uint64_t rollbackSeqno);
+ void rollbackCheckpoint(RCPtr<VBucket> &vb, int64_t rollbackSeqno);
friend class Warmup;
friend class Flusher;