Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrNotFound = errors.New("leveldb: key not found") ErrDBExists = errors.New("leveldb: db exists") ErrDBMissing = errors.New("leveldb: missing db") ErrDBClosed = errors.New("leveldb: db closed") ErrCorruptWriteBatch = errors.New("leveldb: corrupt write batch") ErrCorruptInternalKey = errors.New("leveldb: corrupt internal key") ErrComparatorMismatch = errors.New("leveldb: comparator mismatch") ErrOverlappedTables = errors.New("leveldb: overlapped tables in level 1+") ErrBatchTooManyWrites = errors.New("leveldb: too many writes in one batch") ErrSnapshotClosed = errors.New("leveldb: snapshot closed") ErrEmptyMemTable = errors.New("leveldb: empty memtable") )
Functions ¶
Types ¶
type CorruptionError ¶
func (*CorruptionError) Error ¶
func (e *CorruptionError) Error() string
type KeyRangeError ¶
KeyRangeError represents invalid key range, eg. invalid [start, limit) interval.
func (*KeyRangeError) Error ¶
func (e *KeyRangeError) Error() string
Click to show internal directories.
Click to hide internal directories.