add IS NULL/IS NOT NULL support, patches

This commit is contained in:
brianb
2004-02-06 23:55:18 +00:00
parent af7b6953ad
commit 5f02ba4fd2
10 changed files with 211 additions and 145 deletions

View File

@@ -356,7 +356,7 @@ mdb_get_double(unsigned char *buf, int offset)
double d;
memcpy(&d, &buf, 8);
memcpy(&d, &buf[offset], 8);
#ifdef WORDS_BIGENDIAN
d2 = d;