updated DeallocateAll to also reset client-side statement and description cache

pull/1379/head
Bodo Kaiser 2022-11-12 17:04:13 +01:00 committed by Jack Christensen
parent c94c47f584
commit 3520c2ea43
1 changed files with 7 additions and 1 deletions

View File

@ -326,9 +326,15 @@ func (c *Conn) Deallocate(ctx context.Context, name string) error {
return err
}
// Deallocate all released prepared statements
// DeallocateAll releases all previously prepared statements from the server and client, where it also resets the statement and description cache.
func (c *Conn) DeallocateAll(ctx context.Context, name string) error {
c.preparedStatements = map[string]*pgconn.StatementDescription{}
if c.config.StatementCacheCapacity > 0 {
c.statementCache = stmtcache.NewLRUCache(c.config.StatementCacheCapacity)
}
if c.config.DescriptionCacheCapacity > 0 {
c.descriptionCache = stmtcache.NewLRUCache(c.config.DescriptionCacheCapacity)
}
_, err := c.pgConn.Exec(ctx, "deallocate all").ReadAll()
return err
}