mirror of
https://github.com/postgres/postgres.git
synced 2025-06-02 00:01:40 -04:00
Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
14 lines
183 B
PL/PgSQL
14 lines
183 B
PL/PgSQL
--
|
|
-- init pgcrypto
|
|
--
|
|
|
|
\set ECHO none
|
|
SET autocommit TO 'on';
|
|
\i pgcrypto.sql
|
|
\set ECHO all
|
|
|
|
-- check for encoding fn's
|
|
SELECT encode('foo', 'hex');
|
|
SELECT decode('666f6f', 'hex');
|
|
|