[open-ils-commits] [GIT] Evergreen ILS branch rel_2_6 updated. 0fee7fa87e0d34cfbadd02b219e4929226169810

Evergreen Git git at git.evergreen-ils.org
Thu Apr 24 21:14:12 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, rel_2_6 has been updated
       via  0fee7fa87e0d34cfbadd02b219e4929226169810 (commit)
      from  0546e389ce50364759da1c107dd75690a1f206e0 (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 0fee7fa87e0d34cfbadd02b219e4929226169810
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