Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

Commit f01abcd

Browse files
Fix violations of G-7460
1 parent d722cd2 commit f01abcd

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

  • docs/4-language-usage/7-stored-objects/4-functions

docs/4-language-usage/7-stored-objects/4-functions/g-7450.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ If a boolean function returns `null`, the caller has do deal with it. This makes
1111

1212
``` sql
1313
create or replace package body my_package is
14-
function my_function return boolean is
14+
function my_function return boolean
15+
deterministic
16+
is
1517
begin
1618
return null;
1719
end my_function;
@@ -23,7 +25,9 @@ end my_package;
2325

2426
``` sql
2527
create or replace package body my_package is
26-
function my_function return boolean is
28+
function my_function return boolean
29+
deterministic
30+
is
2731
begin
2832
return true;
2933
end my_function;

0 commit comments

Comments
 (0)