From: Chris Sharp Date: Sat, 16 Feb 2013 17:52:59 +0000 (-0500) Subject: finally found the problem - wrong argument datatype for is_valid_marcxml X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4fc3cba69d72ba61ba7e2d916a2f2a95a35ca73c;p=evergreen%2Fpines.git finally found the problem - wrong argument datatype for is_valid_marcxml --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql index 5dc709c161..3fff20755a 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql @@ -56,5 +56,5 @@ ALTER TABLE asset.copy DISABLE TRIGGER ALL; -- go ahead and find problem records if any exist because we don't want them to interfere with progress \o /tmp/problem-bib-records.out -SELECT id FROM biblio.record_entry WHERE evergreen.is_valid_marcxml(marc) IS FALSE; +SELECT id FROM biblio.record_entry WHERE is_valid_marcxml(id) IS FALSE; \o