2

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?

tbsalling
  • 4,477
  • 4
  • 30
  • 51

1 Answers1

-1

Have you tried the quarkus.hibernate-orm.unsupported-properties (ref) config?

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
zyc
  • 344
  • 3
  • 7