alamb commented on issue #7198: URL: https://github.com/apache/arrow-datafusion/issues/7198#issuecomment-1670235966
Note that the dataset in the above example is in the form of an influxdb_iox catalog. If you prefer a `datafusion-cli` only version, here it is: Download [traces.zip](https://drive.google.com/file/d/1SlBGlTrYgcZTITDX_VRG22QZ7IyPX_JR/view?usp=drive_link) (240MB): In `datafusion-cli`: ```sql ❯ create external table traces stored as parquet location 'traces'; 0 rows in set. Query took 0.030 seconds. ❯ SELECT trace_id, MAX(time) FROM traces GROUP BY trace_id ORDER BY MAX(time) DESC LIMIT 1; ``` -- 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]
