On Thu, Oct 10, 2013 at 12:29:48PM -0700, sean dreilinger wrote:
> the postgresql command "create extension citext" specified in
> db/schema.cpp must run as a postgresql superuser, or it will fail.

Abhijit is looking at that issue. Not sure whether anything can be done.

> -    d->t->enqueue( "create extension citext" );
> +    d->t->enqueue( "create extension if not exists citext" );

Done. I changed one more line:

-    describeStep("Convert addresses to use CITEXT");
-    d->t->enqueue( "create extension citext" );
+    describeStep("Convert addresses to use CITEXT (slow)");
+    d->t->enqueue( "create extension if not exists citext" );

Arnt

Reply via email to