rangareddy commented on issue #17312: URL: https://github.com/apache/hudi/issues/17312#issuecomment-5365821169
This issue was reviewed as part of the JIRA-migrated backlog triage (HUDI-8572). **Findings: still worked around on `master`, and the workaround is invisible to CI reporting.** In `hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java` the call is **commented out**, not disabled: ```java testIncrementalSparkSQLQuery(); testHiveAfterSecondBatchAfterCompaction(); // testPrestoAfterSecondBatchAfterCompaction(); // TODO: HUDI-8572 // testIncrementalHiveQueryAfterCompaction(); ``` at `:130-134`, with a second commented-out call at `:164`. The `private void testIncrementalHiveQueryAfterCompaction()` method itself is still present at `:432`, kept alive only by those comment references. One consequence worth flagging: because this is a comment rather than `@Disabled`, it does not appear in any skipped-test report, so the lost coverage is invisible to CI tooling and to the disabled-test audit tracked under this same parent effort. Converting it to an `@Disabled` test (or restoring it) would at least make the gap countable. Keeping this open. -- 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]
