Add support for configuring the JSON unmarshal function used when querying SELECT_JSON statements.
This commit is contained in:
parent
7ab44bc61c
commit
1db6b12074
6 changed files with 74 additions and 3 deletions
6
go.mod
6
go.mod
|
|
@ -15,6 +15,7 @@ require (
|
|||
|
||||
// used in tests
|
||||
require (
|
||||
github.com/bytedance/sonic v1.13.1
|
||||
github.com/google/go-cmp v0.7.0
|
||||
github.com/pkg/profile v1.7.0
|
||||
github.com/shopspring/decimal v1.4.0
|
||||
|
|
@ -25,6 +26,8 @@ require (
|
|||
|
||||
require (
|
||||
filippo.io/edwards25519 v1.1.0 // indirect
|
||||
github.com/bytedance/sonic/loader v0.2.4 // indirect
|
||||
github.com/cloudwego/base64x v0.1.5 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/felixge/fgprof v0.9.3 // indirect
|
||||
github.com/friendsofgo/errors v0.9.2 // indirect
|
||||
|
|
@ -35,10 +38,13 @@ require (
|
|||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
|
||||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
||||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
||||
github.com/volatiletech/inflect v0.0.1 // indirect
|
||||
github.com/volatiletech/randomize v0.0.1 // indirect
|
||||
github.com/volatiletech/strmangle v0.0.1 // indirect
|
||||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
|
||||
golang.org/x/crypto v0.31.0 // indirect
|
||||
golang.org/x/text v0.21.0 // indirect
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue