From ede701202fbfa459769409ccd27847db4c53b512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Thu, 19 Dec 2019 17:52:44 +0100 Subject: [PATCH] Silence notices in cascade installation --- src/pg/test/expected/01_install_test.out | 1 + src/pg/test/sql/01_install_test.sql | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/pg/test/expected/01_install_test.out b/src/pg/test/expected/01_install_test.out index 1d48563..c916a43 100644 --- a/src/pg/test/expected/01_install_test.out +++ b/src/pg/test/expected/01_install_test.out @@ -1,3 +1,4 @@ +SET client_min_messages TO error; -- Create role publicuser if it does not exist DO $$ diff --git a/src/pg/test/sql/01_install_test.sql b/src/pg/test/sql/01_install_test.sql index dc97bfa..f229e45 100644 --- a/src/pg/test/sql/01_install_test.sql +++ b/src/pg/test/sql/01_install_test.sql @@ -1,3 +1,6 @@ +\set ECHO none +\set QUIET on +SET client_min_messages TO error; -- Create role publicuser if it does not exist DO $$ @@ -14,3 +17,4 @@ $$ LANGUAGE plpgsql; -- Install the extension CREATE EXTENSION crankshaft VERSION 'dev' CASCADE; +\set QUIET off