I have a DAO that is accessing a Postgres database. I want to use H2 for my unit tests - everything works great except that the table I am operating on has a column with inet datatype - so I get the exception
Unknown data type: "inet"; SQL statement: delete from table where id = ? and ip_address = ?::inet [50004-200]
Been a while since I've used H2 - I've set Postgres mode for the connection: url jdbc:h2:mem:test;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE
is there anyway I can execute this query in H2 and support this data type?