-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
AbstractDao#findById executes such SQL for me:
select id, urlPathComponent, metaTitle, metaDescription, metaKeywords, linkText, h1, description, sortIndex, lastModified
from whatever
where id = :idwhich 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 = :idReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels