Commit 79ff650
committed
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:1 parent b3da905 commit 79ff650
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3702 | 3702 | | |
3703 | 3703 | | |
3704 | 3704 | | |
3705 | | - | |
| 3705 | + | |
| 3706 | + | |
3706 | 3707 | | |
3707 | 3708 | | |
3708 | 3709 | | |
| |||
0 commit comments