summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/sql/init.sql
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/pgcrypto/sql/init.sql')
-rw-r--r--contrib/pgcrypto/sql/init.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/pgcrypto/sql/init.sql b/contrib/pgcrypto/sql/init.sql
index a58b3f0144..ee1c231bdc 100644
--- a/contrib/pgcrypto/sql/init.sql
+++ b/contrib/pgcrypto/sql/init.sql
@@ -12,6 +12,9 @@ SET client_min_messages = warning;
\set ECHO all
RESET client_min_messages;
+-- ensure consistent test output regardless of the default bytea format
+SET bytea_output TO escape;
+
-- check for encoding fn's
SELECT encode('foo', 'hex');
SELECT decode('666f6f', 'hex');