Darryl Miles commented on an issue
Hibernate ORM / Bug HHH-8574
Postgres incorrectly quotes readback of sequence for IDENTITY IDs
When using HBMs with:
<id name="accountId" column="`accountId`" type="long">
<generator class="identity" />
</id>

hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
# PostgreSQL (speed startup), not sure of relevance to the bug report
hibernate.temp.use_jdbc_metadata_defaults=false
# as of 4.2.4 this only does tableName's
hibernate...