summaryrefslogtreecommitdiff
path: root/vendor/github.com/jackc/pgx/v5/conn.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2025-03-24 10:50:09 +0000
committerLibravatar GitHub <noreply@github.com>2025-03-24 10:50:09 +0000
commit18c8f85a3032fcc091b4c9e2be6cbe00f80b7f53 (patch)
tree5da21e4f91951c667068ab01c2b3886fc4a5f6a0 /vendor/github.com/jackc/pgx/v5/conn.go
parent[chore]: Bump golang.org/x/net from 0.36.0 to 0.37.0 (#3934) (diff)
downloadgotosocial-18c8f85a3032fcc091b4c9e2be6cbe00f80b7f53.tar.xz
[chore]: Bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.3 (#3935)
Bumps [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) from 5.7.2 to 5.7.3. - [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md) - [Commits](https://github.com/jackc/pgx/compare/v5.7.2...v5.7.3) --- updated-dependencies: - dependency-name: github.com/jackc/pgx/v5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/jackc/pgx/v5/conn.go')
-rw-r--r--vendor/github.com/jackc/pgx/v5/conn.go21
1 files changed, 7 insertions, 14 deletions
diff --git a/vendor/github.com/jackc/pgx/v5/conn.go b/vendor/github.com/jackc/pgx/v5/conn.go
index ed6a3a09e..93e2e7182 100644
--- a/vendor/github.com/jackc/pgx/v5/conn.go
+++ b/vendor/github.com/jackc/pgx/v5/conn.go
@@ -420,7 +420,7 @@ func (c *Conn) IsClosed() bool {
return c.pgConn.IsClosed()
}
-func (c *Conn) die(err error) {
+func (c *Conn) die() {
if c.IsClosed() {
return
}
@@ -588,14 +588,6 @@ func (c *Conn) execPrepared(ctx context.Context, sd *pgconn.StatementDescription
return result.CommandTag, result.Err
}
-type unknownArgumentTypeQueryExecModeExecError struct {
- arg any
-}
-
-func (e *unknownArgumentTypeQueryExecModeExecError) Error() string {
- return fmt.Sprintf("cannot use unregistered type %T as query argument in QueryExecModeExec", e.arg)
-}
-
func (c *Conn) execSQLParams(ctx context.Context, sql string, args []any) (pgconn.CommandTag, error) {
err := c.eqb.Build(c.typeMap, nil, args)
if err != nil {
@@ -661,11 +653,12 @@ const (
// should implement pgtype.Int64Valuer.
QueryExecModeExec
- // Use the simple protocol. Assume the PostgreSQL query parameter types based on the Go type of the arguments. Queries
- // are executed in a single round trip. Type mappings can be registered with pgtype.Map.RegisterDefaultPgType. Queries
- // will be rejected that have arguments that are unregistered or ambiguous. e.g. A map[string]string may have the
- // PostgreSQL type json or hstore. Modes that know the PostgreSQL type can use a map[string]string directly as an
- // argument. This mode cannot.
+ // Use the simple protocol. Assume the PostgreSQL query parameter types based on the Go type of the arguments. This is
+ // especially significant for []byte values. []byte values are encoded as PostgreSQL bytea. string must be used
+ // instead for text type values including json and jsonb. Type mappings can be registered with
+ // pgtype.Map.RegisterDefaultPgType. Queries will be rejected that have arguments that are unregistered or ambiguous.
+ // e.g. A map[string]string may have the PostgreSQL type json or hstore. Modes that know the PostgreSQL type can use a
+ // map[string]string directly as an argument. This mode cannot. Queries are executed in a single round trip.
//
// QueryExecModeSimpleProtocol should have the user application visible behavior as QueryExecModeExec. This includes
// the warning regarding differences in text format and binary format encoding with user defined types. There may be