X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2FDB_File%2Fdbinfo;h=701ac612b62b6504eb9691bc7d238c742f40f4bf;hb=e5a4bac510f9fafa6e02bed759aee3582bb87d6a;hp=9640ba442e42ef154ce1eafb4711278fc3b1128e;hpb=a9fd575dd92ad717baa6b7171a8f5bbb5221fcc7;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/DB_File/dbinfo b/ext/DB_File/dbinfo index 9640ba4..701ac61 100644 --- a/ext/DB_File/dbinfo +++ b/ext/DB_File/dbinfo @@ -3,9 +3,9 @@ # Name: dbinfo -- identify berkeley DB version used to create # a database file # -# Author: Paul Marquess -# Version: 1.01 -# Date 16th April 1998 +# Author: Paul Marquess +# Version: 1.02 +# Date 20th August 1999 # # Copyright (c) 1998 Paul Marquess. All rights reserved. # This program is free software; you can redistribute it and/or @@ -19,7 +19,7 @@ use strict ; my %Data = ( 0x053162 => { - Type => "Btree", + Type => "Btree", Versions => { 1 => "Unknown (older than 1.71)", @@ -27,18 +27,27 @@ my %Data = 3 => "1.71 -> 1.85, 1.86", 4 => "Unknown", 5 => "2.0.0 -> 2.3.0", - 6 => "2.3.1 or greater", + 6 => "2.3.1 -> 2.7.7", + 7 => "3.0.0 or greater", } }, 0x061561 => { - Type => "Hash", + Type => "Hash", Versions => { 1 => "Unknown (older than 1.71)", 2 => "1.71 -> 1.85", 3 => "1.86", 4 => "2.0.0 -> 2.1.0", - 5 => "2.2.6 or greater", + 5 => "2.2.6 -> 2.7.7", + 6 => "3.0.0 or greater", + } + }, + 0x042253 => { + Type => "Queue", + Versions => + { + 1 => "3.0.0 or greater", } }, ) ;