
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Fedora Core 5, Firebird CS 2.1.0
|
|
Issue Links:
|
Relate
|
|
|
|
This issue is related to:
|
|
|
|
|
|
|
|
| Planning Status: |
Unspecified
|
|
# isql -ch utf-8
create database '/var/tmp/teste-utf8.fdb';
commit;
connect '/var/tmp/teste-utf8.fdb';
recreate table test (
column1 varchar(10) character set none collate none );
insert into test values ('1234567890');
commit;
select coalesce(column1, '') from test;
COALESCE
========
Statement failed, SQLCODE = -802
arithmetic exception, numeric overflow, or string truncation
|
|
Description
|
# isql -ch utf-8
create database '/var/tmp/teste-utf8.fdb';
commit;
connect '/var/tmp/teste-utf8.fdb';
recreate table test (
column1 varchar(10) character set none collate none );
insert into test values ('1234567890');
commit;
select coalesce(column1, '') from test;
COALESCE
========
Statement failed, SQLCODE = -802
arithmetic exception, numeric overflow, or string truncation
|
Show » |
|