From: dbs Date: Mon, 15 Nov 2010 22:36:25 +0000 (+0000) Subject: asset.uri needs a seed entry for queries of its ID values X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=40b2aca6a169de3ab72f5bcf8ad73090e9507d6e;p=Evergreen.git asset.uri needs a seed entry for queries of its ID values To fix a problem with ingesting URIs, Ingest.pm was changed to reflect the maximum asset.uri.id value rather than the asset.call_number.id value. However, with no entries in asset.uri, the query returned a NULL object which broke ingest entirely. Adding a seed entry avoids this problem. git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_0@18751 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 0dfe4f6f61..c569281212 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -1962,3 +1962,5 @@ INSERT INTO action_trigger.environment (event_def, path) VALUES SELECT SETVAL('action_trigger.event_definition_id_seq'::TEXT, 100); +-- Create seed data for the asset.uri table +INSERT INTO asset.uri (id, href, active) VALUES (-1, 'http://example.com/fake', FALSE);