1
0

Update module lib/pq to v1.7.0 (#581)

Update module lib/pq to v1.7.0

Reviewed-on: https://kolaente.dev/vikunja/api/pulls/581
This commit is contained in:
renovate
2020-06-08 21:17:38 +00:00
committed by konrad
parent 32a5dff78d
commit bd11c9650e
160 changed files with 48 additions and 19372 deletions

16
vendor/github.com/lib/pq/doc.go generated vendored
View File

@ -243,5 +243,21 @@ bytes by the PostgreSQL server.
You can find a complete, working example of Listener usage at
https://godoc.org/github.com/lib/pq/example/listen.
Kerberos Support
If you need support for Kerberos authentication, add the following to your main
package:
import "github.com/lib/pq/auth/kerberos"
func init() {
pq.RegisterGSSProvider(func() (pq.Gss, error) { return kerberos.NewGSS() })
}
This package is in a separate module so that users who don't need Kerberos
don't have to download unnecessary dependencies.
*/
package pq