1/* contrib/pgcrypto/pgcrypto--1.0--1.1.sql */ 2 3-- complain if script is sourced in psql, rather than via ALTER EXTENSION 4\echo Use "ALTER EXTENSION pgcrypto UPDATE TO '1.1'" to load this file. \quit 5 6CREATE FUNCTION gen_random_uuid() 7RETURNS uuid 8AS 'MODULE_PATHNAME', 'pg_random_uuid' 9LANGUAGE C VOLATILE; 10