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:
real_nowhereman 2009-01-17 16:40:35 +00:00
parent bd87798d9b
commit 68dd57242a

View File

@ -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
*/ */