Commit Graph

3554 Commits (c6c50110db1353bf10eb3fc9646717d4a18a2f1b)

Author SHA1 Message Date
Ville Skyttä c6c50110db Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
Jack Christensen 91530db629 Fix typo in string.Cut refactor 2023-10-07 09:20:28 -05:00
Ville Skyttä 24ed0e4257 Make use of strings.Cut 2023-10-04 20:41:55 +03:00
Jack Christensen 163eb68866 Normalize timeout error when receiving pipeline results
https://github.com/jackc/pgx/issues/1748#issuecomment-1740437138
2023-09-30 08:50:40 -05:00
Jack Christensen a61517a83b SendBatch should pass ctx to StartPipeline
https://github.com/jackc/pgx/issues/1748
2023-09-28 20:00:02 -05:00
Vincent Le Goff d93f31b8fa docs: GetPoolConnector 2023-09-25 08:51:12 -05:00
Jack Christensen cf72a00f52 Skip test of unsupported operation on CockroachDB 2023-09-23 10:49:11 -05:00
Jack Christensen c08cc72306 Improve QueryExecModeCacheDescribe and clarify documentation
QueryExecModeCacheDescribe actually is safe even when the schema or
search_path is modified. It may return an error on the first execution
but it should never silently encode or decode a value incorrectly. Add a
test to demonstrate and ensure this behavior.

Update documentation of QueryExecModeCacheDescribe to remove warning of
undetected result decoding errors.

Update documentation of QueryExecModeCacheStatement and
QueryExecModeCacheDescribe to indicate that the first execution of an
invalidated statement may fail.
2023-09-23 10:35:42 -05:00
Jack Christensen 7de53a958b stmtcache: Use deterministic, stable statement names
Statement names are now a function of the SQL. This may make database
diagnostics, monitoring, and profiling easier.
2023-09-23 09:55:05 -05:00
Jack Christensen bbe2653bc5 Prepare chooses statement name based on sql if name == sql
This makes it easier to explicitly manage prepared statements.

refs #1716
2023-09-23 08:40:06 -05:00
Mochammad Hanif R 4e7aa59d64 Fix typos in docs 2023-09-23 07:20:36 -05:00
Lev Zakharov b301530a5f add doc for OpenDBFromPool 2023-09-09 08:13:56 -05:00
Lev Zakharov f42824cab3 update docs 2023-09-09 08:13:56 -05:00
Lev Zakharov 18856482c4 remove before/after acquire hooks 2023-09-09 08:13:56 -05:00
Lev Zakharov 639691c0ab add test for stdlib.OpenDBFromPool 2023-09-09 08:13:56 -05:00
Lev Zakharov 3e716c4b06 add example to the doc 2023-09-09 08:13:56 -05:00
Lev Zakharov 51ade172e5 refactor to use the same connection implementation 2023-09-09 08:13:56 -05:00
Lev Zakharov 3d4540aa1b add *sql.DB construction from *pgxpool.Pool 2023-09-09 08:13:56 -05:00
Julien GOTTELAND 389931396e No data result on error 2023-08-19 18:31:41 -05:00
Julien GOTTELAND 9ee7d29cf9 Add CollectExactlyOneRow function 2023-08-19 18:31:41 -05:00
Craig Ringer a7375cc503 docs: Emphasise need to call rows.Err() after rows.Next() returns false
The Rows interface in pgx, like its ancestor in database/sql, is easy to
accidentally misuse in a way that can cause apps to misinterpret
database or connection errors as successful queries with empty or
truncated result-sets.

Update the docs to emphasise the need to call rows.Err() after
rows.Next() returns false, and direct users of the interface to the v5
API helpers that make writing correct code easier.

The docs on Conn.Query() already call this out, so only a small change
is needed to warn users and point them at the details on Query()

Per details in #1707
2023-08-10 17:19:15 -05:00
Jack Christensen d43bd349c1 Add batch insert benchmarks 2023-08-08 18:44:31 -05:00
Jack Christensen 5c6cf62b53 Fix off by one error in benchmark 2023-08-08 18:38:34 -05:00
Jack Christensen d17440d5c7 Add missed changelog entry and fix typo 2023-08-05 08:36:48 -05:00
Jack Christensen 4c60839c48 Release v5.4.3 2023-08-05 08:24:37 -05:00
Jack Christensen e9087eacb8 Fix data race when pgproto3 trace is enabled during CopyFrom
https://github.com/jackc/pgx/issues/1703
2023-08-05 07:30:59 -05:00
Jack Christensen d626dfe94e TestConnConcurrency has been failing on CI
This probably won't fix it, but at the very least we should not be
running assertions in a goroutine.
2023-07-28 18:13:31 -05:00
Jack Christensen 1a9b2a53a5 Fix staticcheck issues 2023-07-28 18:04:31 -05:00
Alexey Palazhchenko 8fb309c631 Use Go 1.20's link syntax for `ParseConfig` 2023-07-28 17:51:42 -05:00
horpto f4533dc906 optimize parseNumericString 2023-07-25 19:25:23 -05:00
Jack Christensen 4091eedf03 Check out code before setting up Go
This allows for caching the Go dependencies.
2023-07-22 17:13:30 -05:00
Jack Christensen 87d771ef9c Prettier ci.yml 2023-07-22 17:12:56 -05:00
Jack Christensen 492283b90b zeronull.Timestamptz should use pgtype.Timestamptz
https://github.com/jackc/pgx/issues/1694
2023-07-22 08:35:32 -05:00
James Hartig e665f74c99 fix TestPoolBackgroundChecksMinConns and NewConnsCount
Previously it was checking TotalConns but that includes ConstructingConns.
Instead it should directly check IdleConns so the next Acquire takes one of
those and doesn't make a 3rd connection. The check against the context was
also wrong which prevented this from timing out after 2 minutes.

