mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-25 05:02:32 +02:00
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
//go:build !test_native_sql
|
|
|
|
package lnd
|
|
|
|
import (
|
|
"context"
|
|
|
|
graphdb "github.com/lightningnetwork/lnd/graph/db"
|
|
"github.com/lightningnetwork/lnd/kvdb"
|
|
"github.com/lightningnetwork/lnd/sqldb"
|
|
"github.com/lightningnetwork/lnd/sqldb/sqlc"
|
|
)
|
|
|
|
// RunTestSQLMigration is a build tag that indicates whether the test_native_sql
|
|
// build tag is set.
|
|
var RunTestSQLMigration = false
|
|
|
|
// getGraphStore returns a graphdb.V1Store backed by a graphdb.KVStore
|
|
// implementation.
|
|
func (d *DefaultDatabaseBuilder) getGraphStore(_ *sqldb.BaseDB,
|
|
kvBackend kvdb.Backend,
|
|
opts ...graphdb.StoreOptionModifier) (graphdb.V1Store, error) {
|
|
|
|
return graphdb.NewKVStore(kvBackend, opts...)
|
|
}
|
|
|
|
// getSQLMigration returns a migration function for the given version.
|
|
//
|
|
// NOTE: this is a no-op for the production build since all migrations that are
|
|
// in production will also be in development builds, and so they are not
|
|
// defined behind a build tag.
|
|
func (d *DefaultDatabaseBuilder) getSQLMigration(ctx context.Context,
|
|
version int, kvBackend kvdb.Backend) (func(tx *sqlc.Queries) error,
|
|
bool) {
|
|
|
|
return nil, false
|
|
}
|