You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Parth Chandra (JIRA)" <ji...@apache.org> on 2015/03/05 01:06:38 UTC

[jira] [Updated] (DRILL-1836) Default length for Varchar in cast expressions should be changed

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

Parth Chandra updated DRILL-1836:
---------------------------------
    Fix Version/s:     (was: 1.0.0)
                   Future

> Default length for Varchar in cast expressions should be changed
> ----------------------------------------------------------------
>
>                 Key: DRILL-1836
>                 URL: https://issues.apache.org/jira/browse/DRILL-1836
>             Project: Apache Drill
>          Issue Type: Improvement
>          Components: Execution - Data Types
>            Reporter: Abhishek Girish
>            Assignee: Mehant Baid
>             Fix For: Future
>
>
> Current behavior:
> Specify length:
> > select cast(t1.colfam1.col1 as varchar(10)) from table1 t1;
> +------------+
> |   EXPR$0   |
> +------------+
> | val1       |
> | val21      |
> | val26      |
> +------------+
> Default length for varchar in a cast expression:
> > select cast(t1.colfam1.col1 as varchar) from table1 t1;
> +------------+
> |   EXPR$0   |
> +------------+
> | v          |
> | v          |
> | v          |
> +------------+
> When the length attribute is not specified with varchar, in a cast expression, Drill treats the default length to be 1. 
> Postgres and SQL Server sets the default length to be 30 in such a scenario. The behavior for Drill must be modified to something similar. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)