Manya0407 commented on PR #6385: URL: https://github.com/apache/hive/pull/6385#issuecomment-4175081886
> Can you explain the non pom related changes, like why they are needed in scope of Jackson upgrade As part of the Jackson upgrade, deserialization behavior became stricter and no longer reliably populates private fields without setters.The failure after the Jackson upgrade was due to operatorId not being populated during deserialization.Since OperatorStats didn’t have a setter for operatorId, it was coming back as null and causing the equality check to fail. I’ve added the setter to fix this and the test passes now. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
