nada-attia commented on issue #19654:
URL: https://github.com/apache/hudi/issues/19654#issuecomment-5331862312
original df:
```
private def generateSampleDf(): DataFrame = {
val inputDf = spark.sql(
"""
SELECT 1 AS id, 'Surya' AS name,
struct(
123 as house_number,
'Mountain View' as city,
'CA' as state,
'94043' as zipcode
) as address,
10 AS price, 100 AS dt, '2025-05-06' AS datestr
UNION ALL
SELECT 2 AS id, 'Prasanna' AS name,
struct(
456 as house_number,
'Los Angeles' as city,
'CA' as state,
'90038' as zipcode
) as address,
15 AS price, 200 AS dt, '2025-05-06' AS datestr
""")
inputDf
}
```
--
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]