-
During debugging I have found that one of my go-routines got sutck on `pgx.pool.Acquire()` function. The thing is, I have multiple go-routines using single pool. So, the question is, is `pgx.pool` saf…
-
OS is FreeBSD. pgx is 0.4.0-beta-0. It seems to get pretty close to the end but then is missing a C header which would be in /usr/local.
`cargo pgx init --pg13 pg_config` with `pg_config` showi…
-
**Describe the bug**
Recently I ran into an issue where an **UPDATE** query I was executing via either **QueryContext/ExecContext** always changed the 30th argument to `...`, this resulted in a Postg…
-
pgx throwing "struct doesn't have corresponding row field " when attempting to use struct tag `db:"-"` with the following functions:
- RowToStructByName
- RowToStructByNameLax
- RowToStructByPos
…
-
**Describe the bug**
pgx/v4 has an API called [`RegisterConnConfig`](https://pkg.go.dev/github.com/jackc/pgx/v4@v4.14.1/stdlib#RegisterConnConfig), which allows user to customize pgx configuration (s…
-
xorm现在用的好像是lib/pq这个包,也是无法支持读取数组类型字段的,我测了jackc/pgx这个包是支持的,也支持json/jsonb类型,是否考虑在xorm中用pgx这个包替换lib/pq?两个包的使用方法几乎是一样的,而且pgx里还有pgx.NullInt16,pgx.NullInt32,pgx.NullInt64等类型。
-
## Expected Behavior
According to https://github.com/jackc/pgx/pull/545 pgx can accept multiple Postgres hosts in the format like 2.2.2.2:1,127.0.0.1,4.2.4.2
I assume that temporal passes this to a …
-
Currently there is no way to specify the priority of a transaction when using the pgx integration on initialization of the transaction. This results in another round trip to the DB with a `SET TRANSAC…
-
Hi!
I am using the example `SortWorker` job with small adjustments to test longer-running jobs with cancellation but it does not seem to work.
```go
const SortJobKind = "sort"
type SortArgs …
-
With the current pgx db connection pool, the certificates for connecting to the database are only read once (on startup).
Clients rotating their certificates on the database (on a regular basis) need…