1 Star 1 Fork 0

bigbase/pg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
append_hstore.go 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
Vladimir Mihailenco 提交于 2016-09-19 08:30 . Tweak formatting.
package types
import (
"fmt"
"reflect"
)
var mapStringStringType = reflect.TypeOf(map[string]string(nil))
func HstoreAppender(typ reflect.Type) AppenderFunc {
if typ.Key() == stringType && typ.Elem() == stringType {
return appendMapStringStringValue
}
return func(b []byte, v reflect.Value, quote int) []byte {
err := fmt.Errorf("pg.Hstore(unsupported %s)", v.Type())
return AppendError(b, err)
}
}
func appendMapStringString(b []byte, m map[string]string, quote int) []byte {
if m == nil {
return AppendNull(b, quote)
}
if quote == 1 {
b = append(b, '\'')
}
for key, value := range m {
b = AppendString(b, key, 2)
b = append(b, '=', '>')
b = AppendString(b, value, 2)
b = append(b, ',')
}
if len(m) > 0 {
b = b[:len(b)-1] // Strip trailing comma.
}
if quote == 1 {
b = append(b, '\'')
}
return b
}
func appendMapStringStringValue(b []byte, v reflect.Value, quote int) []byte {
m := v.Convert(mapStringStringType).Interface().(map[string]string)
return appendMapStringString(b, m, quote)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bigbase/pg.git
git@gitee.com:bigbase/pg.git
bigbase
pg
pg
v6.9.1

搜索帮助