-
Hey panache community, is there a way to customise the used DB Dialect to enable support for special operators in hibernate panache queries. For example: register a SQLFunctionTemplate at PostgreSQL10Dialect for the The quarkiverse hibernate-types plugin already supports the mapping of special types like ranges. So it would be nice to query those fields with the full postgresql power. If I'm not mistaken the following is not possible out of the box:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
/cc @FroMage, @loicmathieu |
Beta Was this translation helpful? Give feedback.
-
Adding a custom Dialect Implementation
and registering it in Property
|
Beta Was this translation helpful? Give feedback.
-
Here is my small example project where i use quarkiverse hibernate-types to map a jsonb column and a custom Hibernate Dialect implementation to use postgres jsonb |
Beta Was this translation helpful? Give feedback.
Here is my small example project where i use quarkiverse hibernate-types to map a jsonb column and a custom Hibernate Dialect implementation to use postgres jsonb
->>
operator in a query.