-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
do not remove no-op pebble support for non-64bit arch and use executi…
…on-spec-tests v1.0.6
- Loading branch information
1 parent
9bfd9d5
commit 0073476
Showing
4 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//go:build !((arm64 || amd64) && !openbsd) | ||
|
||
package pebble | ||
|
||
import ( | ||
"errors" | ||
|
||
"github.com/ethereum/go-ethereum/ethdb" | ||
) | ||
|
||
func New(file string, cache int, handles int, namespace string, readonly bool, ephemeral bool) (ethdb.Database, error) { | ||
return nil, errors.New("pebble is not supported on this platform") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters