PostgreSQL driver and toolkit for Go
 
 
 
Go to file
Jack Christensen d1fd222ca5 Add transaction context support 2017-05-20 17:58:19 -05:00
chunkreader Reduce allocations and copies in pgproto3 2017-04-29 11:55:14 -05:00
examples Add log adapters for testing and log15 2017-04-29 20:33:52 -05:00
internal/sanitize Add simple protocol suuport with (Query|Exec)Ex 2017-04-10 08:58:51 -05:00
log Added log adapter for logrus 2017-04-29 21:28:38 -05:00
pgio Remove read functions from pgio and update docs 2017-05-06 08:54:47 -05:00
pgmock Add transaction context support 2017-05-20 17:58:19 -05:00
pgproto3 Add flush and close messages to pgproto3 2017-05-19 17:31:22 -05:00
pgtype Fix shopsprint-numeric test 2017-05-20 09:46:06 -05:00
stdlib Add transaction context support 2017-05-20 17:58:19 -05:00
.gitignore Introduce pgproto3 package 2017-04-29 10:02:38 -05:00
.travis.yml Remove PG 9.0 hstore support from Travis 2017-05-20 08:45:57 -05:00
CHANGELOG.md Add PgxScanner interface 2017-02-02 20:20:52 -06:00
LICENSE Add license 2013-07-30 19:05:09 -05:00
README.md Add godoc.org badge to README.md 2017-05-09 17:42:33 -05:00
bench-tmp_test.go Initial proof-of-concept for pgtype 2017-03-03 15:33:34 -06:00
bench_test.go Added log adapter for logrus 2017-04-29 21:28:38 -05:00
conn-lock-todo.txt wip 2017-02-09 21:42:58 -06:00
conn.go Do not double call termContext in QueryEx 2017-05-20 10:58:44 -05:00
conn_config_test.go.example Improve replication test reliability 2017-03-11 11:17:51 -06:00
conn_config_test.go.travis Properly make it a func init() 2017-01-05 12:55:34 -08:00
conn_pool.go Add transaction context support 2017-05-20 17:58:19 -05:00
conn_pool_private_test.go Make ConnPool.Acquire() non blocking, feedback 2016-07-06 16:22:59 +03:00
conn_pool_test.go Add transaction context support 2017-05-20 17:58:19 -05:00
conn_test.go Added log adapter for logrus 2017-04-29 21:28:38 -05:00
context-todo.txt Add ConnPool context methods 2017-02-06 18:54:49 -06:00
copy_from.go Remove unneeded WriteBuf 2017-05-02 21:39:23 -05:00
copy_from_test.go Add pgtype.Record and prerequisite restructuring 2017-03-18 12:01:16 -05:00
doc.go Added log adapter for logrus 2017-04-29 21:28:38 -05:00
example_custom_type_test.go Add pgtype.Point 2017-04-03 17:53:32 -05:00
example_json_test.go Remove skip test for missing json type 2017-03-03 16:08:00 -06:00
fastpath.go Remove unneeded WriteBuf 2017-05-02 21:39:23 -05:00
helper_test.go wip 2017-02-11 14:59:16 -06:00
large_objects.go Move not null Oid to pgtype 2017-03-13 21:34:38 -05:00
large_objects_test.go Implement large object support 2015-01-01 22:01:01 -05:00
logger.go Added log adapter for logrus 2017-04-29 21:28:38 -05:00
messages.go Remove unneeded WriteBuf 2017-05-02 21:39:23 -05:00
pgpass.go Support pgpass 2017-03-17 15:12:41 -05:00
pgpass_test.go Support pgpass 2017-03-17 15:12:41 -05:00
private_test.go Remove Conn.TxStatus 2017-01-07 14:10:11 -06:00
query.go Do not double call termContext in QueryEx 2017-05-20 10:58:44 -05:00
query_test.go Fix queries with more than 32 columns 2017-05-01 19:46:37 -05:00
replication.go Remove Rows.Fatal 2017-05-06 09:37:49 -05:00
replication_test.go Restructure *Rows.Values() to use Get() 2017-03-11 20:07:31 -06:00
sql.go Cleanups 2016-08-30 20:05:44 +02:00
sql_test.go Cleanups 2016-08-30 20:05:44 +02:00
stress_test.go Add simple protocol suuport with (Query|Exec)Ex 2017-04-10 08:58:51 -05:00
tx.go Add transaction context support 2017-05-20 17:58:19 -05:00
tx_test.go Add transaction context support 2017-05-20 17:58:19 -05:00
v3.md Remove AfterClose() and Conn() from Tx and Rows 2017-05-06 10:00:49 -05:00
values.go Remove unneeded WriteBuf 2017-05-02 21:39:23 -05:00
values_test.go Renable json tests 2017-03-18 14:53:51 -05:00

