Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - sql: add copy-based migrations and VACUUM INTO #6085

Closed
wants to merge 79 commits into from
Closed
Show file tree
Hide file tree
Changes from 66 commits
Commits
Show all changes
79 commits
Select commit Hold shift + click to select a range
7a97f7a
sql: improve database schema handling
ivan4th May 31, 2024
6a53628
sql: fixup: malsync and rewards
ivan4th Jun 1, 2024
5db7e18
sql: add migration / schema drift related tests
ivan4th Jun 1, 2024
c2938b2
sql: make schema drift table ignore regexp configurable
ivan4th Jun 1, 2024
ec3397e
sql: refactor localsql / statesql tests
ivan4th Jun 1, 2024
1af47bb
Update CHANGELOG.md
ivan4th Jun 1, 2024
7bb2b1b
config: fix db presets for db schema drift detection
ivan4th Jun 1, 2024
bc98240
sql: fix review comments
ivan4th Jun 5, 2024
895f50f
sql: add database schema handling docs
ivan4th Jun 5, 2024
6f33999
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 5, 2024
6257174
config: fix build errors
ivan4th Jun 5, 2024
aada7c6
Fix README.md
ivan4th Jun 7, 2024
dbea047
Fix go.mod / go.sum
ivan4th Jun 7, 2024
6bf114a
sql: use go:generate for database schema files
ivan4th Jun 12, 2024
bd62a8e
sql: make schema drift fatal by default
ivan4th Jun 12, 2024
c9d1a6c
sql: remove db-ignore-schema-rx config option
ivan4th Jun 12, 2024
beccddd
sql: avoid cyclic dependencies in future coded migrations
ivan4th Jun 12, 2024
8552a96
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 12, 2024
2e41e1a
activation: fix test
ivan4th Jun 12, 2024
dd2ed3e
sql: fix tests
ivan4th Jun 12, 2024
13e8c14
sql: fix query cache handling
ivan4th Jun 12, 2024
fbf2880
sql: update mocks
ivan4th Jun 13, 2024
6dbc902
sql: fix QueryCache related mocks
ivan4th Jun 13, 2024
09e36bb
node: don't print error twice upon failure
ivan4th Jun 13, 2024
9dc3f0c
sql: fix schema drift on Windows
ivan4th Jun 13, 2024
8bbeeb5
sql: update docs on schema handling
ivan4th Jun 13, 2024
30dcf71
sql, malsync: fix handling of context cancelation
ivan4th Jun 13, 2024
8506114
sql: split Schema.Migrate() method
ivan4th Jun 13, 2024
feb39fe
sql: another fix for Windows newlines in the schema
ivan4th Jun 13, 2024
77b46d1
merge-nodes: fix test naming
ivan4th Jun 13, 2024
ee36ee4
sql: close db on schema errors
ivan4th Jun 13, 2024
da6ab28
sql, datastore: remove unneeded mocks
ivan4th Jun 16, 2024
cbf4195
sql: fix naming
ivan4th Jun 16, 2024
b56dc59
sql: remove unneeded assertions from tests
ivan4th Jun 16, 2024
f1f11fe
sql: schemagen: fix help
ivan4th Jun 16, 2024
a172a94
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 16, 2024
b149e23
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 25, 2024
c2c7e6f
Moved database schema handling docs to CODING.md
ivan4th Jun 25, 2024
0400d33
api: fix database handling in the test
ivan4th Jun 25, 2024
a2679a5
sql: fix identities test
ivan4th Jun 25, 2024
33b9501
sql: simplify StateDatabase and LocalDatabase interfaces
ivan4th Jun 26, 2024
ff35334
node: make it possibe to allow localsql schema drift
ivan4th Jun 26, 2024
3d38b8f
sql: add copy-based migrations and VACUUM INTO
ivan4th Jun 26, 2024
1df9c30
sql: fix issues found by linter
ivan4th Jun 28, 2024
93a5087
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 28, 2024
b568b25
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jun 28, 2024
2c29103
sql: fix review comments
ivan4th Jun 29, 2024
bd28a9f
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jul 8, 2024
507aca6
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jul 8, 2024
5b47e76
sql: fix failing tests
ivan4th Jul 8, 2024
4090f64
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jul 8, 2024
945f2ec
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jul 9, 2024
ce9647b
Merge branch 'develop' into feature/schema-snapshot
ivan4th Jul 11, 2024
1220037
Merge branch 'develop' into feature/schema-snapshot
ivan4th Aug 13, 2024
dcab056
statesql: update schema
ivan4th Aug 13, 2024
1d8d310
tmp: fix lint errors (will need to revert)
ivan4th Aug 13, 2024
a942ccc
Revert "tmp: fix lint errors (will need to revert)"
ivan4th Aug 15, 2024
fe95d18
Move statesql migrations to a separate package to avoid cyclic deps
ivan4th Aug 15, 2024
354dc56
Merge branch 'develop' into feature/schema-snapshot
ivan4th Aug 15, 2024
22847df
sql: fix schemagen
ivan4th Aug 15, 2024
5278bf4
Merge branch 'feature/schema-snapshot' into feature/vacuum-into
ivan4th Aug 15, 2024
25185be
Address comments
ivan4th Aug 15, 2024
9dcdd59
fetch: fix tests
ivan4th Aug 15, 2024
8bf64c7
sql: fix error handling
ivan4th Aug 16, 2024
e7b563b
statesql, localsql: fix InMemoryTest
ivan4th Aug 17, 2024
5247124
sql: fix in-memory db handling
ivan4th Aug 17, 2024
a59cc3c
Merge branch 'develop' into feature/schema-snapshot
ivan4th Aug 20, 2024
47fbc84
Addressed comments
ivan4th Aug 20, 2024
2e7e150
sql: ignore whitespace during schema drift checks
ivan4th Aug 20, 2024
01c3686
Merge branch 'feature/schema-snapshot' into feature/vacuum-into
ivan4th Aug 20, 2024
bd81eb5
Merge branch 'develop' into feature/vacuum-into
ivan4th Aug 20, 2024
670df1b
sql: fix failing migration tests on Windows
ivan4th Aug 20, 2024
d69eab4
Address comments
ivan4th Aug 20, 2024
26aa21c
Address more comments
ivan4th Aug 21, 2024
3a3bd94
sql: improve error handling during migrations
ivan4th Aug 21, 2024
f462433
sql: hold exclusive database locks during copy-based migration
ivan4th Aug 22, 2024
3119a63
sql: further simplify error handling
ivan4th Aug 22, 2024
11527ab
Remove unneeded errors.Join
ivan4th Aug 22, 2024
64f4d38
Address comments
ivan4th Aug 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ operating your own PoET and want to use certificate authentication please refer
ATXs. This vulnerability allows an attacker to claim rewards for a full tick amount although they should not be
eligible for them.

