From: Chris Sharp <csharp@georgialibraries.org>
Date: Tue, 16 Aug 2022 13:10:31 +0000 (-0400)
Subject: SQL: drop function for PINES
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5ba238ff252569d8aa5a9ae94332ee925413307f;p=evergreen%2Fpines.git

SQL: drop function for PINES
---

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.8.0-3.9.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.8.0-3.9.0-upgrade-db.sql
index f8ec2ca91d..d2d6a3f0bb 100644
--- a/Open-ILS/src/sql/Pg/version-upgrade/3.8.0-3.9.0-upgrade-db.sql
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.8.0-3.9.0-upgrade-db.sql
@@ -20,6 +20,9 @@ DROP FUNCTION search.query_parser_fts (
     INT 
 );
 
+-- PINES has another version of this function
+DROP FUNCTION search.query_parser_fts ( integer, integer, text, integer[], integer[], integer, integer, integer, boolean, boolean, integer) ;
+
 DROP TABLE asset.opac_visible_copies;
 
 DROP FUNCTION IF EXISTS asset.refresh_opac_visible_copies_mat_view();