github.com/scottcagno/storage@v1.8.0/pkg/lsmt/sstable/errors.go (about) 1 package sstable 2 3 import "errors" 4 5 var ( 6 ErrSSTIndexNotFound = errors.New("sstable: gindex not found") 7 ErrSSTEmptyBatch = errors.New("sstable: batch is empty or nil") 8 ErrInvalidScanDirection = errors.New("sstable: invalid scan direction") 9 )