diff --git a/quaint/src/connector/postgres.rs b/quaint/src/connector/postgres.rs index 766be38b27e..05decc4f440 100644 --- a/quaint/src/connector/postgres.rs +++ b/quaint/src/connector/postgres.rs @@ -533,9 +533,9 @@ impl PostgresUrl { config.search_path(CockroachSearchPath(schema).to_string()); } - if self.flavour().is_postgres() { - config.search_path(PostgresSearchPath(schema).to_string()); - } + // if self.flavour().is_postgres() { + // config.search_path(PostgresSearchPath(schema).to_string()); + // } } }