-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add REORG operation details in commit history #1753
Conversation
GitOrigin-RevId: 4b3b8d9bc287b6491be50a879f2508e889adeb4b
@xupefei Please review. |
.select("operation", "operationParameters", "operationMetrics") | ||
.as[(String, Map[String, String], Map[String, String])] | ||
.head() | ||
assert(opName === "REORG") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we check for opName in the optimize suites?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are not. Will followup with a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the work! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
`REORG` command was added as part of the delta-io#1732. The operation is recorded as `OPTIMIZE`. This PR changes it to `REORG` Updated existing UTs to verify the Delta table history Closes delta-io#1753 Signed-off-by: Venki Korukanti <venki.korukanti@databricks.com> GitOrigin-RevId: d5d27e6b5710659d3766eed0b0c32ec5b716d644 (cherry picked from commit 9391568)
## Description `REORG` command was added as part of the delta-io#1732. The operation is recorded as `OPTIMIZE`. This PR changes it to `REORG` Updated existing UTs to verify the Delta table history Closes delta-io#1753 Signed-off-by: Venki Korukanti <venki.korukanti@databricks.com> GitOrigin-RevId: d5d27e6b5710659d3766eed0b0c32ec5b716d644 (cherry picked from commit 9391568)
Description
REORG
command was added as part of the #1732. The operation is recorded asOPTIMIZE
. This PR changes it toREORG
How was this patch tested?
Updated existing UTs to verify the Delta table history