Skip to content

Commit d536220

Browse files
authored
Merge pull request #886 from dolthub/db/skip-ping
/testing/logictest/harness/doltgres_server_harness.go: skip db.Ping call
2 parents 3cff91c + 9fdd16c commit d536220

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

testing/logictest/harness/doltgres_server_harness.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,11 @@ func (h *DoltgresHarness) Init() error {
106106
logErr(err, "opening connection to pgx")
107107
return err
108108
}
109-
err = db.Ping()
110-
if err != nil {
111-
return err
112-
}
109+
// todo: doltgres errors on ping currently
110+
//err = db.Ping()
111+
//if err != nil {
112+
// return err
113+
//}
113114

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

0 commit comments

Comments
 (0)