You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Takeshi Yamamuro (Jira)" <ji...@apache.org> on 2019/12/29 09:42:00 UTC

[jira] [Updated] (SPARK-27931) Accept 'on' and 'off' as input for boolean data type

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

Takeshi Yamamuro updated SPARK-27931:
-------------------------------------
    Parent Issue: SPARK-30375  (was: SPARK-27764)

> Accept 'on' and 'off' as input for boolean data type
> ----------------------------------------------------
>
>                 Key: SPARK-27931
>                 URL: https://issues.apache.org/jira/browse/SPARK-27931
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 3.0.0
>            Reporter: Yuming Wang
>            Assignee: YoungGyu Chun
>            Priority: Major
>             Fix For: 3.0.0
>
>
> This ticket contains three things:
>  1. Accept 'on' and 'off' as input for boolean data type
> {code:sql}
> SELECT cast('no' as boolean) AS false;
> SELECT cast('off' as boolean) AS false;
> {code}
> 2. Accept unique prefixes thereof:
> {code:sql}
> SELECT cast('of' as boolean) AS false;
> SELECT cast('fal' as boolean) AS false;
> {code}
> 3. Trim the string when cast to boolean type
> {code:sql}
> SELECT cast('    true   ' as boolean) AS true;
> SELECT cast('     FALSE' as boolean) AS true;
> {code}
> More details:
>  [https://www.postgresql.org/docs/devel/datatype-boolean.html]
>  [https://github.com/postgres/postgres/blob/REL_12_BETA1/src/backend/utils/adt/bool.c#L25]
>  [https://github.com/postgres/postgres/commit/05a7db05826c5eb68173b6d7ef1553c19322ef48]
>  [https://github.com/postgres/postgres/commit/9729c9360886bee7feddc6a1124b0742de4b9f3d]
> Other DBs:
>  [http://docs.aws.amazon.com/redshift/latest/dg/r_Boolean_type.html]
>  [https://my.vertica.com/docs/5.0/HTML/Master/2983.htm]
>  [https://github.com/prestosql/presto/blob/b845cd66da3eb1fcece50efba83ea12bc40afbaa/presto-main/src/main/java/com/facebook/presto/type/VarcharOperators.java#L108-L138]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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