firebird icon indicating copy to clipboard operation
firebird copied to clipboard

Fix for #8565

Open aafemt opened this issue 7 months ago • 4 comments

So far this is a simplest quick fix to let Pavel Zotov test it.

aafemt avatar May 14 '25 15:05 aafemt

It looks like this fix also solves #7611, so workaround in gbak can be removed.

aafemt avatar May 15 '25 08:05 aafemt

I think it would be better to merge this PR now because it will make firebirdtest.com operational and do the rest of postfixes in separate PRs one per issue.

aafemt avatar May 16 '25 12:05 aafemt

You will break even more things than you already broke in #8082 ;)

create table tests (
    id integer,
    str varchar(10) character set utf8,
    char_len integer,
    octet_len integer
);

create procedure proc (
    id integer,
    str char(10) character set utf8
)
as
begin
    insert into tests (id, str, char_len, octet_len) values (:id, :str, char_length(:str), octet_length(:str));
end;

asfernandes avatar May 17 '25 01:05 asfernandes

Reworked.

aafemt avatar May 19 '25 14:05 aafemt