mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-30 22:33:49 +02:00
* feat: more plugins * chore(ci): split out benchmarks Attempt to resolve too many open files in ci * chore(ci): split out benchmarks * fix(ci): Attempt to resolve too many open files in ci * fix: set DefaultX for cli flag and service option * fix: restore http broker * fix: default http broker * feat: full nats profile * chore: still ugly, not ready * fix: better initialization for profiles * fix(tests): comment out flaky listen tests * fix: disable benchmarks on gha * chore: cleanup, comments * chore: add nats config source
45 lines
815 B
Go
45 lines
815 B
Go
package pgx
|
|
|
|
import (
|
|
"database/sql/driver"
|
|
"encoding/json"
|
|
"errors"
|
|
)
|
|
|
|
type Metadata map[string]interface{}
|
|
|
|
// Scan satisfies the sql.Scanner interface.
|
|
func (m *Metadata) Scan(src interface{}) error {
|
|
source, ok := src.([]byte)
|
|
if !ok {
|
|
return errors.New("type assertion .([]byte) failed")
|
|
}
|
|
|
|
var i interface{}
|
|
err := json.Unmarshal(source, &i)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*m, ok = i.(map[string]interface{})
|
|
if !ok {
|
|
return errors.New("type assertion .(map[string]interface{}) failed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Value satisfies the driver.Valuer interface.
|
|
func (m *Metadata) Value() (driver.Value, error) {
|
|
j, err := json.Marshal(m)
|
|
return j, err
|
|
}
|
|
|
|
func toMetadata(m *Metadata) map[string]interface{} {
|
|
md := make(map[string]interface{})
|
|
for k, v := range *m {
|
|
md[k] = v
|
|
}
|
|
return md
|
|
}
|