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 <stomproj@larl.org>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
-- 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;
-- 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;