normen662

Results 9 comments of normen662

Thanks for the answer! My use case in fact uses coordinates in range -2^63..2^63-1. What I ended up doing which I think does work is the following: 1. shift the...

Oh right: The code to shift the coordinates: ``` static long shiftCoordinate(long coordinate) { return coordinate < 0 ? (Long.MAX_VALUE - (-coordinate - 1L)) : (coordinate | (1L

By dividing the coordinate by two I would lose resolution, unless there is a misunderstanding on my part. I need a bijective function `f:(java long, java long) --> BigInteger` with...

Hi David, thank you for all the suggestions! I don't think I can avoid having those 64 bits of resolution. Since my adapted code can deal with that case I...

Please see ``` public static List

It's not resolved unfortunately. The order direction is part of the modeling but at some stage we insist on all of them pointing in one direction. Also, these orderings do...

Can you check that the right compatibilities are enforced (as well as the wrong ones don't match) in `Ordering.combineBindingsForIntersection()` and `Ordering.combineBindingsForUnion()`?

Hi, I believe this is a duplicate of https://github.com/FoundationDB/fdb-record-layer/issues/1112.

So the description it says `grouping` and the code says `grouped`. If it is grouped columns, then yeah, something may break although it is conceivable that an index can give...