Case:
Hibernate Core 5.4.9.Final (comes with Spring Boot v2.2.2.RELEASE)
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL10Dialect
Test against
spring.datasource.url=jdbc:hsqldb:mem:testdb;sql.syntax_pgs=true
Failed with: java.sql.SQLException: Column not found: start_value
Actual Hibernate query: select * from information_schema.sequences
According to [1] there is only NEXT_VALUE column available since PostgreSQL sequences view [2] is more complex.
Thanks for reporting. Column added and committed to SVN base/trunk.
Now its working as expected, thanks!