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 73e5c36f25
Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849)
* Upgrade xorm to v1.2.2 (#16663)

Backport #16663

Fix #16683

* Upgrade xorm to v1.2.2

* Change the Engine interface to match xorm v1.2.2

* Add test to ensure that dumping of login sources remains correct (#16847)

#16831 has occurred because of a missed regression. This PR adds a simple test to
try to prevent this occuring again.

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

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2021-08-28 13:15:21 +02: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 Vendor Update (#14496) 2021-01-28 17:56:38 +01:00
.travis.sh Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
.travis.yml Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
array.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
buf.go Use gitea forked macaron (#7933) 2019-08-23 12:40:29 -04:00
conn_go18.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
conn.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
connector.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
copy.go Vendor Update (#14496) 2021-01-28 17:56:38 +01:00
doc.go Switch to absolute latest pq driver (#12859) 2020-09-18 17:38:46 +03:00
encode.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
error.go Vendor Update (#14496) 2021-01-28 17:56:38 +01: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 xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
TESTS.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
url.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02:00
user_other.go Upgrade xorm to v1.2.2 (#16663) & Add test to ensure that dumping of login sources remains correct (#16847) (#16849) 2021-08-28 13:15:21 +02: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.