eejbyfeldt commented on code in PR #11232:
URL: https://github.com/apache/datafusion/pull/11232#discussion_r1664700294


##########
datafusion/sqllogictest/test_files/joins.slt:
##########
@@ -1336,6 +1350,25 @@ physical_plan
 10)----------RepartitionExec: partitioning=RoundRobinBatch(2), 
input_partitions=1
 11)------------MemoryExec: partitions=1, partition_sizes=[1]
 
+
+# Join on struct
+query ??
+select join_t3.s3, join_t4.s4
+from join_t3
+inner join join_t4 on join_t3.s3 = join_t4.s4
+----
+{id: 2} {id: 2}

Review Comment:
   Added for this query. The one using `IS NOT DISTINCT FROM` is still not 
using hash join. But that does not seem to be related to the struct, since it 
the same if just joining on a int.



-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to