From: erickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Thu, 14 Apr 2011 14:23:30 +0000 (+0000)
Subject: rely on search_path to locate the extract_marc_field() function which is now installe... 
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b629a4a088fa626e38dccaa58d0fb58a16f28f35;p=evergreen%2Fmasslnc.git

rely on search_path to locate the extract_marc_field() function which is now installed in the 'evergreen' schema by default

git-svn-id: svn://svn.open-ils.org/ILS/trunk@20073 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/sql/Pg/200.schema.acq.sql b/Open-ILS/src/sql/Pg/200.schema.acq.sql
index 82064a7ee3..6e84c059df 100644
--- a/Open-ILS/src/sql/Pg/200.schema.acq.sql
+++ b/Open-ILS/src/sql/Pg/200.schema.acq.sql
@@ -1021,7 +1021,7 @@ $$ LANGUAGE PLPGSQL;
 -- select * from acq.extract_provider_holding_data(699);
 
 CREATE OR REPLACE FUNCTION public.extract_acq_marc_field ( BIGINT, TEXT, TEXT) RETURNS TEXT AS $$
-	SELECT public.extract_marc_field('acq.lineitem', $1, $2, $3);
+	SELECT extract_marc_field('acq.lineitem', $1, $2, $3);
 $$ LANGUAGE SQL;
 
 /*