]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Fix some bugs in verify_random_db.sh (#10112)
authorLevi Tamasi <ltamasi@fb.com>
Fri, 3 Jun 2022 23:35:13 +0000 (16:35 -0700)
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>
Fri, 3 Jun 2022 23:35:13 +0000 (16:35 -0700)
Summary:
The patch attempts to fix three bugs in `verify_random_db.sh`:
1) https://github.com/facebook/rocksdb/pull/9937 changed the default for
`--try_load_options` to true in the script's use case, so we have to
explicitly set it to false if the corresponding argument of the script
is 0. This should fix the issue we've been seeing with our forward
compatibility tests where 7.3 is unable to open a database created by
the version on main after adding a new configuration option.
2) The script seems to support two "extra parameters"; however,
in practice, if the second one was set, only that one was passed on to
`ldb`. Now both get forwarded.
3) When running the `diff` command, the base DB directory was passed as
the second argument instead of the file containing the `ldb` output
(this actually seems to work, probably accidentally though).

Pull Request resolved: https://github.com/facebook/rocksdb/pull/10112

Reviewed By: pdillinger

Differential Revision: D36911363

Pulled By: ltamasi

fbshipit-source-id: fe29db4e28d373cee51a12322c59050fc50e926d

tools/verify_random_db.sh

index 817e4b98441fd3ec7cdd40669d5c73611a383da1..fbe5b75fdc64c2f2b2a90434722996057df5d23a 100755 (executable)
@@ -19,21 +19,23 @@ try_load_options=${4:-"1"}
 ignore_unknown_options=${5:-"0"}
 db_dump=$db_dir"/"$dump_file_name
 base_db_dump=$base_db_dir"/"$dump_file_name
-extra_param=
+extra_params=
 
-if [ "$try_load_options" = "1" ]; then
- extra_param=" --try_load_options "
+if [ "$try_load_options" = "0" ]; then
+ extra_params=" --try_load_options=false"
+elif [ "$try_load_options" = "1" ]; then
+ extra_params=" --try_load_options=true"
 fi
 
 if [ "$ignore_unknown_options" = "1" ]; then
- extra_param=" --ignore_unknown_options "
+ extra_params="$extra_params --ignore_unknown_options"
 fi
 
 set -e
 echo == Dumping data from $db_dir to $db_dump
-./ldb dump --db=$db_dir $extra_param > $db_dump
+./ldb dump --db=$db_dir $extra_params > $db_dump
 
 echo == Dumping data from $base_db_dir to $base_db_dump
-./ldb dump --db=$base_db_dir $extra_param > $base_db_dump
+./ldb dump --db=$base_db_dir $extra_params > $base_db_dump
 
-diff $db_dump $base_db_dir
+diff $db_dump $base_db_dump