Skip to content

Commit 64040af

Browse files
authored
Merge pull request #1167 from dolthub/nicktobey-b4b6d711
[auto-bump] [no-release-notes] dependency by nicktobey
2 parents 5624b17 + cbf629a commit 64040af

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm
214214
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw=
215215
github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
216216
github.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=
219219
github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi v0.0.0-20241119094239-f4e529af734d h1:gO9+wrmNHXukPNCO1tpfCcXIdMlW/qppbUStfLvqz/U=
220220
github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi v0.0.0-20241119094239-f4e529af734d/go.mod h1:L5RDYZbC9BBWmoU2+TjTekeqqhFXX5EqH9ln00O0stY=
221221
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2 h1:u3PMzfF8RkKd3lB9pZ2bfn0qEG+1Gms9599cr0REMww=

testing/go/enginetest/doltgres_engine_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
package enginetest
1616

1717
import (
18+
"context"
1819
"os"
1920
"regexp"
2021
"runtime"
@@ -1672,10 +1673,11 @@ func TestNullRanges(t *testing.T) {
16721673

16731674
func 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)

0 commit comments

Comments
 (0)