[open-ils-commits] [GIT] Evergreen ILS branch master updated. d9604850f60f10ee619e0e0bf1b5f08faf1f08a1

Evergreen Git git at git.evergreen-ils.org
Thu Apr 24 21:01:29 EDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  d9604850f60f10ee619e0e0bf1b5f08faf1f08a1 (commit)
      from  f6bb7916c865d0f7b0843b73dd89a8479b4be4bc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d9604850f60f10ee619e0e0bf1b5f08faf1f08a1
Author: Ben Shum <bshum at biblio.org>
Date:   Thu Apr 24 20:58:17 2014 -0400

    Only create extension intarray if it does not already exist
    
    Simple change to skip over adding intarray if it already exists in a database
    for some reason.
    
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/sql/Pg/upgrade/0864.MVF_CRA-upgrade.sql b/Open-ILS/src/sql/Pg/upgrade/0864.MVF_CRA-upgrade.sql
index 4307f90..a82802b 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0864.MVF_CRA-upgrade.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0864.MVF_CRA-upgrade.sql
@@ -2,7 +2,7 @@ BEGIN;
 
 SELECT evergreen.upgrade_deps_block_check('0864', :eg_version);
 
-CREATE EXTENSION intarray;
+CREATE EXTENSION IF NOT EXISTS intarray;
 
 -- while we have this opportunity, and before we start collecting 
 -- CCVM IDs (below) carve out a nice space for stock ccvm values

-----------------------------------------------------------------------

Summary of changes:
 .../src/sql/Pg/upgrade/0864.MVF_CRA-upgrade.sql    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list