You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PSQL doesnt allow to use singleton query result as input parameter of stored procedure when procedure accessed using 'execute procedure' [CORE2538]
#2948
Submitted by: Yakov Hrebtov (jake)
Is related to QA406
An attempt to compile PSQL block with:
execute procedure New_Procedure((select 1 from rdb$database));
gives:
Column does not belong to referenced table.
Dynamic SQL Error.
SQL error code = -206.
Subselect illegal in this context.
but 'select from...' compiles smoothly:
select 1
from New_Procedure((select 1 from rdb$database))
into :Foo;
ISQL allows both kind of calls.
Commits: 9bd287b
The text was updated successfully, but these errors were encountered: