PostgreSQL database creation does not work on Amazon RDS. #PL-5702

This commit is contained in:
Konstantin Krivopustov 2015-07-21 13:47:47 +00:00
parent ac507febc5
commit 0913fdf1a8

View File

@ -803,10 +803,11 @@ create index IDX_SEC_REMEMBER_ME_TOKEN on SEC_REMEMBER_ME(TOKEN)^
--------------------------------------------------------------------------------------------------------------
create or replace function newid()
returns uuid
as '$libdir/uuid-ossp', 'uuid_generate_v1'
volatile strict language c^
create extension "uuid-ossp"^
create or replace function newid() returns uuid
as 'select uuid_generate_v1();'
language sql^
--------------------------------------------------------------------------------------------------------------