Discussion:
[Firebird-devel] [FB-Tracker] Created: (CORE-5580) Signature of packaged functions is not checked for mismatch with [NOT] DETERMINISTIC attribute
Adriano dos Santos Fernandes (JIRA)
8 years ago
Permalink
Signature of packaged functions is not checked for mismatch with [NOT] DETERMINISTIC attribute
----------------------------------------------------------------------------------------------

Key: CORE-5580
URL: http://tracker.firebirdsql.org/browse/CORE-5580
Project: Firebird Core
Issue Type: Bug
Affects Versions: 3.0.2, 4.0 Initial
Reporter: Adriano dos Santos Fernandes


Test case:

recreate package pk1
as
begin
function f1(c varchar(10)) returns varchar(10) deterministic;
end!

recreate package body pk1
as
begin
function f1(c varchar(10)) returns varchar(10) not deterministic
as
begin
end
end!
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Loading...