From d1ff1fc4092521b9677709399c1cdd66929eb749 Mon Sep 17 00:00:00 2001 From: Mostafa Date: Sat, 31 Aug 2024 17:04:04 -0500 Subject: [PATCH] Enabled prepared statements in test pgcat --- .circleci/pgcat.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/pgcat.toml b/.circleci/pgcat.toml index 8b87aa0..146d1f2 100644 --- a/.circleci/pgcat.toml +++ b/.circleci/pgcat.toml @@ -59,6 +59,7 @@ admin_password = "admin_pass" # session: one server connection per connected client # transaction: one server connection per client transaction pool_mode = "transaction" +prepared_statements_cache_size = 500 # If the client doesn't specify, route traffic to # this role by default. @@ -141,6 +142,7 @@ query_parser_enabled = true query_parser_read_write_splitting = true primary_reads_enabled = true sharding_function = "pg_bigint_hash" +prepared_statements_cache_size = 500 [pools.simple_db.users.0] username = "simple_user"