FelixYBW commented on issue #12263: URL: https://github.com/apache/gluten/issues/12263#issuecomment-4666272815
With fix https://github.com/apache/gluten/pull/12226, Gluten can read/write lance data with C2R # write, C2R in Gluten + R2C in lance ```sql CREATE TABLE lance.lineitem USING lance AS SELECT * FROM spark_catalog.tpch_sf100_parquet_snappy.lineitem; ``` <img width="566" height="1078" alt="Image" src="https://github.com/user-attachments/assets/0c0f58b0-ebe2-421c-82a6-d945d8a421e4" /> # read, C2R in Spark + R2C in Gluten ```sql select max(tax) from lance.lineitem group by shipmode ``` <img width="282" height="1456" alt="Image" src="https://github.com/user-attachments/assets/30efee22-c4d0-4514-9e6c-5572cb5fdc8c" /> -- 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]
