- Issue created by @Fabianx
- 🇩🇪Germany Fabianx
Now without debug code.
What this does is:
- Copy function __construct & setPrefix from pgsql driver
- Fix schema functions, where the prefixInfo schema is not used - 🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland
Good stuff. So far in my/our testing this works and delivers the expected system behavior.
One thing (not a full review) I noticed so far in the actual codes:
if (isset($connection_options['schema']) && ($connection_options['schema'] !== 'public')) {
should be
if (isset($connection_options['schema']) && ($connection_options['schema'] !== 'dbo')) {