[open-ils-commits] [GIT] Evergreen ILS branch rel_2_6 updated. 1ffb7d0848390c10e31ca34b52101c27963186fb

Evergreen Git git at git.evergreen-ils.org
Wed Aug 6 09:34:19 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  1ffb7d0848390c10e31ca34b52101c27963186fb (commit)
      from  a33d13f18073423a9735f48fc72058211cf4483b (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 1ffb7d0848390c10e31ca34b52101c27963186fb
Author: Jason Stephenson <jstephenson at mvlc.org>
Date:   Wed Aug 6 09:18:37 2014 -0400

    Fix 030.schema.metabib.sql breakage.
    
    The fix for LP 1322285 introduced a change to 030.schema.metabib.sql
    that was not only not needed, but breaks building a fresh schema.
    
    Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

diff --git a/Open-ILS/src/sql/Pg/030.schema.metabib.sql b/Open-ILS/src/sql/Pg/030.schema.metabib.sql
index 6bde362..fa2710d 100644
--- a/Open-ILS/src/sql/Pg/030.schema.metabib.sql
+++ b/Open-ILS/src/sql/Pg/030.schema.metabib.sql
@@ -937,7 +937,7 @@ CREATE OR REPLACE FUNCTION biblio.marc21_extract_all_fixed_fields( rid BIGINT )
 $func$ LANGUAGE SQL;
 
 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
-    SELECT id, $1 AS record, ptype, subfield, value FROM vandelay.marc21_physical_characteristics( (SELECT marc FROM biblio.record_entry WHERE id = $1), TRUE );
+    SELECT id, $1 AS record, ptype, subfield, value FROM vandelay.marc21_physical_characteristics( (SELECT marc FROM biblio.record_entry WHERE id = $1) );
 $func$ LANGUAGE SQL;
 
 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$

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

Summary of changes:
 Open-ILS/src/sql/Pg/030.schema.metabib.sql |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list