ueshin opened a new pull request #32523:
URL: https://github.com/apache/spark/pull/32523


   ### What changes were proposed in this pull request?
   
   This PR fixes the same issue as #32424.
   
   ```py
   from pyspark.sql.functions import flatten, struct, transform
   df = spark.sql("SELECT array(1, 2, 3) as numbers, array('a', 'b', 'c') as 
letters")
   df.select(flatten(
       transform(
           "numbers",
           lambda number: transform(
               "letters",
               lambda letter: struct(number.alias("n"), letter.alias("l"))
           )
       )
   ).alias("zipped")).show(truncate=False)
   ```
   
   **Before:**
   
   ```
   +------------------------------------------------------------------------+
   |zipped                                                                  |
   +------------------------------------------------------------------------+
   |[{a, a}, {b, b}, {c, c}, {a, a}, {b, b}, {c, c}, {a, a}, {b, b}, {c, c}]|
   +------------------------------------------------------------------------+
   ```
   
   **After:**
   
   ```
   +------------------------------------------------------------------------+
   |zipped                                                                  |
   +------------------------------------------------------------------------+
   |[{1, a}, {1, b}, {1, c}, {2, a}, {2, b}, {2, c}, {3, a}, {3, b}, {3, c}]|
   +------------------------------------------------------------------------+
   ```
   
   ### Why are the changes needed?
   
   To produce the correct results.
   
   ### Does this PR introduce _any_ user-facing change?
   
   Yes, it fixes the results to be correct as mentioned above.
   
   ### How was this patch tested?
   
   Added a unit test as well as manually.
   


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

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