* [#6003](https://github.com/spacemeshos/go-spacemesh/pull/6003) Improve database schema handling.
This includes schema drift detection which may happen after running unreleased versions.

* [#6031](https://github.com/spacemeshos/go-spacemesh/pull/6031) Fixed an edge case where the storage units might have
changed after the initial PoST was generated but before the first ATX has been emitted, invalidating the initial PoST.
The node will now try to verify the initial PoST and regenerate it if necessary.
Expand Down
76 changes: 76 additions & 0 deletions CODING.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,79 @@ Some useful logging recommendations for cleaner output:
## Commit Messages

For commit messages, follow [this guideline](https://www.conventionalcommits.org/en/v1.0.0/). Use reasonable length for the subject and body, ideally no longer than 72 characters. Use the imperative mood for subject lines.

## Handling database schema changes

go-spacemesh currently maintains 2 SQLite databases in the data folder: `state.sql` (state database) and `local.sql` (local database). It employs schema versioning for both databases, with a possibility to upgrade older versions of each database to the current schema version by means of running a series of migrations. Also, go-spacemesh tracks any schema drift (unexpected schema changes) in the databases.

When a database is first created, the corresponding schema file embedded in go-spacemesh executable is used to initialize it:
* `sql/statesql/schema/schema.sql` for `state.sql`
* `sql/localsql/schema/schema.sql` for `local.sql`
The schema file includes `PRAGMA user_version = ...` which sets the version of the database schema. The version of the schema is equal to the number of migrations defined for the corresponding database (`state.sql` or `local.sql`).

For an existing database, the `PRAGMA user_version` is checked against the expected version number. If the database's schema version is too new, go-spacemesh fails right away as an older go-spacemesh version cannot be expected to work with a database from a newer version. If the database version number is older than the expected version, go-spacemesh runs the necessary migration scripts embedded in go-spacemesh executable and updates `PRAGMA user_version = ...`. The migration scripts are located in the following folders:
* `sql/statesql/schema/migrations` for `state.sql`
* `sql/localsql/schema/migrations` for `local.sql`

Additionally, some migrations ("coded migrations") can be implemented in Go code, in which case they reside in `.go` files located in `sql/statesql` and `sql/localsql` packages, respectively. It is worth noting that old coded migrations can be removed at some point, rendering database versions that are *too* old unusable with newer go-spacemesh versions.

After all the migrations are run, go-spacemesh compares the schema of each database to the embedded schema scripts and if they differ, fails with an error message:
```
Error: open sqlite db schema drift detected (uri file:data/state.sql):
(
"""
... // 82 identical lines
PRIMARY KEY (layer, block)
);
+ CREATE TABLE foo(id int);
CREATE TABLE identities
(
... // 66 identical lines
"""
)
```

In this case, a table named `foo` has somehow appeared in the database, causing go-spacemesh to fail due to the schema drift. The possible reasons for schema drift can be the following:
* running an unreleased version of go-spacemesh using your data folder. The unreleased version may contain migrations that may be changed before the release happens
* manual changes in the database
* external SQLite tooling used on the database that adds some tables, indices etc.

In case if you want to run go-spacemesh with schema drift anyway, you can set `main.db-allow-schema-drift` to true. In this case, a warning with schema diff will be logged instead of failing.

The schema changes in go-spacemesh code should be always done by means of adding migrations. Let's for example create a new migration (use zero-padded N+1 instead of 0010 with N being the number of the last migration for the local db):

```console
$ echo 'CREATE TABLE foo(id int);' >sql/localsql/schema/migrations/0010_foo.sql
```

After that, we update the schema files
```console
$ make generate
$ # alternative: cd sql/localsql && go generate
$ git diff sql/localsql/schema/schema.sql
diff --git a/sql/localsql/schema/schema.sql b/sql/localsql/schema/schema.sql
index 02c44d3cc..ebcdf4278 100755
--- a/sql/localsql/schema/schema.sql
+++ b/sql/localsql/schema/schema.sql
@@ -1,4 +1,4 @@
-PRAGMA user_version = 9;
+PRAGMA user_version = 10;
CREATE TABLE atx_sync_requests
(
epoch INT NOT NULL,
@@ -24,6 +24,7 @@ CREATE TABLE "challenge"
post_indices VARCHAR,
post_pow UNSIGNED LONG INT
, poet_proof_ref CHAR(32), poet_proof_membership VARCHAR) WITHOUT ROWID;
+CREATE TABLE foo(id int);
CREATE TABLE malfeasance_sync_state
(
id INT NOT NULL PRIMARY KEY,
```

Note that the changes include both the new table and an updated `PRAGMA user_version` line.
The changes in the schema file must be committed along with the migration we added.
```console
$ git add sql/localsql/schema/migrations/0010_foo.sql sql/localsql/schema.sql
$ git commit -m "sql: add a test migration"
```
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Thank you for considering to contribute to the go-spacemesh open source project. We welcome contributions large and small and we actively accept contributions.

- go-spacemesh is part of [The Spacemesh open source project](https://spacemesh.io), and is MIT licensed free open source software.
- Please make sure to scan the [open issues](https://github.com/spacemeshos/go-spacemesh/issues).
- Please make sure to scan the [open issues](https://github.com/spacemeshos/go-spacemesh/issues).
- Search the closed ones before reporting things, and help us with the open ones.
- Make sure that you are able to contribute to MIT licensed free open software (no legal issues please).
- Introduce yourself, ask questions about issues or talk about things on our [discord server](https://chat.spacemesh.io/).
Expand Down Expand Up @@ -39,7 +39,7 @@ Thank you for considering to contribute to the go-spacemesh open source project.
# Code Guidelines
Please follow these guidelines for your PR to be reviewed and be considered for merging into the project.

1. Document all methods and functions using [go commentary](https://golang.org/doc/effective_go.html#commentary).
1. Document all methods and functions using [go commentary](https://golang.org/doc/effective_go.html#commentary).
2. Provide at least one unit test for each function and method.
3. Provide at least one integration test for each feature with a flow which involves more than one function call. Your tests should reflect the main ways that your code should be used.
4. Run `go mod tidy`, `go fmt ./...` and `make lint` to format and lint your code before submitting your PR.
Expand All @@ -49,7 +49,7 @@ Please follow these guidelines for your PR to be reviewed and be considered for
- Check for existing 3rd-party packages in the vendor folder `./vendor` before adding a new dependency.
- Use [govendor](https://github.com/kardianos/govendor) to add a new dependency.

# Working on a funded issue
# Working on a funded issue

## Step 1 - Discover :sunrise_over_mountains:
- Browse the [open funded issues](https://github.com/spacemeshos/go-spacemesh/labels/funded%20%3Amoneybag%3A) in our github repo, or on our [gitcoin.io funded issues page](https://gitcoin.co/profile/spacemeshos).
Expand All @@ -68,6 +68,6 @@ Please follow these guidelines for your PR to be reviewed and be considered for
## Step 3 - Get paid :moneybag:
- When ready, submit your PR for review and go through the code review process with one of our maintainers.
- Expect a review process that ensures that you have followed our code guidelines at that your design and implementation are solid. You are expected to revision your code based on reviewers comments.
- You should receive your bounty as soon as your PR is approved and merged by one of our maintainers.
- You should receive your bounty as soon as your PR is approved and merged by one of our maintainers.

Please review our funded issues program [legal notes](https://github.com/spacemeshos/go-spacemesh/blob/master/legal.md).
5 changes: 2 additions & 3 deletions activation/activation.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import (
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
)

Expand Down Expand Up @@ -85,7 +84,7 @@ type Builder struct {
conf Config
db sql.Executor
atxsdata *atxsdata.Data
localDB *localsql.Database
localDB sql.LocalDatabase
publisher pubsub.Publisher
nipostBuilder nipostBuilder
validator nipostValidator
Expand Down Expand Up @@ -181,7 +180,7 @@ func NewBuilder(
conf Config,
db sql.Executor,
atxsdata *atxsdata.Data,
localDB *localsql.Database,
localDB sql.LocalDatabase,
publisher pubsub.Publisher,
nipostBuilder nipostBuilder,
layerClock layerClock,
Expand Down
5 changes: 3 additions & 2 deletions activation/activation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import (
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
sqlmocks "github.com/spacemeshos/go-spacemesh/sql/mocks"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
)

// ========== Vars / Consts ==========
Expand All @@ -54,7 +55,7 @@ func TestMain(m *testing.M) {
type testAtxBuilder struct {
*Builder
db sql.Executor
localDb *localsql.Database
localDb sql.LocalDatabase
goldenATXID types.ATXID

observedLogs *observer.ObservedLogs
Expand All @@ -77,7 +78,7 @@ func newTestBuilder(tb testing.TB, numSigners int, opts ...BuilderOption) *testA

ctrl := gomock.NewController(tb)
tab := &testAtxBuilder{
db: sql.InMemory(),
db: statesql.InMemory(),
localDb: localsql.InMemory(sql.WithConnections(numSigners)),
goldenATXID: types.ATXID(types.HexToHash32("77777")),

Expand Down
9 changes: 4 additions & 5 deletions activation/certifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import (
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
certifierdb "github.com/spacemeshos/go-spacemesh/sql/localsql/certifier"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
)
Expand Down Expand Up @@ -80,14 +79,14 @@ type CertifyResponse struct {

type Certifier struct {
logger *zap.Logger
db *localsql.Database
db sql.LocalDatabase
client certifierClient

certifications singleflight.Group
}

func NewCertifier(
db *localsql.Database,
db sql.LocalDatabase,
logger *zap.Logger,
client certifierClient,
) *Certifier {
Expand Down Expand Up @@ -145,7 +144,7 @@ type CertifierClient struct {
client *retryablehttp.Client
logger *zap.Logger
db sql.Executor
localDb *localsql.Database
localDb sql.LocalDatabase
}

type certifierClientOpts func(*CertifierClient)
Expand All @@ -160,7 +159,7 @@ func WithCertifierClientConfig(cfg CertifierClientConfig) certifierClientOpts {

func NewCertifierClient(
db sql.Executor,
localDb *localsql.Database,
localDb sql.LocalDatabase,
logger *zap.Logger,
opts ...certifierClientOpts,
) *CertifierClient {
Expand Down
7 changes: 4 additions & 3 deletions activation/certifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (
"github.com/spacemeshos/go-spacemesh/sql/localsql"
certdb "github.com/spacemeshos/go-spacemesh/sql/localsql/certifier"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
)

func TestPersistsCerts(t *testing.T) {
Expand Down Expand Up @@ -113,15 +114,15 @@ func TestObtainingPost(t *testing.T) {
id := types.RandomNodeID()

t.Run("no POST or ATX", func(t *testing.T) {
db := sql.InMemory()
db := statesql.InMemory()
localDb := localsql.InMemory()

certifier := NewCertifierClient(db, localDb, zaptest.NewLogger(t))
_, err := certifier.obtainPost(context.Background(), id)
require.ErrorContains(t, err, "PoST not found")
})
t.Run("initial POST available", func(t *testing.T) {
db := sql.InMemory()
db := statesql.InMemory()
localDb := localsql.InMemory()

post := nipost.Post{
Expand All @@ -142,7 +143,7 @@ func TestObtainingPost(t *testing.T) {
require.Equal(t, post, *got)
})
t.Run("initial POST unavailable but ATX exists", func(t *testing.T) {
db := sql.InMemory()
db := statesql.InMemory()
localDb := localsql.InMemory()

atx := newInitialATXv1(t, types.RandomATXID())
Expand Down
4 changes: 2 additions & 2 deletions activation/e2e/activation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ import (
"github.com/spacemeshos/go-spacemesh/p2p/pubsub"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub/mocks"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
"github.com/spacemeshos/go-spacemesh/timesync"
)

Expand Down Expand Up @@ -61,7 +61,7 @@ func Test_BuilderWithMultipleClients(t *testing.T) {
logger := zaptest.NewLogger(t)
goldenATX := types.ATXID{2, 3, 4}
cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
localDB := localsql.InMemory()

svc := grpcserver.NewPostService(logger, grpcserver.PostServiceQueryInterval(100*time.Millisecond))
Expand Down
4 changes: 2 additions & 2 deletions activation/e2e/atx_merge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ import (
"github.com/spacemeshos/go-spacemesh/datastore"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub/mocks"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/identities"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
"github.com/spacemeshos/go-spacemesh/system"
smocks "github.com/spacemeshos/go-spacemesh/system/mocks"
"github.com/spacemeshos/go-spacemesh/timesync"
Expand Down Expand Up @@ -205,7 +205,7 @@ func Test_MarryAndMerge(t *testing.T) {
logger := zaptest.NewLogger(t)
goldenATX := types.ATXID{2, 3, 4}
cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
cdb := datastore.NewCachedDB(db, logger)
localDB := localsql.InMemory()

Expand Down
4 changes: 2 additions & 2 deletions activation/e2e/builds_atx_v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"github.com/spacemeshos/go-spacemesh/p2p/pubsub"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub/mocks"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
smocks "github.com/spacemeshos/go-spacemesh/system/mocks"
"github.com/spacemeshos/go-spacemesh/timesync"
)
Expand All @@ -53,7 +53,7 @@ func TestBuilder_SwitchesToBuildV2(t *testing.T) {
require.NoError(t, err)

cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
cdb := datastore.NewCachedDB(db, logger)

opts := testPostSetupOpts(t)
Expand Down
4 changes: 2 additions & 2 deletions activation/e2e/certifier_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"github.com/spacemeshos/go-spacemesh/api/grpcserver"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/localsql/nipost"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
)

func TestCertification(t *testing.T) {
Expand All @@ -34,7 +34,7 @@ func TestCertification(t *testing.T) {
require.NoError(t, err)

cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
localDb := localsql.InMemory()

opts := testPostSetupOpts(t)
Expand Down
6 changes: 3 additions & 3 deletions activation/e2e/checkpoint_merged_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import (
"github.com/spacemeshos/go-spacemesh/datastore"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub/mocks"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/accounts"
"github.com/spacemeshos/go-spacemesh/sql/atxs"
"github.com/spacemeshos/go-spacemesh/sql/identities"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
smocks "github.com/spacemeshos/go-spacemesh/system/mocks"
"github.com/spacemeshos/go-spacemesh/timesync"
)
Expand All @@ -43,7 +43,7 @@ func Test_CheckpointAfterMerge(t *testing.T) {
logger := zaptest.NewLogger(t)
goldenATX := types.ATXID{2, 3, 4}
cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
cdb := datastore.NewCachedDB(db, logger)
localDB := localsql.InMemory()

Expand Down Expand Up @@ -261,7 +261,7 @@ func Test_CheckpointAfterMerge(t *testing.T) {
require.NoError(t, err)
require.Nil(t, data)

newDB, err := sql.Open("file:" + recoveryCfg.DbPath())
newDB, err := statesql.Open("file:" + recoveryCfg.DbPath())
require.NoError(t, err)
defer newDB.Close()

Expand Down
6 changes: 3 additions & 3 deletions activation/e2e/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"github.com/spacemeshos/go-spacemesh/p2p/pubsub"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub/mocks"
"github.com/spacemeshos/go-spacemesh/signing"
"github.com/spacemeshos/go-spacemesh/sql"
"github.com/spacemeshos/go-spacemesh/sql/accounts"
"github.com/spacemeshos/go-spacemesh/sql/localsql"
"github.com/spacemeshos/go-spacemesh/sql/statesql"
smocks "github.com/spacemeshos/go-spacemesh/system/mocks"
"github.com/spacemeshos/go-spacemesh/timesync"
)
Expand All @@ -46,7 +46,7 @@ func TestCheckpoint_PublishingSoloATXs(t *testing.T) {
require.NoError(t, err)

cfg := testPostConfig()
db := sql.InMemory()
db := statesql.InMemory()
cdb := datastore.NewCachedDB(db, logger)

opts := testPostSetupOpts(t)
Expand Down Expand Up @@ -181,7 +181,7 @@ func TestCheckpoint_PublishingSoloATXs(t *testing.T) {
require.NoError(t, err)
require.Nil(t, data)

newDB, err := sql.Open("file:" + recoveryCfg.DbPath())
newDB, err := statesql.Open("file:" + recoveryCfg.DbPath())
require.NoError(t, err)
defer newDB.Close()

Expand Down
Loading
Loading