From: scottmk Date: Fri, 19 Jun 2009 19:41:38 +0000 (+0000) Subject: Aargh..,fix stupid syntax blunder... X-Git-Tag: sprint4-merge-nov22~9796 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=64ae57c79c467659c96f3725426802524cbd4a6d;p=working%2FEvergreen.git Aargh..,fix stupid syntax blunder... git-svn-id: svn://svn.open-ils.org/ILS/trunk@13414 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/999.functions.global.sql b/Open-ILS/src/sql/Pg/999.functions.global.sql index 1f0b67d00d..e63a1440af 100644 --- a/Open-ILS/src/sql/Pg/999.functions.global.sql +++ b/Open-ILS/src/sql/Pg/999.functions.global.sql @@ -267,13 +267,13 @@ BEGIN END; $$ LANGUAGE plpgsql; -COMMENT ON FUNCTION container.clear_expired_circ_history_items( ) IS $$ +COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$ /* * Delete old circulation bucket items for a specified user. * "Old" means older than the interval specified by a * user-level setting, if it is so specified. */ -$$ +$$; CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( ) RETURNS VOID AS $$