最近我将我的 postgres 从 8.2 迁移到 8.4。当我运行我的应用程序并尝试登录时,我收到了这些错误
ERROR [JDBCExceptionReporter] ERROR: function to_date(timestamp without time zone, unknown) does not exist
我通过执行这些 to_date 函数检查了我的 postgres
SELECT to_date(createddate,'YYYY-MM-DD') FROM product_trainings;
它给了我错误函数 to_date 不存在
当我在 postgres 8.2 中执行相同的查询时,我没有收到错误
请帮我解决这些问题。