Update docs for 2.10.0 release

pull/191/merge v2.10.0
Jack Christensen 2017-03-17 08:06:00 -05:00
parent 2db04c3a02
commit 97c01fb524
3 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# Unreleased
# 2.10.0 (March 17, 2017)
## Fixes
@ -16,10 +16,12 @@
* Add named error ErrAcquireTimeout (Alexander Staubo)
* Add logical replication decoding (Kris Wehner)
* Add PgxScanner interface to allow types to simultaneously support database/sql and pgx (Jack Christensen)
* Add CopyFrom with schema support (Jack Christensen)
## Compatibility
* jsonb now defaults to binary format. This means passing a []byte to a jsonb column will no longer work.
* CopyTo is now deprecated but will continue to work.
# 2.9.0 (August 26, 2016)

View File

@ -15,7 +15,7 @@ Pgx supports many additional features beyond what is available through database/
* 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
* Copy from 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

14
doc.go
View File

@ -214,23 +214,23 @@ creates a transaction with a specified isolation level.
Copy Protocol
Use CopyTo to efficiently insert multiple rows at a time using the PostgreSQL
copy protocol. CopyTo accepts a CopyToSource interface. If the data is already
in a [][]interface{} use CopyToRows to wrap it in a CopyToSource interface. Or
implement CopyToSource to avoid buffering the entire data set in memory.
Use CopyFrom to efficiently insert multiple rows at a time using the PostgreSQL
copy protocol. CopyFrom accepts a CopyFromSource interface. If the data is already
in a [][]interface{} use CopyFromRows to wrap it in a CopyFromSource interface. Or
implement CopyFromSource to avoid buffering the entire data set in memory.
rows := [][]interface{}{
{"John", "Smith", int32(36)},
{"Jane", "Doe", int32(29)},
}
copyCount, err := conn.CopyTo(
copyCount, err := conn.CopyFrom(
"people",
[]string{"first_name", "last_name", "age"},
pgx.CopyToRows(rows),
pgx.CopyFromRows(rows),
)
CopyTo can be faster than an insert with as few as 5 rows.
CopyFrom can be faster than an insert with as few as 5 rows.
Listen and Notify