Reputation: 4555
I am using Quarkus 2.9.2.Final and would like to set a Hibernate config parameter, which is not one of the "chosen ones" which can go into Quarkus' application.properties
as per the documentation.
Specifically I would like to set this Hibernate configuration property:
<property name="hibernate.hql.bulk_id_strategy"
value="org.hibernate.hql.spi.id.inline.InlineIdsInClauseBulkIdStrategy"
/>
to prevent Hibernate from generating temporary tables (as described here).
How can I achieve this?
Upvotes: 2
Views: 512
Reputation: 363
Have you tried the quarkus.hibernate-orm.unsupported-properties
(ref) config?
Upvotes: 0