On Wed, Dec 17, 2014 at 02:28:15PM +0100, Pierre-Emmanuel Andr? wrote: > On Wed, Dec 17, 2014 at 08:01:45AM -0500, Eric Radman wrote: > > On Tue, Nov 25, 2014 at 02:33:10PM +0100, Pierre-Emmanuel Andr? wrote: > > > Hi, > > > > > > If you want to test the new PostgreSQL, there is a diff > > > for the 9.4 RC1. > > > Tested on @amd64 > > > > > > Regards, > > > > In testing environments 9.4rc1 has been running well so far, but one > > application I run broke because the uuid-ossp extension is not included > > in the contib package. What is the motive for disabling uuid-ossp? > > > > > > Nice, thanks for your report. > As mentionned by jeremy@, portswise, ossp-uuid is no longer used, as pgcrypto > now has built in support for creation of version 4 UUIDs.
I missed that. You are right; this is all that is required for me to adapt to 9.4: - CREATE EXTENSION "uuid-ossp"; + CREATE EXTENSION pgcrypto; - id uuid PRIMARY KEY default uuid_generate_v4(), + id uuid PRIMARY KEY default gen_random_uuid(), > Could you tell me which application needs it ? It's an internal app that was easily adapted. Thanks again.
