yaooqinn commented on PR #5636: URL: https://github.com/apache/kyuubi/pull/5636#issuecomment-1798179512
For the test part, I think we shall cover all these cases. ```sql OPTIMIZE '/path/to/delta/table' -- Optimizes the path-based Delta Lake table OPTIMIZE delta_table_name; OPTIMIZE delta.`/path/to/delta/table`; -- If you have a large amount of data and only want to optimize a subset of it, you can specify an optional partition predicate using `WHERE`: OPTIMIZE delta_table_name WHERE date >= '2017-01-01' ``` If you don't mind, you can also provide the analyzed logical plans in PR comments for better review experiences, Thank you. -- 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]
