[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[2351] trunk/sql/modules/Person.sql



Revision: 2351
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2351&view=rev
Author:   einhverfr
Date:     2008-10-05 22:23:28 +0000 (Sun, 05 Oct 2008)

Log Message:
-----------
Correcting load issue with Person.sql

Modified Paths:
--------------
    trunk/sql/modules/Person.sql

Modified: trunk/sql/modules/Person.sql
===================================================================
--- trunk/sql/modules/Person.sql	2008-10-05 22:00:11 UTC (rev 2350)
+++ trunk/sql/modules/Person.sql	2008-10-05 22:23:28 UTC (rev 2351)
@@ -233,7 +233,7 @@
     AND loc.id = in_location_id;
     
     IF NOT FOUND THEN
-        RAISE EXCEPTION "Cannot find records to delete for entity % and location %", in_entity_id, in_location_id;
+       RAISE EXCEPTION 'Cannot find records to delete for entity % and location %', in_entity_id, in_location_id;
     ELSE
         DELETE FROM people_to_location WHERE location_id = in_location_id;
         DELETE FROM location WHERE location_id = in_location_id;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.