Extraneous semicolons break SQL
authorThomas Berezansky <tsbere@mvlc.org>
Mon, 25 Jul 2011 20:39:07 +0000 (16:39 -0400)
committerMike Rylander <mrylander@gmail.com>
Wed, 3 Aug 2011 17:46:38 +0000 (13:46 -0400)
Remove them so that cache_copy_visibility can function.

Signed-off-by: Thomas Berezansky <tsbere@mvlc.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/sql/Pg/999.functions.global.sql

index 02f2cd4..9b6e7ed 100644 (file)
@@ -1325,14 +1325,14 @@ BEGIN
     ELSIF NEW.opac_visible THEN -- add rows
 
         IF TG_TABLE_NAME = 'org_unit' THEN
-            add_base_query := add_base_query || ' AND cp.circ_lib = ' || NEW.id || ';';
-            add_peer_query := add_peer_query || ' AND cp.circ_lib = ' || NEW.id || ';';
+            add_base_query := add_base_query || ' AND cp.circ_lib = ' || NEW.id;
+            add_peer_query := add_peer_query || ' AND cp.circ_lib = ' || NEW.id;
         ELSIF TG_TABLE_NAME = 'copy_location' THEN
-            add_base_query := add_base_query || ' AND cp.location = ' || NEW.id || ';';
-            add_peer_query := add_peer_query || ' AND cp.location = ' || NEW.id || ';';
+            add_base_query := add_base_query || ' AND cp.location = ' || NEW.id;
+            add_peer_query := add_peer_query || ' AND cp.location = ' || NEW.id;
         ELSIF TG_TABLE_NAME = 'copy_status' THEN
-            add_base_query := add_base_query || ' AND cp.status = ' || NEW.id || ';';
-            add_peer_query := add_peer_query || ' AND cp.status = ' || NEW.id || ';';
+            add_base_query := add_base_query || ' AND cp.status = ' || NEW.id;
+            add_peer_query := add_peer_query || ' AND cp.status = ' || NEW.id;
         END IF;
  
         EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back;