@Table(name = "Table")
class Table{
String a
Integer b
}
здесь столбец a в таблице t является символом, варьирующимся (32)
Я пробовал и то, и другое, и в итоге получаю ошибку.
SELECT t.b from Table t where Integer.parseInt(t.a) > 0
Error : Caused by: org.postgresql.util.PSQLException: ERROR: schema "integer" does not exist
SELECT t.b from Table t where (t.a::integer) > 0
Error : invalid token :: at line <line number>
Спасибо