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)