Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 6b0bc39

Browse files
authored
Update 30_simple_trigger.sql
1 parent ae7b5c8 commit 6b0bc39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

30_simple_trigger.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BEGIN
1313
RAISE WARNING 'executing trigger function: %', TG_NAME;
1414
NEW.last_modified_on := now();
1515
NEW.last_modified_by := session_user;
16-
RETURN NEW; -- retruning NULL would mean that the row won't be inserted!
16+
RETURN NEW; -- returning NULL would mean that the row won't be inserted!
1717
END;
1818
$$
1919
LANGUAGE plpgsql;

0 commit comments

Comments
 (0)