Skip to content

Commit 89c876a

Browse files
authored
Fix one more missing column variable type for pgbouncer 1.23 (#32)
* fix: fix pgbouncer_server view missing column * chore: update changelog * fix: fix pgbouncer_dns_zones view missing column * fix: change column name reserve_pool to reserve_pool_size for show databases * fix reserve_pool_size datatype in users * fix: fix pool_size data type in users * fix: fix data type for pgbouncer 1.23
1 parent 86d14c1 commit 89c876a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/functions/pgbouncer_fdw_functions.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1891,7 +1891,7 @@ LOOP BEGIN
18911891
v_row.target_host AS pgbouncer_target_host
18921892
, x.name
18931893
, x.pool_size
1894-
, 0 AS reserve_pool_size
1894+
, '' AS reserve_pool_size
18951895
, x.pool_mode
18961896
, x.max_user_connections
18971897
, x.current_connections

0 commit comments

Comments
 (0)