Fix postgres
This commit is contained in:
parent
44f6fc09ab
commit
a56f7cf5eb
|
@ -1302,6 +1302,12 @@ type pqDriver struct {
|
||||||
baseDriver
|
baseDriver
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (b *pqDriver) Features() DriverFeatures {
|
||||||
|
return DriverFeatures{
|
||||||
|
SupportNullable: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type values map[string]string
|
type values map[string]string
|
||||||
|
|
||||||
func (vs values) Set(k, v string) {
|
func (vs values) Set(k, v string) {
|
||||||
|
|
Loading…
Reference in New Issue