We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f2e94 commit fb472e6Copy full SHA for fb472e6
vectordb_bench/backend/task_runner.py
@@ -105,7 +105,7 @@ def init_db(self, drop_old: bool = True) -> None:
105
import re, hashlib
106
# Primary identifier = case-type enum name from CLI (e.g., Performance768D10M)
107
case_type_name = self.config.case_config.case_id.name
108
- base = f"vdb_{case_type_name.lower()}"
+ base = f"{case_type_name.lower()}"
109
# Sanitize to [a-z0-9_]
110
base = re.sub(r"[^a-z0-9_]+", "_", base).strip("_")
111
# Cap to 63 chars; add short hash if truncated
0 commit comments