1# @(#)VERSION 8.3 (Berkeley) 09/16/93 2 3This is version 1.7 of the Berkeley DB code. 4 5If your version of the DB code doesn't have a copy of 6this version file, it's really old, please update it! 7 8New versions of this software are periodically made 9available by anonymous ftp from ftp.cs.berkeley.edu, 10in the file ucb/4bsd/db.tar.Z, or from ftp.uu.net. 11 12Email questions may be addressed to Keith Bostic at 13bostic@cs.berkeley.edu. 14 15============================================ 161.7 -> 1.71 16 Sep 1993 17 btree/recno: 18 Fix bug in internal search routines that caused 19 return of invalid pointers. 20 211.6 -> 1.7 07 Sep 1993 22 hash: Fixed big key overflow bugs. 23 test: Portability hacks, rewrite test script, Makefile. 24 btree/recno: 25 Stop copying non-overflow key/data pairs. 26 PORT: Break PORT directory up into per architecture/OS 27 subdirectories. 28 291.5 -> 1.6 06 Jun 1993 30 hash: In PAIRFITS, the first comparison should look at (P)[2]. 31 The hash_realloc function was walking off the end of memory. 32 The overflow page number was wrong when bumping splitpoint. 33 341.4 -> 1.5 23 May 1993 35 hash: Set hash default fill factor dynamically. 36 recno: Fixed bug in sorted page splits. 37 Add page size parameter support. 38 Allow recno to specify the name of the underlying btree; 39 used for vi recovery. 40 btree/recno: 41 Support 64K pages. 42 btree/hash/recno: 43 Provide access to an underlying file descriptor. 44 Change sync routines to take a flag argument, recno 45 uses this to sync out the underlying btree. 46 471.3 -> 1.4 10 May 1993 48 recno: Delete the R_CURSORLOG flag from the recno interface. 49 Zero-length record fix for non-mmap reads. 50 Try and make SIZE_T_MAX test in open portable. 51 521.2 -> 1.3 01 May 1993 53 btree: Ignore user byte-order setting when reading already 54 existing database. Fixes to byte-order conversions. 55 561.1 -> 1.2 15 Apr 1993 57 No bug fixes, only compatibility hacks. 58============================================ 59 60Distribution contents: 61 Makefile.inc Ignore this, it's Berkeley's internal Makefile. 62 PORT The directory to build in. 63 README This file. 64 VERSION This file. 65 btree B+tree routines. 66 db Dbopen(3) interface routine. 67 doc USENIX papers. 68 hash Extended linear hashing routines. 69 man Man pages. 70 mpool Memory pool routines. 71 recno Fixed/variable length routines. 72 test Test package. 73