1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix a few contrib regression test scripts that hadn't gotten the word

about best practice for including the module creation scripts: to wit
that you should suppress NOTICE messages.  This avoids creating
regression failures by adding or removing comment lines in the module
scripts.
This commit is contained in:
Tom Lane
2007-11-13 06:29:04 +00:00
parent 0614c5e5fd
commit 30e2c42e00
12 changed files with 48 additions and 30 deletions

View File

@ -1,7 +1,13 @@
--
-- init pgcrypto
--
--
-- first, define the functions. Turn off echoing so that expected file
-- does not depend on contents of pgcrypto.sql.
--
SET client_min_messages = warning;
\set ECHO none
RESET client_min_messages;
-- check for encoding fn's
SELECT encode('foo', 'hex');
encode