Bug 14472: DBRev 3.21.00.026
[srvgit] / installer / data / mysql / updatedatabase.pl
index 17fd399..caf4b4f 100755 (executable)
@@ -10857,6 +10857,17 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.21.00.026";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+        UPDATE matchpoints
+        SET search_index='issn'
+        WHERE matcher_id=(SELECT matcher_id FROM marc_matchers WHERE code = 'ISSN')
+    });
+    print "Upgrade to $DBversion done (Bug 14472: Wrong ISSN search index in record matching rules)\n";
+    SetVersion($DBversion);
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.