From 2ff326a41afd6e03cbda4151ed06c99d7ff188cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Botond=20D=C3=A9nes?= Date: Mon, 10 Aug 2020 12:57:08 +0300 Subject: [PATCH] test/manual/sstable_scan_footprint_test: document sstable related command line arguments --- test/manual/sstable_scan_footprint_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/manual/sstable_scan_footprint_test.cc b/test/manual/sstable_scan_footprint_test.cc index 799350fa45..bcdaf83ed3 100644 --- a/test/manual/sstable_scan_footprint_test.cc +++ b/test/manual/sstable_scan_footprint_test.cc @@ -209,8 +209,8 @@ int main(int argc, char** argv) { ("with-compression", "Generates compressed sstables") ("reads", bpo::value()->default_value(100), "Total reads") ("read-concurrency", bpo::value()->default_value(1), "Concurrency of reads, the amount of reads to fire at once") - ("sstables", bpo::value()->default_value(100), "") - ("sstable-size", bpo::value()->default_value(10000000), "") + ("sstables", bpo::value()->default_value(100), "Number of sstables to generate") + ("sstable-size", bpo::value()->default_value(10000000), "Size of generated sstables") ("sstable-format", bpo::value()->default_value("md"), "Sstable format version to use during population") ("collect-stats", "Enable collecting statistics.") ("stats-file", bpo::value()->default_value("stats.csv"), "Store statistics in the specified file.")