From 06cc7536168413cd8606a097924a1dae7b144782 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/count_nulls.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/count_nulls.sql b/sql/count_nulls.sql index 63e6825..a3f179a 100644 --- a/sql/count_nulls.sql +++ b/sql/count_nulls.sql @@ -1,5 +1,3 @@ -SET client_min_messages = WARNING; - CREATE OR REPLACE FUNCTION null_count( VARIADIC argument anyarray ) RETURNS int LANGUAGE sql IMMUTABLE AS $body$