mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
13 lines
159 B
MySQL
13 lines
159 B
MySQL
|
--
|
||
|
-- init pgcrypto
|
||
|
--
|
||
|
|
||
|
\set ECHO none
|
||
|
\i pgcrypto.sql
|
||
|
\set ECHO all
|
||
|
|
||
|
-- check for encoding fn's
|
||
|
select encode('foo', 'hex');
|
||
|
select decode('666f6f', 'hex');
|
||
|
|