Subject first with parameter in sp
Author Alexander Rabtchevich
Why do the preprocessor doesn't compiles the stored procedure with the
variable number of retreived records, f.i.

create procedure sp1 (N_ integer)
as begin
select first :N_ ...

The case:
select first (1*:N_) ...
is being compiled and executed.

I think it's a bug.

--
with respect
Alexander Rabtchevich