This also fixes a bug where NewConnsCount was not correctly counting
connections created by Acquire directly.

Fixes #1690
2023-07-22 08:28:39 -05:00
Rafi Shamim f90e86fd8d Unskip TestConnCopyFromLarge for CockroachDB
This test is passing now.
2023-07-22 07:11:47 -05:00
Jack Christensen 88b49d48f6 Disable TestPoolBackgroundChecksMinConns on Windows
https://github.com/jackc/pgx/issues/1690
2023-07-19 21:20:26 -05:00
Jack Christensen 2506cf3666 Make CI badge link 2023-07-19 21:12:49 -05:00
Jack Christensen d58fe2d53c Fix json scan of non-string pointer to pointer
https://github.com/jackc/pgx/issues/1691
2023-07-19 20:54:05 -05:00
Jack Christensen ef9e26a5d5 Check nil in defer
A panic might mean that pbr is nil.

https://github.com/jackc/pgx/issues/1689
2023-07-15 10:16:28 -05:00
Evan Jones 6703484a0d go.mod: run go mod tidy; removes golang.org/x/sys
I'm not sure exactly what commit removed the usage of this module,
but it seems worth simplifying the dependencies.
2023-07-15 10:12:11 -05:00
Jack Christensen c513e2e435 Fix: pgxpool: background health check cannot overflow pool
It was previously possible for a connection to be created while the
background health check was running. The health check could create
connection(s) in excess of the maximum pool size in this case.

https://github.com/jackc/pgx/issues/1660
2023-07-15 10:09:53 -05:00
smaher-edb f47f0cf823 connect_timeout is not obeyed for sslmode=allow|prefer
connect_timeout given in conn string was not obeyed if sslmode is not specified (default is prefer) or equals sslmode=allow|prefer. It took twice the amount of time specified by connect_timeout in conn string. While this behavior is correct if multi-host is provided in conn string, it doesn't look correct in case of single host. This behavior was also not matching with libpq.

The root cause was to implement sslmode=allow|prefer conn are tried twice. First with TLSConfig and if that doesn't work then without TLSConfig. The fix for this issue now uses the same context if same host is being tried out. This change won't affect the existing multi-host behavior.

This PR goal is to close issue [jackc/pgx/issues/1672](https://github.com/jackc/pgx/issues/1672)
2023-07-15 09:49:09 -05:00
Christoph Engelbert (noctarius) bd3e0d422c Fixes #1684 QCharArrayOID being defined with the wrong OID 2023-07-15 09:44:48 -05:00
Jack Christensen 2f6fcf8eb0 RowTo(AddrOf)StructByPos ignores fields with "-" db tag
https://github.com/jackc/pgx/discussions/1682
2023-07-15 09:39:20 -05:00
Jack Christensen 038fc448c1 Release v5.4.2 2023-07-11 21:29:54 -05:00
Jack Christensen 95aa87f2e8 exitPotentialWriteReadDeadlock stops bgReader
It's not enough to stop the slowWriteTimer, because the bgReader may
have been started.
2023-07-11 21:29:11 -05:00
Jack Christensen f512b9688b Add PgConn.SyncConn
This provides a way to ensure it is safe to directly read or write to
the underlying net.Conn.

https://github.com/jackc/pgx/issues/1673
2023-07-11 21:29:11 -05:00
Jack Christensen 05440f9d3f Drastically increase allowed test times for potato CI
The context timeouts for tests are designed to give a better error
message when something hangs rather than the test just timing out.
Unfortunately, the potato CI frequently has some test or another
randomly take a long time. While the increased times are somewhat less
than optimal on a real computer, hopefully this will solve the
flickering CI.
2023-07-11 21:16:08 -05:00
Jack Christensen e0c70201dc Skip json format test on CockroachDB 2023-07-11 20:51:22 -05:00
Jack Christensen 524f661136 Fix JSON encoding for pointer to structs implementing json.Marshaler
https://github.com/jackc/pgx/issues/1681
2023-07-11 20:28:36 -05:00