[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: ordered indexing for integers
- To: Howard Chu <hyc@symas.com>
- Subject: Re: ordered indexing for integers
- From: Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
- Date: Sat, 1 Dec 2007 01:26:50 +0100
- Cc: OpenLDAP-devel@openldap.org
- In-reply-to: <475080B3.8020505@symas.com>
- References: <4742F5EE.5070100@symas.com> <hbf.20071130al9x@bombur.uio.no> <hbf.20071130be5u@bombur.uio.no> <47504610.9050607@symas.com> <475080B3.8020505@symas.com>
Still wrong. Current ordering:
index value (hex value)
0400000000 -2147483648 (-0x80000000)
0400000001 -2147483647 (-0x7fffffff)
0440000000 -1073741824 (-0x40000000)
0460000000 -9126805504 (-0x220000000)
0470000000 -268435456 (-0x10000000)
047ffffeff -257 (-0x101)
047fffffff -1 (-0x1)
0480000000 0 (0x0)
0480000001 1 (0x1)
0480000101 257 (0x101)
0490000000 268435456 (0x10000000)
04a0000000 9126805504 (0x220000000)
04c0000000 1073741824 (0x40000000)
04ffffffff 2147483647 (0x7fffffff)
05007fffff -2147483649 (-0x80000001)
057e000000 -8589934592 (-0x200000000)
057effffff -4294967297 (-0x100000001)
057f000000 -4294967296 (-0x100000000)
0580800000 2147483648 (0x80000000)
0580800000 2147483649 (0x80000001)
0581000000 4294967296 (0x100000000)
0581000000 4294967297 (0x100000001)
0582000000 8589934592 (0x200000000)
--
Hallvard