1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-01 17:05:48 +00:00
gitea/vendor/github.com/lib/pq
zeripath 54ae448588
Switch to absolute latest pq driver (#12859)
This PR updates the lib/pq driver to the current master head to
pick up the deadlock fix in lib/pq#993

Hopefully this will resolve our CI issues.

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: Lauris BH <lauris@nix.lv>
2020-09-18 17:38:46 +03:00
..
oid use go 1.13 (#8088) 2019-09-12 14:58:32 +03:00
scram pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
.gitignore Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
.travis.sh Use gitea forked macaron (#7933) 2019-08-23 12:40:29 -04:00
.travis.yml Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
array.go Update vendor github.com/lib/pq (#2752) 2017-10-21 12:05:58 +08:00
buf.go Use gitea forked macaron (#7933) 2019-08-23 12:40:29 -04:00
conn_go18.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
conn.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
connector.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
copy.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
doc.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
encode.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
error.go Use gitea forked macaron (#7933) 2019-08-23 12:40:29 -04:00
go.mod pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
krb.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
LICENSE.md Added all required dependencies 2016-11-04 08:43:11 +01:00
notice.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
notify.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
README.md Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
rows.go Update vendor github.com/lib/pq (#2752) 2017-10-21 12:05:58 +08:00
ssl_permissions.go Update vendor github.com/lib/pq (#2752) 2017-10-21 12:05:58 +08:00
ssl_windows.go Update vendor github.com/lib/pq (#2752) 2017-10-21 12:05:58 +08:00
ssl.go upgrade version of lib/pq to v1.1.0 (#6640) 2019-04-15 16:14:31 -04:00
TESTS.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
url.go Added all required dependencies 2016-11-04 08:43:11 +01:00
user_posix.go pq -> v1.7.0 (#11905) 2020-06-16 19:57:38 +08:00
user_windows.go Added all required dependencies 2016-11-04 08:43:11 +01:00
uuid.go Update vendor github.com/lib/pq (#2752) 2017-10-21 12:05:58 +08:00

pq - A pure Go postgres driver for Go's database/sql package

GoDoc

Install

go get github.com/lib/pq

Features

  • SSL
  • Handles bad connections for database/sql
  • Scan time.Time correctly (i.e. timestamp[tz], time[tz], date)
  • Scan binary blobs correctly (i.e. bytea)
  • Package for hstore support
  • COPY FROM support
  • pq.ParseURL for converting urls to connection strings for sql.Open.
  • Many libpq compatible environment variables
  • Unix socket support
  • Notifications: LISTEN/NOTIFY
  • pgpass support
  • GSS (Kerberos) auth

Tests

go test is used for testing. See TESTS.md for more details.

Status

This package is effectively in maintenance mode and is not actively developed. Small patches and features are only rarely reviewed and merged. We recommend using pgx which is actively maintained.