Skip to content

Commit 8283779

Browse files
authored
Merge pull request #1721 from dolthub/aaron/fork-jsonpath
go.mod: Move oliveagle/jsonpath -> dolthub/jsonpath.
2 parents 38acd8c + 2c54f5c commit 8283779

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module github.com/dolthub/go-mysql-server
22

33
require (
44
github.com/cespare/xxhash v1.1.0
5+
github.com/dolthub/jsonpath v0.0.1
56
github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81
67
github.com/dolthub/vitess v0.0.0-20230407173322-ae1622f38e94
78
github.com/go-kit/kit v0.10.0
@@ -12,7 +13,6 @@ require (
1213
github.com/hashicorp/golang-lru v0.5.4
1314
github.com/lestrrat-go/strftime v1.0.4
1415
github.com/mitchellh/hashstructure v1.1.0
15-
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852
1616
github.com/pkg/errors v0.9.1
1717
github.com/pmezard/go-difflib v1.0.0
1818
github.com/shopspring/decimal v1.2.0
@@ -40,6 +40,4 @@ require (
4040
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
4141
)
4242

43-
replace github.com/oliveagle/jsonpath => github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474
44-
4543
go 1.19

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
5151
github.com/denisenkom/go-mssqldb v0.10.0 h1:QykgLZBorFE95+gO3u9esLd0BmbvpWp0/waNNZfHBM8=
5252
github.com/denisenkom/go-mssqldb v0.10.0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU=
5353
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
54-
github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474 h1:xTrR+l5l+1Lfq0NvhiEsctylXinUMFhhsqaEcl414p8=
55-
github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474/go.mod h1:kMz7uXOXq4qRriCEyZ/LUeTqraLJCjf0WVZcUi6TxUY=
54+
github.com/dolthub/jsonpath v0.0.1 h1:Nd+T3U+XisK3kOuxtABS5IIbZqXVIlOR9VYquyjQ0u0=
55+
github.com/dolthub/jsonpath v0.0.1/go.mod h1:ZWUdY4iszqRQ8OcoXClkxiAVAoWoK3cq0Hvv4ddGRuM=
5656
github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81 h1:7/v8q9XGFa6q5Ap4Z/OhNkAMBaK5YeuEzwJt+NZdhiE=
5757
github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81/go.mod h1:siLfyv2c92W1eN/R4QqG/+RjjX5W2+gCTRjZxBjI3TY=
5858
github.com/dolthub/vitess v0.0.0-20230407173322-ae1622f38e94 h1:As3/5XDEthX6rvA+Dbiutxo965AdVhxa937j2OGSaog=

sql/rowexec/rel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"io"
2222
"reflect"
2323

24-
"github.com/oliveagle/jsonpath"
24+
"github.com/dolthub/jsonpath"
2525
"github.com/shopspring/decimal"
2626
"go.opentelemetry.io/otel/attribute"
2727
"go.opentelemetry.io/otel/trace"

sql/rowexec/rel_iters.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"sort"
2323
"strings"
2424

25-
"github.com/oliveagle/jsonpath"
25+
"github.com/dolthub/jsonpath"
2626

2727
"github.com/dolthub/go-mysql-server/sql"
2828
"github.com/dolthub/go-mysql-server/sql/expression"

sql/types/json_value.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"sort"
2323
"strings"
2424

25-
"github.com/oliveagle/jsonpath"
25+
"github.com/dolthub/jsonpath"
2626

2727
"github.com/dolthub/go-mysql-server/sql"
2828
)

0 commit comments

Comments
 (0)