From 04dd3fb9709e47050bce41dccbc2ceedc76450c4 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 27 Apr 2021 18:54:42 +0100 Subject: [PATCH] mg-schema-test-database: posgtres compat: tidy messages Now (postgresql 11) this prints a bunch of COPY notices. Suppress them with a -q. Signed-off-by: Ian Jackson --- mg-schema-test-database | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mg-schema-test-database b/mg-schema-test-database index df83b65..357646b 100755 --- a/mg-schema-test-database +++ b/mg-schema-test-database @@ -515,7 +515,7 @@ END printf "Copy..." printf "export..." - $(psql_do_cmd) -f $t.export + $(psql_do_cmd) -q -f $t.export printf "import..." $(withtest psql_do_cmd) -f $t.import -- 2.39.5