From aaaf7e96bdbaed8fe74d057701cba11232fdaebf Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Wed, 4 Feb 2026 12:59:51 +0500 Subject: [PATCH] test(io): set client_min_messages to warning in SQL fixtures To suppress unwanted "NOTICE: ..." messages which pollute the log. Signed-off-by: Taimoor Zaeem --- test/io/fixtures/database.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/test/io/fixtures/database.sql b/test/io/fixtures/database.sql index bb0e1e05a..7bfdf3c81 100644 --- a/test/io/fixtures/database.sql +++ b/test/io/fixtures/database.sql @@ -1,2 +1,3 @@ +SET client_min_messages = WARNING; -- suppress "NOTICE: ..." messages which pollute the log SET check_function_bodies = false; -- to allow conditionals based on the pg version SET search_path = public;