Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions test/sql/storage/attach_connection_pool.test
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,22 @@ statement ok
DETACH s

statement ok
ATTACH 'dbname=postgresscanner' AS s (TYPE POSTGRES);
SET pg_pool_enable_thread_local_cache = FALSE

statement ok
USE s;
ATTACH 'dbname=postgresscanner' AS s (TYPE POSTGRES);

statement ok
FROM postgres_configure_pool(catalog_name='s', enable_thread_local_cache=FALSE)
USE s;

query III
SELECT catalog_name, available_connections, thread_local_cache_enabled
FROM postgres_configure_pool(catalog_name='s')
----
s 0 FALSE
s 1 FALSE

statement ok
RESET pg_pool_enable_thread_local_cache

statement ok
SELECT catalog_name, health_check_query
Expand Down
Loading