File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/PuerkitoBio/goquery v1.8.1
77 github.com/cockroachdb/apd/v2 v2.0.3-0.20200518165714-d020e156310a
88 github.com/cockroachdb/errors v1.7.5
9- github.com/dolthub/dolt/go v0.40.5-0.20250131212717-0ef447e2a0fe
9+ github.com/dolthub/dolt/go v0.40.5-0.20250203230248-b4b6d7110a62
1010 github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi v0.0.0-20241119094239-f4e529af734d
1111 github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2
1212 github.com/dolthub/go-icu-regex v0.0.0-20241215010122-db690dd53c90
Original file line number Diff line number Diff line change @@ -214,8 +214,8 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm
214214github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 /go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw =
215215github.com/docker/go-connections v0.4.0 /go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec =
216216github.com/docker/go-units v0.4.0 /go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk =
217- github.com/dolthub/dolt/go v0.40.5-0.20250131212717-0ef447e2a0fe h1:rJd/xAVNyi+ILEqNGoVh46NxLeoo36eVUmpZ/68HN9w =
218- github.com/dolthub/dolt/go v0.40.5-0.20250131212717-0ef447e2a0fe /go.mod h1:JMib7O5moTOZK+vjnU+BiFGpUzKm31X/p0FHElieCig =
217+ github.com/dolthub/dolt/go v0.40.5-0.20250203230248-b4b6d7110a62 h1:au4ubJnPKlFkWT3yJF0XLJt1YwvS7QfwkiOArs1Bp6g =
218+ github.com/dolthub/dolt/go v0.40.5-0.20250203230248-b4b6d7110a62 /go.mod h1:JMib7O5moTOZK+vjnU+BiFGpUzKm31X/p0FHElieCig =
219219github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi v0.0.0-20241119094239-f4e529af734d h1:gO9+wrmNHXukPNCO1tpfCcXIdMlW/qppbUStfLvqz/U =
220220github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi v0.0.0-20241119094239-f4e529af734d /go.mod h1:L5RDYZbC9BBWmoU2+TjTekeqqhFXX5EqH9ln00O0stY =
221221github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2 h1:u3PMzfF8RkKd3lB9pZ2bfn0qEG+1Gms9599cr0REMww =
Original file line number Diff line number Diff line change 1515package enginetest
1616
1717import (
18+ "context"
1819 "os"
1920 "regexp"
2021 "runtime"
@@ -1672,10 +1673,11 @@ func TestNullRanges(t *testing.T) {
16721673
16731674func TestPersist (t * testing.T ) {
16741675 t .Skip ()
1676+ ctx := context .Background ()
16751677 harness := newDoltgresServerHarness (t )
16761678 defer harness .Close ()
16771679 dEnv := dtestutils .CreateTestEnv ()
1678- defer dEnv .DoltDB .Close ()
1680+ defer dEnv .DoltDB ( ctx ) .Close ()
16791681 localConf , ok := dEnv .Config .GetConfig (env .LocalConfig )
16801682 require .True (t , ok )
16811683 globals := config .NewPrefixConfig (localConf , env .SqlServerGlobalsPrefix )
You can’t perform that action at this time.
0 commit comments