You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Sergey Kozlov (JIRA)" <ji...@apache.org> on 2018/08/02 16:13:00 UTC

[jira] [Created] (IGNITE-9173) Null value for decimal column is shown as the empty string in sqlline

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)