taiyang-li opened a new issue, #6765:
URL: https://github.com/apache/incubator-gluten/issues/6765
### Description
``` sql
0: jdbc:hive2://localhost:10000/> select format_string('%d%s', 1, 'hello', 2)
. . . . . . . . . . . . . . . . > ;
+-----------------------------------+
| format_string(%d%s, 1, hello, 2) |
+-----------------------------------+
| 1hello |
+-----------------------------------+
```
``` sql
select printf('%d%s', 1, 'hello', 2)
```
会报类似的错
```
Number of arguments for function printf doesn't match: passed 3, but format
is
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]