|
From: Jan K. (JIRA) <tr...@fi...> - 2019-08-01 13:29:24
|
<Missing arg #1 - possibly status vector overflow>.
---------------------------------------------------
Key: CORE-6113
URL: http://tracker.firebirdsql.org/browse/CORE-6113
Project: Firebird Core
Issue Type: Bug
Affects Versions: 3.0.4
Reporter: Jan Kohlmeyer
I have 2 exceptions in a empty DB:
CREATE EXCEPTION EX_1 '@1';
CREATE EXCEPTION EX_2 '@1@2';
If I do this, I get the exception and the message '<Missing arg #1 - possibly status vector overflow>'
execute block
as
begin
exception EX_2 using ('a', 'b');
end
if i do one of this I don'd get the extension '<Missing arg #1 - possibly status vector overflow>' in the message:
execute block
as
begin
exception EX_1 using ('a');
end
execute block
as
begin
exception EX_2 using ('a');
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
|