You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently using setSchema({schema_name]).execute() to set the schema dynamically (SET SEARCH_PATH in PostgreSql). This approach, however, is not reliable and has led to occasional errors, specifically when the schema setting fails, resulting in next queries encountering issues.
It would be safer and more stable to render the schema for each query using withRenderSchema and withRenderMapping provided by jOOQ, and config this globally.
The text was updated successfully, but these errors were encountered:
We are currently using setSchema({schema_name]).execute() to set the schema dynamically (SET SEARCH_PATH in PostgreSql). This approach, however, is not reliable and has led to occasional errors, specifically when the schema setting fails, resulting in next queries encountering issues.
It would be safer and more stable to render the schema for each query using withRenderSchema and withRenderMapping provided by jOOQ, and config this globally.
The text was updated successfully, but these errors were encountered: