Jean-Sébastien Ney
Jean-Sébastien Ney
Maybe i missed this from documentation, Is it possible to extract data from an array ? ie : ``` yaml mongodb: collection: :columns: - latitude: :source: location[0] :type: FLOAT -...
pg gives me the following output on few of my records while running `mosql` ``` ERROR: malformed array literal: "["33 Avenue du Président Kennedy"]" DETAIL: "[" must introduce explicitly-specified array...
Hi, I've got an issue declaring a http2 client ```go cli := &fasthttp.Client{ ConfigureClient: func(hc *fasthttp.HostClient) error { return http2.ConfigureClient(hc, http2.ClientOpts{MaxResponseTime: clientMaxDuration}) } ``` ``` /home/circleci/go/pkg/mod/github.com/dgrr/[email protected]/configure.go:21:18: ca.client.Do undefined (type *Client...
Isn't int64 supposed to be properly decoded ? code: ```go package main import ( "bytes" "encoding/json" "github.com/vmihailenco/msgpack/v5" ) type Test struct { ID int64 `json:"id"` } func main() { s...
code: ```go package main import ( "encoding/json" "github.com/rs/zerolog/log" "github.com/shamaton/msgpack/v2" ) type foo struct { Parameters map[string]any `json:"parameters,omitempty" msgpack:"parameters,omitempty"` } func main() { b := []byte(`{"parameters":{"a":{"b":"foo","c":"bar","d":5.37}}}`) e := &foo{} err :=...