shangxinli opened a new pull request, #18233: URL: https://github.com/apache/hudi/pull/18233
### Describe the issue this Pull Request addresses The exception message in `HoodieTableMetadataUtil.deleteMetadataTablePartition()` ends with a trailing `: ` which appears incomplete and looks like a formatting artifact. ### Summary and Changelog **Summary:** Remove the trailing `: ` from the error message in `HoodieTableMetadataUtil` when failing to check existence of a metadata table partition. **Changelog:** - Changed `"Failed to check existence of MDT partition %s at path %s: "` to `"Failed to check existence of MDT partition %s at path %s"` in `HoodieTableMetadataUtil.java:2259`. The cause exception is already passed as the second argument to `HoodieMetadataException`, so the trailing colon adds no value. ### Impact **Public API Changes:** None. **User-Facing Changes:** Slightly cleaner error message when metadata table partition check fails. **Performance Impact:** None. ### Risk Level **Risk Level: low** **Justification:** - Single character removal in an error message string - No logic changes - The root cause exception is already chained via the constructor ### Documentation Update No documentation changes needed. ### Contributor's checklist - [x] Read through [contributor's guide](https://hudi.apache.org/contribute/how-to-contribute) - [x] Enough context is provided in the sections above - [x] Adequate tests were added if applicable - [x] Commits are signed and follow [conventions](https://www.conventionalcommits.org/) -- 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]
