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
34 lines
859 B
Go
34 lines
859 B
Go
package pgxpool
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
)
|
|
|
|
// AcquireTracer traces Acquire.
|
|
type AcquireTracer interface {
|
|
// TraceAcquireStart is called at the beginning of Acquire.
|
|
// The returned context is used for the rest of the call and will be passed to the TraceAcquireEnd.
|
|
TraceAcquireStart(ctx context.Context, pool *Pool, data TraceAcquireStartData) context.Context
|
|
// TraceAcquireEnd is called when a connection has been acquired.
|
|
TraceAcquireEnd(ctx context.Context, pool *Pool, data TraceAcquireEndData)
|
|
}
|
|
|
|
type TraceAcquireStartData struct{}
|
|
|
|
type TraceAcquireEndData struct {
|
|
Conn *pgx.Conn
|
|
Err error
|
|
}
|
|
|
|
// ReleaseTracer traces Release.
|
|
type ReleaseTracer interface {
|
|
// TraceRelease is called at the beginning of Release.
|
|
TraceRelease(pool *Pool, data TraceReleaseData)
|
|
}
|
|
|
|
type TraceReleaseData struct {
|
|
Conn *pgx.Conn
|
|
}
|