You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Alexander Belyak (Jira)" <ji...@apache.org> on 2023/05/09 12:38:00 UTC

[jira] [Created] (IGNITE-19442) Data corruption on huge numeric values

Alexander Belyak created IGNITE-19442:
-----------------------------------------

             Summary: Data corruption on huge numeric values
                 Key: IGNITE-19442
                 URL: https://issues.apache.org/jira/browse/IGNITE-19442
             Project: Ignite
          Issue Type: Bug
          Components: sql
    Affects Versions: 3.0
            Reporter: Alexander Belyak


Simple scenario:
{noformat}
create table t17 (key numeric primary key, val varchar(3));
insert into t17 values(1,'1');
insert into t17 values(9999999999999999999999999999999999999999999999,'1');
select * from t17;{noformat}
returns
{noformat}
key val
8023796054858137599    1
1    1
{noformat}
 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)