From 8e5a7d780492609d383faa92fdf6af6dae53ad16 Mon Sep 17 00:00:00 2001 From: jnasbyupgrade Date: Sun, 12 Jul 2026 18:29:38 -0500 Subject: [PATCH] Remove redundant client_min_messages handling from install CREATE EXTENSION already forces client_min_messages to at least WARNING for the install script (only raising it, so a stricter caller is respected) and restores the caller's value afterward -- it has done so since extensions were introduced in 9.1. The script's own setting was therefore redundant, and being blind it lowered a stricter caller's level during install. Drop it. Co-Authored-By: Claude Opus 4.8 (1M context) --- sql/cat_tools.sql.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/cat_tools.sql.in b/sql/cat_tools.sql.in index bf119eb..45f2d03 100644 --- a/sql/cat_tools.sql.in +++ b/sql/cat_tools.sql.in @@ -1,7 +1,5 @@ @generated@ -SET LOCAL client_min_messages = WARNING; - DO $$ BEGIN CREATE ROLE cat_tools__usage NOLOGIN;