Commit baee84a6 authored by Jim Fulton's avatar Jim Fulton

Fixed maxtid, copying value from ZEO.

Changed it to the value corresponding to the maximim *signed*
big-endian 64-bit integer, because of LxBTrees.

Note that this value isn't used anywhere in ZODB yet.

Maybe it should be.
parent 5bb8a810
......@@ -103,7 +103,7 @@ else:
z64 = b'\0' * 8
maxtid = b'\xff' * 8
maxtid = b'\x7f\xff\xff\xff\xff\xff\xff\xff'
assert sys.hexversion >= 0x02030000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment