# HG changeset patch # User jbe # Date 1288482770 -7200 # Node ID 425bb591bff828835c7616a4b7742b81bac9f4cc # Parent 8387388f1f7ce2401d6d0a98334f9d0e6ed2fd12 Removed CREATE LANGUAGE statement at the beginning of core.sql for PostgreSQL 9.0 and higher diff -r 8387388f1f7c -r 425bb591bff8 core.sql --- a/core.sql Sun Oct 31 01:49:49 2010 +0200 +++ b/core.sql Sun Oct 31 01:52:50 2010 +0200 @@ -1,5 +1,6 @@ -CREATE LANGUAGE plpgsql; -- Triggers are implemented in PL/pgSQL +-- Execute the following command manually for PostgreSQL prior version 9.0: +-- CREATE LANGUAGE plpgsql; -- NOTE: In PostgreSQL every UNIQUE constraint implies creation of an index