jiangzhx commented on code in PR #6594:
URL: https://github.com/apache/arrow-datafusion/pull/6594#discussion_r1223788980
##########
datafusion/core/tests/sqllogictests/test_files/functions.slt:
##########
@@ -458,3 +458,26 @@ SELECT v1, v2, ROWNUMBER() OVER(ORDER BY v1) from test;
statement ok
drop table test
+
+# Scalar function struct
+statement ok
+create table simple_struct_test (
Review Comment:
thanks for your help.
i have updated the current test case:
```
create table simple_struct_test (
c1 boolean,
c2 INT,
c3 FLOAT,
c4 DOUBLE,
a VARCHAR,
b TEXT
) as select *
from (values
(true, 1,3.1,3.14,'str','text')
);
```
it's should cover the scenario you mentioned.
--
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]