From 2c1ca2322cc8ca16d94cd957cd47391e8008acc7 Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Wed, 1 Nov 2023 23:53:59 +0100 Subject: [PATCH] temp: Never set search_path for PostgreSQL (for PgBouncer testing) --- quaint/src/connector/postgres.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()); + // } } }