mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
89 lines
1.4 KiB
Plaintext
89 lines
1.4 KiB
Plaintext
db scan
|
|
----
|
|
accepts 1 arg(s), received 0
|
|
|
|
db scan
|
|
non-existent
|
|
----
|
|
error opening database at "non-existent": pebble: database "non-existent" does not exist
|
|
|
|
db scan
|
|
./testdata/corrupt-options-db
|
|
----
|
|
error loading options: invalid key=value syntax: "blargle"
|
|
Custom message in case of corruption error.
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
----
|
|
foo [66697665]
|
|
quux [736978]
|
|
scanned 2 records in 1.0s
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--comparer=foo
|
|
----
|
|
unknown comparer "foo"
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--comparer=test-comparer
|
|
----
|
|
pebble: manifest file "MANIFEST-000006" for DB "db-stage-4": comparer name from file "leveldb.BytewiseComparator" != comparer name from Options "test-comparer"
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--merger=foo
|
|
----
|
|
unknown merger "foo"
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--merger=test-merger
|
|
----
|
|
pebble: merger name from file "pebble.concatenate" != merger name from options "test-merger"
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--key=%x
|
|
--value=size
|
|
----
|
|
666f6f <4>
|
|
71757578 <3>
|
|
scanned 2 records in 1.0s
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--key=%x
|
|
--value=null
|
|
--start=quux
|
|
----
|
|
71757578
|
|
scanned 1 record in 1.0s
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--key=null
|
|
--value=size
|
|
--end=quux
|
|
----
|
|
<4>
|
|
scanned 1 record in 1.0s
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--key=null
|
|
--value=null
|
|
----
|
|
scanned 2 records in 1.0s
|
|
|
|
|
|
db scan
|
|
../testdata/db-stage-4
|
|
--key=null
|
|
--value=null
|
|
--count=1
|
|
----
|
|
scanned 1 record in 1.0s
|