You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2015/05/01 07:05:05 UTC

[jira] [Commented] (SPARK-5213) Pluggable SQL Parser Support

    [ https://issues.apache.org/jira/browse/SPARK-5213?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14522778#comment-14522778 ] 

Apache Spark commented on SPARK-5213:
-------------------------------------

User 'scwf' has created a pull request for this issue:
https://github.com/apache/spark/pull/5827

> Pluggable SQL Parser Support
> ----------------------------
>
>                 Key: SPARK-5213
>                 URL: https://issues.apache.org/jira/browse/SPARK-5213
>             Project: Spark
>          Issue Type: New Feature
>          Components: SQL
>            Reporter: Cheng Hao
>             Fix For: 1.4.0
>
>
> Currently, the SQL Parser dialect is hard code in SQLContext, which is not easy to extend, we need the features like:
> bin/spark-sql --driver-class-path customizedSQL92.jar
> -- switch to "hiveql" dialect
>    spark-sql>SET spark.sql.dialect=hiveql;
>    spark-sql>SELECT * FROM src LIMIT 1;
> -- switch to "sql" dialect
>    spark-sql>SET spark.sql.dialect=sql;
>    spark-sql>SELECT * FROM src LIMIT 1;
> -- register the new SQL dialect
>    spark-sql> SET spark.sql.dialect.sql99=com.xxx.xxx.SQL99Dialect;
>    spark-sql> SET spark.sql.dialect=sql99;
>    spark-sql> SELECT * FROM src LIMIT 1;
> -- register the non-exist SQL dialect
>    spark-sql> SET spark.sql.dialect.sql92=NotExistedClass;
>    spark-sql> SET spark.sql.dialect=sql92;
>    spark-sql> SELECT * FROM src LIMIT 1;
> -- Exception will be thrown and switch to dialect "sql" (for SQLContext) or "hiveql" (for HiveContext)



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

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