github.com/petermattis/pebble@v0.0.0-20190905164901-ab51a2166067/tool/testdata/db_check (about)

     1  db check
     2  ----
     3  accepts 1 arg(s), received 0
     4  
     5  db check
     6  non-existent
     7  ----
     8  open non-existent/LOCK: no such file or directory
     9  
    10  db check
    11  ../testdata/db-stage-4
    12  ----
    13  scanned 2 records in 1.0s
    14  
    15  db check
    16  ../testdata/db-stage-4
    17  --comparer=foo
    18  ----
    19  unknown comparer "foo"
    20  
    21  db check
    22  ../testdata/db-stage-4
    23  --comparer=test-comparer
    24  ----
    25  pebble: manifest file "MANIFEST-000005" for DB "../testdata/db-stage-4": comparer name from file "leveldb.BytewiseComparator" != comparer name from Options "test-comparer"
    26  
    27  db check
    28  ../testdata/db-stage-4
    29  --merger=foo
    30  ----
    31  unknown merger "foo"
    32  
    33  # TODO(peter): this DB does not have any merge records and the merge
    34  # operator in the OPTIONS file is "nullptr".
    35  db check
    36  ../testdata/db-stage-4
    37  --merger=test-merger
    38  ----
    39  scanned 2 records in 1.0s