Branch: refs/heads/master
Home: https://github.com/FirebirdSQL/firebird
Commit: 79ff650e5af7a0d6141e166b0cb8208ef211f0a7
https://github.com/FirebirdSQL/firebird/commit/79ff650e5af7a0d6141e166b0cb8208ef211f0a7
Author: Adriano dos Santos Fernandes <adr...@gm...>
Date: 2025-06-24 (Tue, 24 Jun 2025)
Changed paths:
M src/jrd/RecordSourceNodes.cpp
Log Message:
-----------
Fix problem with plans reported by Pavel Zotov.
create table test(id int primary key using index test_id, f01 timestamp);
create index test_f01 on test(f01);
commit;
set term ^;
create procedure sp_test (a_id int) returns (o_f01 type of column test.f01) as
begin
for
select f01 from test where id = :a_id plan (test order test_f01)
into o_f01
do
suspend;
end
^
Statement failed, SQLSTATE = 2F000
Error while parsing procedure "PUBLIC"."SP_TEST"'s BLR
-Invalid name:
To unsubscribe from these emails, change your notification settings at https://github.com/FirebirdSQL/firebird/settings/notifications
|