Skip to content

Commit 878eb67

Browse files
fixes #102 - add deterministic keyword
1 parent 7082231 commit 878eb67

File tree

1 file changed

+2
-2
lines changed
  • docs/4-language-usage/2-variables-and-types/2-numeric-data-types

1 file changed

+2
-2
lines changed

docs/4-language-usage/2-variables-and-types/2-numeric-data-types/g-2230.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ With ORACLE 11g, the new data type `simple_integer` has been introduced. It is a
2020
create or replace package body constants_up is
2121
co_big_increase constant number(5,0) := 1;
2222

23-
function big_increase return number is
23+
function big_increase return number deterministic is
2424
begin
2525
return co_big_increase;
2626
end big_increase;
@@ -34,7 +34,7 @@ end constants_up;
3434
create or replace package body constants_up is
3535
co_big_increase constant simple_integer := 1;
3636

37-
function big_increase return simple_integer is
37+
function big_increase return simple_integer deterministic is
3838
begin
3939
return co_big_increase;
4040
end big_increase;

0 commit comments

Comments
 (0)