README.md

Pgx

Experimental Branch

This is the experimental v3 branch. v2 is the stable branch.

Pgx is a pure Go database connection library designed specifically for PostgreSQL. Pgx is different from other drivers such as pq because, while it can operate as a database/sql compatible driver, pgx is primarily intended to be used directly. It offers a native interface similar to database/sql that offers better performance and more features.

Features

Pgx supports many additional features beyond what is available through database/sql.

  • Listen / notify
  • Transaction isolation level control
  • Full TLS connection control
  • Binary format support for custom types (can be much faster)
  • Copy protocol support for faster bulk data loads
  • Logging support
  • Configurable connection pool with after connect hooks to do arbitrary connection setup
  • PostgreSQL array to Go slice mapping for integers, floats, and strings
  • Hstore support
  • JSON and JSONB support
  • Maps inet and cidr PostgreSQL types to net.IPNet and net.IP
  • Large object support
  • Null mapping to Null* struct or pointer to pointer.
  • Supports database/sql.Scanner and database/sql/driver.Valuer interfaces for custom types
  • Logical replication connections, including receiving WAL and sending standby status updates

Performance

Pgx performs roughly equivalent to pq and go-pg for selecting a single column from a single row, but it is substantially faster when selecting multiple entire rows (6893 queries/sec for pgx vs. 3968 queries/sec for pq -- 73% faster).

See this gist for the underlying benchmark results or checkout go_db_bench to run tests for yourself.

database/sql

Import the github.com/jackc/pgx/stdlib package to use pgx as a driver for database/sql. It is possible to retrieve a pgx connection from database/sql on demand. This allows using the database/sql interface in most places, but using pgx directly when more performance or PostgreSQL specific features are needed.

Documentation

pgx includes extensive documentation in the godoc format. It is viewable online at godoc.org.

Testing

pgx supports multiple connection and authentication types. Setting up a test environment that can test all of them can be cumbersome. In particular, Windows cannot test Unix domain socket connections. Because of this pgx will skip tests for connection types that are not configured.

Normal Test Environment

To setup the normal test environment, first install these dependencies:

go get github.com/jackc/fake
go get github.com/shopspring/decimal
go get gopkg.in/inconshreveable/log15.v2

Then run the following SQL:

create user pgx_md5 password 'secret';
create user " tricky, ' } "" \ test user " password 'secret';
create database pgx_test;
create user pgx_replication with replication password 'secret';

Connect to database pgx_test and run:

create extension hstore;

Next open conn_config_test.go.example and make a copy without the .example. If your PostgreSQL server is accepting connections on 127.0.0.1, then you are done.

Connection and Authentication Test Environment

Complete the normal test environment setup and also do the following.

Run the following SQL:

create user pgx_none;
create user pgx_pw password 'secret';

Add the following to your pg_hba.conf:

If you are developing on Unix with domain socket connections:

local  pgx_test  pgx_none  trust
local  pgx_test  pgx_pw    password
local  pgx_test  pgx_md5   md5

If you are developing on Windows with TCP connections:

host  pgx_test  pgx_none  127.0.0.1/32 trust
host  pgx_test  pgx_pw    127.0.0.1/32 password
host  pgx_test  pgx_md5   127.0.0.1/32 md5

Replication Test Environment

Add a replication user:

create user pgx_replication with replication password 'secret';

Add a replication line to your pg_hba.conf:

host replication pgx_replication 127.0.0.1/32 md5

Change the following settings in your postgresql.conf:

wal_level=logical
max_wal_senders=5
max_replication_slots=5

Set replicationConnConfig appropriately in conn_config_test.go.

Version Policy

pgx follows semantic versioning for the documented public API on stable releases. Branch v2 is the latest stable release. master can contain new features or behavior that will change or be removed before being merged to the stable v2 branch (in practice, this occurs very rarely).