This commit is contained in:
James Cor
2022-10-13 00:20:28 -07:00
parent cf48fb9bf1
commit e03049cfbc
2 changed files with 8 additions and 0 deletions

View File

@@ -140,6 +140,8 @@ replace (
github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi => ./gen/proto/dolt/services/eventsapi
github.com/google/flatbuffers => github.com/dolthub/flatbuffers v1.13.0-dh.1
github.com/oliveagle/jsonpath => github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474
github.com/dolthub/go-mysql-server => ../../go-mysql-server
github.com/dolthub/vitess => ../../vitess
)
go 1.19

View File

@@ -544,9 +544,15 @@ func (r *valueDecoder) SkipValue(nbf *NomsBinFormat) error {
case PolygonKind:
r.skipKind()
r.skipString()
case MultiLineStringKind:
r.skipKind()
r.skipString()
case MultiPointKind:
r.skipKind()
r.skipString()
case MultiPolygonKind:
r.skipKind()
r.skipString()
case ListKind:
err := r.skipList(nbf)
if err != nil {