Aargh..,fix stupid syntax blunder...
authorscottmk <scottmk@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 19 Jun 2009 19:41:38 +0000 (19:41 +0000)
committerscottmk <scottmk@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 19 Jun 2009 19:41:38 +0000 (19:41 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13414 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/999.functions.global.sql

index 1f0b67d..e63a144 100644 (file)
@@ -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 $$