Datagrip error when executing SQL query in postgresql: ERROR prepared statement "S_19" already exists Permanently deleted user 创建于 2017年09月08日 13:42
Hi,
That's mean that you have S_19 prepared statement in your database. Pay attention to Postgres documentation for prepared statements https://www.postgresql.org/docs/9.6/static/sql-deallocate.html and https://www.postgresql.org/docs/9.6/static/sql-prepare.html
This error is thrown by your database. We show such errors as it is.
Thank you.