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 2022/04/07 16:31:00 UTC

[jira] [Commented] (SPARK-37013) `select format_string('%0$s', 'Hello')` has different behavior when using java 8 and Java 17

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

Apache Spark commented on SPARK-37013:
--------------------------------------

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

> `select format_string('%0$s', 'Hello')` has different behavior when using java 8 and Java 17
> --------------------------------------------------------------------------------------------
>
>                 Key: SPARK-37013
>                 URL: https://issues.apache.org/jira/browse/SPARK-37013
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 3.3.0
>            Reporter: Yang Jie
>            Assignee: Yang Jie
>            Priority: Minor
>              Labels: release-notes
>             Fix For: 3.3.0
>
>
> {code:java}
> --PostgreSQL throw ERROR:  format specifies argument 0, but arguments are numbered from 1
> select format_string('%0$s', 'Hello');
> {code}
> Execute with Java 8
> {code:java}
> -- !query
> select format_string('%0$s', 'Hello')
> -- !query schema
> struct<format_string(%0$s, Hello):string>
> -- !query output
> Hello
> {code}
> Execute with Java 17
> {code:java}
> -- !query
> select format_string('%0$s', 'Hello')
> -- !query schema
> struct<>
> -- !query output
> java.util.IllegalFormatArgumentIndexException
> Illegal format argument index = 0
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

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