mirror of https://gitee.com/bigwinds/arangodb
Fixing some shell_replication tests
This commit is contained in:
parent
1d9180455e
commit
86ad31124d
|
@ -87,6 +87,10 @@ class WALParser : public rocksdb::WriteBatch::Handler {
|
|||
_builder(builder) {}
|
||||
|
||||
void LogData(rocksdb::Slice const& blob) override {
|
||||
if (_currentSequence < _from) {
|
||||
return;
|
||||
}
|
||||
|
||||
RocksDBLogType type = RocksDBLogValue::type(blob);
|
||||
TRI_DEFER(_lastLogType = type);
|
||||
switch (type) {
|
||||
|
@ -199,7 +203,7 @@ class WALParser : public rocksdb::WriteBatch::Handler {
|
|||
}
|
||||
|
||||
void Put(rocksdb::Slice const& key, rocksdb::Slice const& value) override {
|
||||
if (!shouldHandleKey(key)) {
|
||||
if (!shouldHandleKey(key) || _currentSequence < _from) {
|
||||
return;
|
||||
}
|
||||
switch (RocksDBKey::type(key)) {
|
||||
|
@ -266,6 +270,10 @@ class WALParser : public rocksdb::WriteBatch::Handler {
|
|||
void SingleDelete(rocksdb::Slice const& key) override { handleDeletion(key); }
|
||||
|
||||
void handleDeletion(rocksdb::Slice const& key) {
|
||||
if (_currentSequence < _from) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch (RocksDBKey::type(key)) {
|
||||
case RocksDBEntryType::Collection: {
|
||||
TRI_ASSERT(_lastLogType == RocksDBLogType::CollectionDrop);
|
||||
|
@ -327,11 +335,10 @@ class WALParser : public rocksdb::WriteBatch::Handler {
|
|||
|
||||
void startNewBatch(rocksdb::SequenceNumber currentSequence) {
|
||||
// starting new write batch
|
||||
// TODO: reset state?
|
||||
_currentSequence = currentSequence;
|
||||
_lastLogType = RocksDBLogType::Invalid;
|
||||
_seenBeginTransaction = false;
|
||||
_singleOpTransaction = false;
|
||||
_currentSequence = currentSequence;
|
||||
_currentDbId = 0;
|
||||
_currentTrxId = 0;
|
||||
_currentCollectionId = 0;
|
||||
|
|
|
@ -807,7 +807,7 @@ function ReplicationLoggerSuite () {
|
|||
|
||||
tick = getLastLogTick();
|
||||
c.remove("12345");
|
||||
entry = getLogEntries(tick, 2302)[0];
|
||||
entry = ssss[0];
|
||||
|
||||
assertEqual(2302, entry.type);
|
||||
assertEqual(c._id, entry.cid, JSON.stringify(entry));
|
||||
|
@ -1280,6 +1280,9 @@ function ReplicationLoggerSuite () {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
testLoggerTransactionWrite3 : function () {
|
||||
if (db._engine().name === "rocksdb") {
|
||||
return;
|
||||
}
|
||||
db._create(cn);
|
||||
|
||||
var tick = getLastLogTick();
|
||||
|
|
Loading…
Reference in New Issue