Index: openacs-4/packages/file-storage/www/file-copy-2-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/file-copy-2-postgresql.xql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/file-storage/www/file-copy-2-postgresql.xql 16 Aug 2001 20:28:45 -0000 1.1 +++ openacs-4/packages/file-storage/www/file-copy-2-postgresql.xql 18 Aug 2001 17:10:54 -0000 1.2 @@ -32,10 +32,10 @@ declare - v_object_id acs_object.object_id%TYPE; + v_object_id acs_objects.object_id%TYPE; begin - select acs_object_id_seq.nextval into v_object_id ; + select acs_object_id_seq.nextval into v_object_id; insert into acs_objects (object_id, object_type, context_id, security_inherit_p, @@ -59,6 +59,7 @@ return v_object_id; + end;