mirror of
https://github.com/go-gitea/gitea
synced 2024-11-12 13:14:24 +00:00
73e5c36f25
* 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> |
||
---|---|---|
.. | ||
oid | ||
scram | ||
.gitignore | ||
.travis.sh | ||
.travis.yml | ||
array.go | ||
buf.go | ||
conn_go18.go | ||
conn.go | ||
connector.go | ||
copy.go | ||
doc.go | ||
encode.go | ||
error.go | ||
go.mod | ||
krb.go | ||
LICENSE.md | ||
notice.go | ||
notify.go | ||
README.md | ||
rows.go | ||
ssl_permissions.go | ||
ssl_windows.go | ||
ssl.go | ||
TESTS.md | ||
url.go | ||
user_other.go | ||
user_posix.go | ||
user_windows.go | ||
uuid.go |
pq - A pure Go postgres driver for Go's database/sql package
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.