This repository was archived by the owner on Apr 15, 2026. It is now read-only.
v.1.7.0
Add
- when value is a slice,
inkeyword is omitable
map[string]interface{}{
"foo in": []int{1,2,3},
}
// equals to
map[string]interface{}{
"foo": []int{1,2,3},
}Fix
- if an object implements sql.Scanner, it'll take over the Scan job