Yin Huai created SPARK-6146:
-------------------------------
Summary: Support more datatype in SqlParser
Key: SPARK-6146
URL: https://issues.apache.org/jira/browse/SPARK-6146
Project: Spark
Issue Type: Bug
Components: SQL
Reporter: Yin Huai
Priority: Critical
Right now, I cannot do
{code}
df.selectExpr("cast(a as bigint)")
{code}
because only the following data types are supported in SqlParser
{code}
protected lazy val dataType: Parser[DataType] =
( STRING ^^^ StringType
| TIMESTAMP ^^^ TimestampType
| DOUBLE ^^^ DoubleType
| fixedDecimalType
| DECIMAL ^^^ DecimalType.Unlimited
| DATE ^^^ DateType
| INT ^^^ IntegerType
)
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]