I am using an H2 database for integration test. The code is quiet old and uses JDBC queries instead.
While running tests, I get the error below
org.h2.jdbc.JdbcSQLException: Function "TO_CHAR" not found; SQL statement:
I see that H2 does not perform the TO_CHAR function incompletely. Is there a way to add a custom method or should I consider moving to HSQL DB or any other database for testing purposes.
source share