Само в случай, че някой намери тази тема в търсене на грешка, еквивалентна на postgresql:
java.sql.SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented.
application.properties:
# disable driver's feature detection
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false
# without detection you have to set the dialect by hand
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
BTW:Spring Boot 2.0.0.RELEASE използва неработеща версия на драйвер за postgresql, трябваше да посоча 42.2.0, така че драйверът изобщо да се зареди:
Caused by: java.lang.RuntimeException: Failed to load driver class org.postgresql.Driver in either of HikariConfig class loader or Thread context classloader
АКТУАЛИЗАЦИЯ 2018-03-01:
Според този проблем Stacktrace се счита за предупреждение и може да бъде игнориран
https://github.com/spring-projects/spring-boot/issues/12007#issuecomment-369388646
АКТУАЛИЗАЦИЯ 2018-03-13:
Вече има официален доклад за грешка:https://hibernate.atlassian.net/browse/HHH-12368