5d9ff5df03
Bun's pgdialect scans/appends native slices directly, so array columns
(text[], integer[], uuid[], ...) always generate as plain []string,
[]int32, etc. with an explicit "array" bun tag, regardless of --types
(sqltypes/stdlib/baselib). The SqlXxxArray wrapper types are no longer
used for Bun array columns (gorm is unaffected and keeps using them).
Adds --array-nullable pointer_slice to represent nullable array columns
as *[]T instead of []T, so callers can distinguish SQL NULL (nil) from
'{}' (pointer to an empty slice). Verified end-to-end against a live
PostgreSQL instance for NULL/{}/populated arrays in every --types mode.
Closes #13
53 lines
909 B
Go
53 lines
909 B
Go
package pgxpool
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/jackc/pgx/v5/pgconn"
|
|
)
|
|
|
|
type errBatchResults struct {
|
|
err error
|
|
}
|
|
|
|
func (br errBatchResults) Exec() (pgconn.CommandTag, error) {
|
|
return pgconn.CommandTag{}, br.err
|
|
}
|
|
|
|
func (br errBatchResults) Query() (pgx.Rows, error) {
|
|
return errRows{err: br.err}, br.err
|
|
}
|
|
|
|
func (br errBatchResults) QueryRow() pgx.Row {
|
|
return errRow{err: br.err}
|
|
}
|
|
|
|
func (br errBatchResults) Close() error {
|
|
return br.err
|
|
}
|
|
|
|
type poolBatchResults struct {
|
|
br pgx.BatchResults
|
|
c *Conn
|
|
}
|
|
|
|
func (br *poolBatchResults) Exec() (pgconn.CommandTag, error) {
|
|
return br.br.Exec()
|
|
}
|
|
|
|
func (br *poolBatchResults) Query() (pgx.Rows, error) {
|
|
return br.br.Query()
|
|
}
|
|
|
|
func (br *poolBatchResults) QueryRow() pgx.Row {
|
|
return br.br.QueryRow()
|
|
}
|
|
|
|
func (br *poolBatchResults) Close() error {
|
|
err := br.br.Close()
|
|
if br.c != nil {
|
|
br.c.Release()
|
|
br.c = nil
|
|
}
|
|
return err
|
|
}
|