diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-04-24 14:11:19 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2016-04-24 14:11:19 -0600 |
commit | d97499360d1ecebc492ea66c7447ea948f417620 (patch) | |
tree | d4775957ac2ec92ba8d37b39c386ea340a4e6473 /errors.go | |
parent | Merge branch 'LK4D4-pool_allocate' (diff) | |
parent | add additional meta page tests (diff) | |
download | dedo-d97499360d1ecebc492ea66c7447ea948f417620.tar.gz dedo-d97499360d1ecebc492ea66c7447ea948f417620.tar.xz |
Merge branch 'cyphar-548-fix-errors-with-unsynced-metadata'
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,7 +12,8 @@ var ( // already open. ErrDatabaseOpen = errors.New("database already open") - // ErrInvalid is returned when a data file is not a Bolt-formatted database. + // ErrInvalid is returned when both meta pages on a database are invalid. + // This typically occurs when a file is not a bolt database. ErrInvalid = errors.New("invalid database") // ErrVersionMismatch is returned when the data file was created with a |