Use correct cache

pull/1281/head
Jack Christensen 2022-07-11 20:42:55 -05:00
parent 224393188d
commit 786de2bda8
1 changed files with 1 additions and 1 deletions

View File

@ -1040,7 +1040,7 @@ func (c *Conn) sendBatchExtendedWithDescription(ctx context.Context, b *Batch, d
// Put all statements into the cache. It's fine if it overflows because HandleInvalidated will clean them up later.
if sdCache != nil {
for _, sd := range distinctNewQueries {
c.statementCache.Put(sd)
sdCache.Put(sd)
}
}