Bootstrap

org.postgresql.util.PSQLException: ERROR: cached plan must not change result type报错

原因是:数据库更改表字段长度导致

解决方案:

        1.重启应用程序(重启对应服务);

        2.也可以使用 DEALLOCATE 命令取消 PREPARE 语句,然后重新生成 PREPARE 语句

;