I am trying to select a non-default PostgreSQL schema when using a reactive datasource with Quarkus.
I tried a syntax similar to the working "regular", non-reactive datasource using ?currentSchema
:
quarkus.datasource.url=jdbc:postgresql://host/database?currentSchema=int
like follows:
quarkus.datasource.reactive.url=postgresql://host/database?currentSchema=int
However, it does not have any effect, the default schema is always used.
How can I achieve selecting a PostgreSQL schema for a reactive datasource?