Есть ли параметр «pg _restore --тихий», например «psql --тихий»?

psqlимеет параметр -q/ --quiet(переменная окруженияQUIET). pg_restoreне имеет тихой опции. Есть ли способ заставить pg_restoreне подробно показывать команды SQL, которые он выполняет?

# e.g., here's the verbose output that I don't want to see:
$ pg_restore --cluster 8.4/mycluster mycluster.dump
---- PostgreSQL database dump
--
SET statement_timeout = 0;SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;SET check_function_bodies = false;
...
--
-- Name: data_src; Type: TABLE; Schema: public; Owner: postgres; Tablespace:--
CREATE TABLE data_src (
...
28
задан Rob Bednark 22 January 2015 в 17:21
поделиться