问题描述
|
尝试在Spring-roo PostGres项目中创建实体时,出现以下错误:
ERROR org.hibernate.util.JDBCExceptionReporter - ERROR: operator does not exist: integer ~~ unkNown
Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
Position: 433
有什么解决方案?
解决方法
类型未知通常在您拥有字符串文字且Postgres最终尝试确定它是否为varchar,文本,文字数组等时发生。
根据需要强制转换您的字符串,例如:
\'2\'::int
或者,如果适用,不要将其放在第一位。