Sergey Kozlov created IGNITE-9173:
-------------------------------------
Summary: Null value for decimal column is shown as the empty string in sqlline
Key: IGNITE-9173
URL:
https://issues.apache.org/jira/browse/IGNITE-9173 Project: Ignite
Issue Type: Bug
Components: sql
Affects Versions: 2.4
Reporter: Sergey Kozlov
{noformat}
0: jdbc:ignite:thin://127.0.0.1/> create table t1 (a int not null, b decimal, primary ke
No rows affected (0,016 seconds)
0: jdbc:ignite:thin://127.0.0.1/> insert into t1 values (1,NULL);
1 row affected (0,002 seconds)
0: jdbc:ignite:thin://127.0.0.1/> select * from t1;
+--------------------------------+--------------------------------+
| A | B |
+--------------------------------+--------------------------------+
| 1 | |
+--------------------------------+--------------------------------+
1 row selected (0,006 seconds)
{noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)