channeldb/test: test with postgres

This commit is contained in:
Joost Jager
2021-07-16 18:07:30 +02:00
parent 7c048efa21
commit d997bbf6b3
13 changed files with 152 additions and 3 deletions

15
kvdb/kvdb_postgres.go Normal file
View File

@@ -0,0 +1,15 @@
// +build kvdb_postgres
package kvdb
import "github.com/lightningnetwork/lnd/kvdb/postgres"
const PostgresBackend = true
func NewPostgresFixture(dbName string) (postgres.Fixture, error) {
return postgres.NewFixture(dbName)
}
func StartEmbeddedPostgres() (func() error, error) {
return postgres.StartEmbeddedPostgres()
}