Skip to content

Commit

Permalink
Merge pull request #886 from dolthub/db/skip-ping
Browse files Browse the repository at this point in the history
/testing/logictest/harness/doltgres_server_harness.go: skip db.Ping call
  • Loading branch information
coffeegoddd authored Oct 24, 2024
2 parents 3cff91c + 9fdd16c commit d536220
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions testing/logictest/harness/doltgres_server_harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,11 @@ func (h *DoltgresHarness) Init() error {
logErr(err, "opening connection to pgx")
return err
}
err = db.Ping()
if err != nil {
return err
}
// todo: doltgres errors on ping currently
//err = db.Ping()
//if err != nil {
// return err
//}

// drop if 'sqllogictest' database exists
_, err = db.ExecContext(ctx, "DROP DATABASE IF EXISTS sqllogictest")
Expand Down

0 comments on commit d536220

Please sign in to comment.