mdbx: backport - ITS#8320 mdb_load: fix loading data from simple text files.

mdb_load -T was supposed to read escaped text,
but 21b51cb7 "Add mdb_load" made it read hex.

Change-Id: If12a01ee897af0570d95744626815c535cc81f9f
This commit is contained in:
Orivej Desh 2015-11-22 01:15:14 +00:00 committed by Leo Yuriev
parent a8e2288537
commit 5d4a23138c
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ LMDB 0.9.17 Release Engineering
Fix ITS#8315 dirty_room in nested txn
Fix ITS#8316 page_merge cursor tracking
Fix ITS#8319 mdb_load error messages
Fix ITS#8320 mdb_load plaintext input
Fix ITS#8321 cursor tracking
Added mdb_txn_id() (ITS#7994)
Added robust mutex support

View File

@ -332,7 +332,7 @@ int main(int argc, char *argv[])
putflags = MDB_NOOVERWRITE|MDB_NODUPDATA;
break;
case 'T':
mode |= NOHDR;
mode |= NOHDR | PRINT;
break;
default:
usage();