diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index 4a393b5357fe502224692c87c703514051366fa7..32c5abbe7cba985822582fc79c1f9943b99f1102 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -41,8 +41,8 @@ default_params = { "enable_pipelined_write": 0, "expected_values_path": expected_values_file.name, "flush_one_in": 1000000, - # Temporarily disable hash index - "index_type": lambda: random.choice([0, 2]), + # Temporarily disable hash and partitioned index + "index_type": 0, "max_background_compactions": 20, "max_bytes_for_level_base": 10485760, "max_key": 100000000, @@ -50,7 +50,8 @@ default_params = { "mmap_read": lambda: random.randint(0, 1), "nooverwritepercent": 1, "open_files": lambda : random.choice([-1, 500000]), - "partition_filters": lambda: random.randint(0, 1), + # Temporarily disable partitioned filter + "partition_filters": 0, "prefixpercent": 5, "progress_reports": 0, "readpercent": 45,