CRZbulabula commented on PR #17765: URL: https://github.com/apache/iotdb/pull/17765#issuecomment-4716677412
**The two failing `unit-test ... datanode` jobs are a stale-base false positive, not caused by this PR. A rebase will clear them.** This PR only touches shell/bat scripts (no Java), but the two failures are in a Java pipe test — `TsFileInsertionEventParserTest#testScanParserSkipsUnnecessaryBitMaps` and `#testTableParserSkipsUnnecessaryBitMaps` — so the change cannot be the cause. Root cause: the failing workflow run (`26503672419`) was **created on 2026-05-27**. Those two tests were introduced by #17770 and were broken on `master` at that time; they were only fixed afterwards by #17779 (2026-05-28), #17807 (2026-06-03), and #17844 (2026-06-04) — all of which landed *after* this run's merge base. Clicking "Re-run failed jobs" reuses the original 2026-05-27 merge commit and does **not** pull in newer `master`, so re-running will keep failing with the identical result no matter how many times it's retried. Recent unrelated PRs (e.g. #17937 / #17935 / #17926) pass these same datanode unit-test jobs on current `master`, confirming the tests are green now. **Fix:** rebase this branch onto the latest `master` and force-push (or use the "Update branch" button). That generates a fresh merge base containing the fixes above, and the datanode unit-test jobs should go green. A plain "Re-run" will not work. -- 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]
