pgx/internal
Jack Christensen 832b4f9771 Fix: prepared statement already exists
When a conn is going to execute a query, the first thing it does is to
deallocate any invalidated prepared statements from the statement cache.
However, the statements were removed from the cache regardless of
whether the deallocation succeeded. This would cause subsequent calls of
the same SQL to fail with "prepared statement already exists" error.

This problem is easy to trigger by running a query with a context that
is already canceled.

This commit changes the deallocate invalidated cached statements logic
so that the statements are only removed from the cache if the
deallocation was successful on the server.

https://github.com/jackc/pgx/issues/1847
2024-02-03 12:33:17 -06:00
..
anynil Replace interface{} with any 2022-04-09 09:12:55 -05:00
iobufpool Fix tests for iobufpool optimization 2023-01-28 09:30:12 -06:00
pgio Finish importing pgio as internal package 2022-02-21 14:35:20 -06:00
pgmock Make use of strings.Cut 2023-10-04 20:41:55 +03:00
sanitize fix panic in prepared sql 2023-12-01 18:34:41 -06:00
stmtcache Fix: prepared statement already exists 2024-02-03 12:33:17 -06:00