Source File
stmtcache.go
Belonging Package
github.com/jackc/pgx/v5/internal/stmtcache
// Package stmtcache is a cache for statement descriptions.package stmtcacheimport ()var stmtCounter int64// NextStatementName returns a statement name that will be unique for the lifetime of the program.func () string {:= atomic.AddInt64(&stmtCounter, 1)return "stmtcache_" + strconv.FormatInt(, 10)}// Cache caches statement descriptions.type Cache interface {// Get returns the statement description for sql. Returns nil if not found.Get(sql string) *pgconn.StatementDescription// Put stores sd in the cache. Put panics if sd.SQL is "". Put does nothing if sd.SQL already exists in the cache.Put(sd *pgconn.StatementDescription)// Invalidate invalidates statement description identified by sql. Does nothing if not found.Invalidate(sql string)// InvalidateAll invalidates all statement descriptions.InvalidateAll()// HandleInvalidated returns a slice of all statement descriptions invalidated since the last call to HandleInvalidated.HandleInvalidated() []*pgconn.StatementDescription// Len returns the number of cached prepared statement descriptions.Len() int// Cap returns the maximum number of cached prepared statement descriptions.Cap() int}func ( error) bool {, := .(*pgconn.PgError)if ! {return false}// https://github.com/jackc/pgx/issues/1162//// We used to look for the message "cached plan must not change result type". However, that message can be localized.// Unfortunately, error code "0A000" - "FEATURE NOT SUPPORTED" is used for many different errors and the only way to// tell the difference is by the message. But all that happens is we clear a statement that we otherwise wouldn't// have so it should be safe.:= .Code == "0A000"return}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |