summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2008-10-05 22:23:28 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2008-10-05 22:23:28 +0000
commita0b76f92d0186d8efcb9105bfce8d01a6efe3544 (patch)
treebf548d978a92038a8dcb2e869f03c20a71daf042 /sql
parent98049bf1c28698a84e42be9ba8da82d687203dd6 (diff)
Correcting load issue with Person.sql
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2351 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r--sql/modules/Person.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/modules/Person.sql b/sql/modules/Person.sql
index 9bdc9e1f..dbc73b3b 100644
--- a/sql/modules/Person.sql
+++ b/sql/modules/Person.sql
@@ -233,7 +233,7 @@ BEGIN
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;