mirror of https://github.com/jackc/pgx.git
parent
2db04c3a02
commit
97c01fb524
|
@ -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)
|
||||
|
||||
|
|
|
@ -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
14
doc.go
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue