Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
flimzy committed Nov 23, 2023
1 parent 05ac616 commit 64f7c79
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bootstrap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package txdb_test

import (
"database/sql"
"fmt"
"net/url"
"testing"
)
Expand Down Expand Up @@ -31,6 +32,7 @@ func bootstrap(t *testing.T, driver, dsn string) {
t.Fatalf("failed to parse dsn %q: %s", dsn, err)
}
parsed.Path = "" // Remove the database name from the DSN
fmt.Println("bootstrapping", parsed.String())
db, err := sql.Open(driver, parsed.String())
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 64f7c79

Please sign in to comment.