PostgreSQL driver and toolkit for Go
 
 
 
Go to file
Jack Christensen f65776f084 Fix typo 2017-08-25 13:31:50 -05:00
chunkreader Reduce allocations and copies in pgproto3 2017-04-29 11:55:14 -05:00
examples Use insert on conflict for url shortener example 2017-07-14 08:58:41 -05:00
internal/sanitize Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
log fix logrus updated package name (lowercase) 2017-08-18 13:46:49 +02:00
pgio Remove read functions from pgio and update docs 2017-05-06 08:54:47 -05:00
pgmock Automatically register enum types 2017-07-04 11:38:50 -05:00
pgproto3 Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
pgtype Merge pull request #306 from cyberdelia/rows 2017-08-22 14:21:47 -05:00
stdlib Add more ColumnType support 2017-08-18 18:22:08 -07:00
.gitignore Introduce pgproto3 package 2017-04-29 10:02:38 -05:00
.travis.yml fix logrus updated package name (lowercase) 2017-08-18 13:46:49 +02:00
CHANGELOG.md Release 3.0.1 2017-08-12 17:45:57 -05:00
LICENSE Add license 2013-07-30 19:05:09 -05:00
README.md Add Travis CI badge 2017-07-28 15:11:09 -05:00
batch.go Fix batch query with query syntax error 2017-07-21 15:22:32 -05:00
batch_test.go Fix batch query with query syntax error 2017-07-21 15:22:32 -05:00
bench-tmp_test.go Initial proof-of-concept for pgtype 2017-03-03 15:33:34 -06:00
bench_test.go Finish core batch operations 2017-06-03 11:49:27 -05:00
conn.go Fix typo 2017-08-25 13:31:50 -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 Use github.com/pkg/errors 2017-06-04 21:30:03 -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 Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
conn_test.go Add notification response hook 2017-06-04 21:18:26 -05:00
copy_from.go Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
copy_from_test.go Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
doc.go fix logrus updated package name (lowercase) 2017-08-18 13:46:49 +02:00
example_custom_type_test.go Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
example_json_test.go Remove skip test for missing json type 2017-03-03 16:08:00 -06:00
fastpath.go Use Go casing convention for OID 2017-06-03 11:53:49 -05:00
helper_test.go Happy-path batch query mode 2017-06-02 14:54:17 -05:00
large_objects.go Use Go casing convention for OID 2017-06-03 11:53:49 -05:00
large_objects_test.go Implement large object support 2015-01-01 22:01:01 -05:00
logger.go Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
messages.go Add more ColumnType support 2017-08-18 18:22:08 -07: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 Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
query_test.go Use Go casing convention for OID 2017-06-03 11:53:49 -05:00
replication.go Use github.com/pkg/errors 2017-06-04 21:30:03 -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 Use github.com/pkg/errors 2017-06-04 21:30:03 -05:00
tx.go Add QueryEx, QueryRowEx, ExecEx, and RollbackEx to Tx 2017-08-18 14:17:53 -05:00
tx_test.go Add transaction context support 2017-05-20 17:58:19 -05:00
values.go Fix compilation on 32-bit platform 2017-08-03 14:17:28 -05:00
values_test.go Use Go casing convention for CID/TID/XID/CIDR 2017-06-03 12:01:49 -05:00

README.md

Build Status

pgx - PostgreSQL Driver and Toolkit

pgx is a pure Go driver and toolkit for PostgreSQL. pgx is different from other drivers such as pq because, while it can operate as a database/sql compatible driver, pgx is also usable directly. It offers a native interface similar to database/sql that offers better performance and more features.

var name string
var weight int64
err := conn.QueryRow("select name, weight from widgets where id=$1", 42).Scan(&name, &weight)
if err != nil {
    return err
}

Features

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

  • Support for approximately 60 different PostgreSQL types
  • Batch queries
  • Single-round trip query mode
  • Full TLS connection control
  • Binary format support for custom types (can be much faster)
  • Copy protocol support for faster bulk data loads
  • Extendable logging support including built-in support for log15 and logrus
  • Connection pool with after connect hook to do arbitrary connection setup
  • Listen / notify
  • 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
  • Notice response handling (this is different than listen / notify)

Performance

pgx performs roughly equivalent to go-pg and is almost always faster than pq. When parsing large result sets the percentage difference can be significant (16483 queries/sec for pgx vs. 10106 queries/sec for pq -- 63% faster).

In many use cases a significant cause of latency is network round trips between the application and the server. pgx supports query batching to bundle multiple queries into a single round trip. Even in the case of a connection with the lowest possible latency, a local Unix domain socket, batching as few as three queries together can yield an improvement of 57%. With a typical network connection the results can be even more substantial.

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

In addition to the native driver, pgx also includes a number of packages that provide additional functionality.

github.com/jackc/pgx/stdlib

database/sql compatibility layer for pgx. pgx can be used as a normal database/sql driver, but at any time the native interface may be acquired for more performance or PostgreSQL specific functionality.

github.com/jackc/pgx/pgtype

Approximately 60 PostgreSQL types are supported including uuid, hstore, json, bytea, numeric, interval, inet, and arrays. These types support database/sql interfaces and are usable even outside of pgx. They are fully tested in pgx and pq. They also support a higher performance interface when used with the pgx driver.

github.com/jackc/pgx/pgproto3

pgproto3 provides standalone encoding and decoding of the PostgreSQL v3 wire protocol. This is useful for implementing very low level PostgreSQL tooling.

github.com/jackc/pgx/pgmock

pgmock offers the ability to create a server that mocks the PostgreSQL wire protocol. This is used internally to test pgx by purposely inducing unusual errors. pgproto3 and pgmock together provide most of the foundational tooling required to implement a PostgreSQL proxy or MitM (such as for a custom connection pooler).

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 v3 is the latest stable release. master can contain new features or behavior that will change or be removed before being merged to the stable v3 branch (in practice, this occurs very rarely). v2 is the previous stable release.