diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-30 22:22:51 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-30 22:22:51 +0000 |
commit | f14f96bd6fe3e562b8653dda2fd1c3e9a5702047 (patch) | |
tree | 29f6ccb42334f3f6abfac1c61566422e7753486f /sql | |
parent | 242a406a84088d1ae1608fb0a6b1f5261bba6199 (diff) |
Correcting 2081966
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2306 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r-- | sql/modules/Entity.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/modules/Entity.sql b/sql/modules/Entity.sql index 9c742e4b..71eca451 100644 --- a/sql/modules/Entity.sql +++ b/sql/modules/Entity.sql @@ -47,7 +47,7 @@ declare BEGIN SELECT * INTO v_row FROM entity WHERE id = in_entity_id; IF NOT FOUND THEN - raise exception "Could not find entity with ID %", in_entity_id; + raise exception 'Could not find entity with ID %', in_entity_id; ELSE return next v_row; END IF; |