summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/modules/Entity.sql2
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;