AbstractDao#findById executes such SQL for me:
select id, urlPathComponent, metaTitle, metaDescription, metaKeywords, linkText, h1, description, sortIndex, lastModified
from whatever
where id = :id
which is incorrect for PostgreSQL dialect: it requires camelCase column names to be in quotes, at least like this:
select id, "urlPathComponent", "metaTitle", "metaDescription", "metaKeywords", "linkText", h1, description, "sortIndex", "lastModified"
from whatever
where id = :id
AbstractDao#findByIdexecutes such SQL for me:which is incorrect for PostgreSQL dialect: it requires camelCase column names to be in quotes, at least like this: