diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-05 22:23:28 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-05 22:23:28 +0000 |
commit | a0b76f92d0186d8efcb9105bfce8d01a6efe3544 (patch) | |
tree | bf548d978a92038a8dcb2e869f03c20a71daf042 /sql | |
parent | 98049bf1c28698a84e42be9ba8da82d687203dd6 (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.sql | 2 |
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; |