Re: Running a void function in psql

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Eric Brown <eric(dot)brown(at)propel(dot)com>
Cc: Pgsql-General (E-mail) <pgsql-general(at)postgresql(dot)org>
Subject: Re: Running a void function in psql
Date: 2005-01-11 23:32:57
Message-ID: 5157.1105486377@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Eric Brown <eric(dot)brown(at)propel(dot)com> writes:
> I run 'psql -f mycreatedb.sql' to setup things for my program.
> It has to run a few stored procedures after they're created. However, I
> do this by 'SELECT f(...);'. When I do this though, it prints out a
> bunch of rubbish like:
> f
> ------

> (1 row)

> How do I get rid of this rubbish? I just want to see errors or
> NOTICE/INFO strings I intentionally log.

Something like

SELECT f(...)
\g /dev/null

should do it.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2005-01-11 23:35:18 Re: int4 -> unix timestamp -> sql timestamp; abstime?
Previous Message Roman Neuhauser 2005-01-11 23:10:25 int4 -> unix timestamp -> sql timestamp; abstime?