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 <taimoorzaeem@gmail.com>
This commit is contained in:
Taimoor Zaeem
2026-06-04 15:23:43 +05:00
parent 3decedce1e
commit 627e8c07ab
2 changed files with 10 additions and 9 deletions
+1
View File
@@ -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;