mattmcc-attest
mattmcc-attest
This would be great
Yeah I debugged into the JdbcTemplate and could see it was trying to insert with sqlType = 12 = varchar. Not sure at what point spring-data-jdbc is telling Postgres is...
@schauder Do you think this is a bug? It seems like the [MappingJdbcConverter](https://github.com/spring-projects/spring-data-relational/blob/a164871c5e6fcad80155cb365303e9ba8260d538/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/MappingJdbcConverter.java#L174) doesn't recognise the type so converts it to a String. Should there be some function further up...
@schauder Thank you :) here is an app that reproduces it https://github.com/mattmcc-attest/animal
^ is the above useful for you? @schauder
no problem, thanks for your help
Ran into this issue again, is there a known workaround? Previously I added a sort of NULL option to the enum but now that I am using the database I...