From abc63ac244d909e02886a428dc9a00666efd8742 Mon Sep 17 00:00:00 2001 From: Josh Stompro Date: Tue, 16 Aug 2016 09:55:21 -0500 Subject: [PATCH] LP#1612873 - Fix text of notice message for history migration. The notice text that was outputed for every 10000 circs processed was labeled as users, which made the output confusing. Signed-off-by: Josh Stompro Signed-off-by: Chris Sharp Signed-off-by: Galen Charlton --- Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql | 2 +- Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql b/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql index 135c244987..b55bbfbd91 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql @@ -242,7 +242,7 @@ BEGIN -- useful for alleviating administrator anxiety. IF counter % 10000 = 0 THEN - RAISE NOTICE 'Migrated history for % total users', counter; + RAISE NOTICE 'Migrated history for % total circs', counter; END IF; counter := counter + 1; diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql index 9ed7e229e6..1e46baa53f 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql @@ -1556,7 +1556,7 @@ BEGIN -- useful for alleviating administrator anxiety. IF counter % 10000 = 0 THEN - RAISE NOTICE 'Migrated history for % total users', counter; + RAISE NOTICE 'Migrated history for % total circs', counter; END IF; counter := counter + 1; -- 2.11.0