You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (JIRA)" <ji...@apache.org> on 2019/08/12 22:50:00 UTC

[jira] [Assigned] (SPARK-26969) [Spark] Using ODBC not able to see the data in table when datatype is decimal

     [ https://issues.apache.org/jira/browse/SPARK-26969?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dongjoon Hyun reassigned SPARK-26969:
-------------------------------------

    Assignee: Sujith Chacko

> [Spark] Using ODBC not able to see the data in table when datatype is decimal
> -----------------------------------------------------------------------------
>
>                 Key: SPARK-26969
>                 URL: https://issues.apache.org/jira/browse/SPARK-26969
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Shell
>    Affects Versions: 2.4.0
>            Reporter: ABHISHEK KUMAR GUPTA
>            Assignee: Sujith Chacko
>            Priority: Major
>
> {code}
> #  Using odbc rpm file install odbc 
>  # connect to odbc using isql -v spark2xsingle
>  # SQL> create table t1_t(id decimal(15,2));
>  # SQL> insert into t1_t values(15);
>  # 
> SQL> select * from t1_t;
> +-------------------------+
> | id |
> +-------------------------+
> +-------------------------+  Actual output is empty
> {code}
> Note: When creating table of int data type select is giving result as below
> {code}
> SQL> create table test_t1(id int);
> SQL> insert into test_t1 values(10);
> SQL> select * from test_t1;
> +------------+
> | id         |
> +------------+
> | 10         |
> +------------+
> {code}
> Needs to handle for decimal case.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org