ZENOTME opened a new pull request, #386: URL: https://github.com/apache/iceberg-rust/pull/386
This PR fix #378. 1. It makes PrimitiveLiteral and Literal not be PartialOrd, Ord. And only Datum PartialOrd. 2. After 1, it also changes the Manifest and ManifestList to use Datum in `lower_bound` && `upper_bound` After Literal is not Ord, we can't use `BTreeMap<Literal,_>` anymore. I use `HashMap` to replace it. But to make `HashMap` hashable, we need to assign an order for it. I implement this in `Map`. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org