LuciferYang commented on PR #13231: URL: https://github.com/apache/gravitino/pull/13231#issuecomment-5761379994
The `build (17)` failure after the `main` merge was a single test assertion, now fixed in 8d1ab6f87. `TestGravitinoPaimonTable:316` compared `Index.fieldNames()` (`String[][]`) with `assertEquals` (reference equality); that only held while `fieldNames()` returned the stored array, and this PR now returns a defensive copy, so it needed `assertArrayEquals` (content) like line 339 already uses. Verified red-to-green on the Paimon module. Grepped the repo to confirm it was the only reference-based `Index.fieldNames()` comparison; every other site indexes into the array and compares a String, which the copy preserves. -- 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]
