diff options
Diffstat (limited to 'contrib/pgcrypto/sql/init.sql')
-rw-r--r-- | contrib/pgcrypto/sql/init.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/pgcrypto/sql/init.sql b/contrib/pgcrypto/sql/init.sql index e536e67ea3e..a58b3f0144d 100644 --- a/contrib/pgcrypto/sql/init.sql +++ b/contrib/pgcrypto/sql/init.sql @@ -2,9 +2,15 @@ -- 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 \i pgcrypto.sql \set ECHO all +RESET client_min_messages; -- check for encoding fn's SELECT encode('foo', 'hex'); |