v.1.7.0
Add
- when value is a slice,
in
keyword 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
in
keyword is omitablemap[string]interface{}{
"foo in": []int{1,2,3},
}
// equals to
map[string]interface{}{
"foo": []int{1,2,3},
}