fixing another BAD unsigned-long related bug, by re-defining the NULL and NULLSEEK value to 0, since an unsigned long cannot of course be -1! this will require you to kindly rebuild your index
This commit is contained in:
parent
bd87798d9b
commit
68dd57242a
@ -138,11 +138,11 @@ define('NOROOMERROR', -100);
|
|||||||
/**
|
/**
|
||||||
* @const int null node
|
* @const int null node
|
||||||
*/
|
*/
|
||||||
define('BPT_NULL', -1);
|
define('BPT_NULL', 0);
|
||||||
/**
|
/**
|
||||||
* @const int null seek position
|
* @const int null seek position
|
||||||
*/
|
*/
|
||||||
define('BPT_NULLSEEK', -1);
|
define('BPT_NULLSEEK', 0);
|
||||||
/**
|
/**
|
||||||
* @const string magic string for bplustree
|
* @const string magic string for bplustree
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user