Fix postgres

This commit is contained in:
Lunny Xiao 2021-07-06 13:15:56 +08:00
parent 44f6fc09ab
commit a56f7cf5eb
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 6 additions and 0 deletions

View File

@ -1302,6 +1302,12 @@ type pqDriver struct {
baseDriver
}
func (b *pqDriver) Features() DriverFeatures {
return DriverFeatures{
SupportNullable: false,
}
}
type values map[string]string
func (vs values) Set(k, v string) {