Tombstoned entry
(seq uint64, docid string, revid string)
| 53 | |
| 54 | // Tombstoned entry |
| 55 | func et(seq uint64, docid string, revid string) *LogEntry { |
| 56 | entry := testLogEntry(seq, docid, revid) |
| 57 | entry.SetDeleted() |
| 58 | return entry |
| 59 | } |
| 60 | |
| 61 | func logEntry(seq uint64, docid string, revid string, channelNames []string, collectionID uint32) *LogEntry { |
| 62 | entry := &LogEntry{ |
no test coverage detected