When we raise a ActiveRecord::PreparedStatementCacheExpired we don't know which query raise the exception. It can be tricky to find it when you don't have database logs. I would like to add a message to ActiveRecord::PreparedStatementCacheExpired
with the STATEMENT
.
In Postgresql:
DROP TABLE IF EXISTS abc CASCADE;
DEALLOCATE FOO;
CREATE TABLE abc(i INT);
PREPARE FOO AS SELECT * FROM abc;
ALTER TABLE abc ADD COLUMN u INT;