tdbc::postgres

View Ticket
Login
Ticket Hash: 64c0257182428210297d3fd935986192f265ba39
Title:
Status: Open Type: Code_Defect
Severity: Severe Priority:
Subsystem: Resolution:
Last Modified: 2020-01-21 10:41:32
Version Found In: 1.1.0
User Comments:
anonymous added on 2020-01-21 10:41:32:
For using in production our tdbc::postgres driver, we modified this piece of code
...
" WHERE  schemaname = 'public'"
with this
" WHERE  schemaname = ANY (CURRENT_SCHEMAS(false))"
to have compliance with the search_path of the connection profile.