szehon-ho commented on PR #5113:
URL: https://github.com/apache/iceberg/pull/5113#issuecomment-1165734284
> It's not supported in Spark.
Do you know if that is documented somewhere? Actually I tried on Spark
non-Iceberg table and it seems to support it. Now, I am just wondering whether
we should somehow for now skip pushing these filters into Iceberg in the first
place so we don't block these kind of queries from being evaluated on Spark.
```
spark.sql("select * from test_struct_non_iceberg where struct_field
in(struct(10))").show
+------------+
|struct_field|
+------------+
| {10}|
+------------+
scala> spark.sql("select * from test_struct_non_iceberg where struct_field =
struct(10)").show
+------------+
|struct_field|
+------------+
| {10}|
+------------+
```
Note: it's all orthogonal to this PR.
--
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]