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

Apache Spark commented on SPARK-40762:
--------------------------------------

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

> Check error classes in ErrorParserSuite
> ---------------------------------------
>
>                 Key: SPARK-40762
>                 URL: https://issues.apache.org/jira/browse/SPARK-40762
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 3.4.0
>            Reporter: Max Gekk
>            Assignee: Max Gekk
>            Priority: Major
>
> Check error classes in ErrorParserSuite by using checkError(). For instance, 
> replace
> {code:scala}
> intercept("select *\nfrom r\norder by q\ncluster by q", 3, 0, 11,
>       "Combination of ORDER BY/SORT BY/DISTRIBUTE BY/CLUSTER BY is not 
> supported",
>       "^^^")
> {code}
> by
> {code:scala}
> checkError(
>       exception = parseException("select *\nfrom r\norder by q\ncluster by 
> q"),
>       errorClass = "_LEGACY_ERROR_TEMP_0011",
>       parameters = Map.empty,
>       context = ExpectedContext(fragment = "order by q\ncluster by q", start 
> = 16, stop = 38))
> {code}
> at 
> https://github.com/apache/spark/blob/96ed6dc3e38b22b4aefc41e20ba7c953f8f2251e/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/parser/ErrorParserSuite.scala#L79-L83



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to