JkSelf commented on issue #8787:
URL: 
https://github.com/apache/incubator-gluten/issues/8787#issuecomment-2674013361

   @NEUpanning 
   I tested the following code on the main branch, but it did not reproduce the 
exception mentioned above. Could you help by providing a unit test that 
reproduces the issue? Thanks.
   
     ```
    import spark.implicits._
       val employees = Seq(
         (1, "Alice", 1),
         (2, "Bob", 2),
         (3, "Charlie", 3),
         (4, "David", 4)
       ).toDF("emp_id", "name", "dept_id")
   
       val departments = Seq(
         (1, "HR"),
         (2, "Engineering"),
         (3, "Marketing")
       ).toDF("dept_id", "dept_name")
   
       // filter condition
       val filteredDepartments = departments.filter($"dept_name" === 
"Engineering")
   
       // Left Semi Join
       val result = employees.join(filteredDepartments, employees("dept_id") 
=== filteredDepartments("dept_id"), "leftsemi")
       result.show()
   
   ```
   
   
![Image](https://github.com/user-attachments/assets/004714ca-dd8c-4194-84a4-c53d1a18dfd5)


-- 
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]

Reply via email to