nested exception is org.postgresql.util.PSQLException: ERROR: function to_char(unknown, unknown)

postgresql数据库,执行时候报错。

nested exception is org.postgresql.util.PSQLException: ERROR: function to_char(unknown, unknown) is not unique
  建议:Could not choose a best candidate function. You might need to add explicit type casts.

原sql语句

select
    to_char(flight_date, 'yyyy-mm-dd') as flight_date,
    fdmrecid,
    airlineid,
    flightno,
    main_sta,
    voyage
from
    cfps_flt_fdm
where
    to_char(flight_date, 'yyyy-mm-dd')= to_char(#{parameter,jdbcType=TIMESTAMP}, 'yyyy-mm-dd')
    and delflag = 'N'

问题出现的原因,

to_char函数可以用在字段上,但是不可以用在入参中。此处为#{parameter}。

修改后,错误消失。

你可能感兴趣的:(bug,sql,mybatis)