handle data corruption errors

Refs #573
This commit is contained in:
Anton Kaliaev
2017-12-11 19:48:20 -06:00
parent 5c58db3bb4
commit 40f9261d48
5 changed files with 54 additions and 21 deletions

View File

@@ -172,7 +172,7 @@ func (w *byteBufferWAL) Save(m WALMessage) {
func (w *byteBufferWAL) Group() *auto.Group {
panic("not implemented")
}
func (w *byteBufferWAL) SearchForEndHeight(height int64) (gr *auto.GroupReader, found bool, err error) {
func (w *byteBufferWAL) SearchForEndHeight(height int64, options *WALSearchOptions) (gr *auto.GroupReader, found bool, err error) {
return nil, false, nil
}