From 49ce7ed70316be4c8243bb2754adefde5ddeb3de Mon Sep 17 00:00:00 2001 From: Immanuel Haffner Date: Wed, 24 Apr 2024 13:57:27 +0200 Subject: [PATCH] Fix #230: Fix HyPer connector in benchmarks --- benchmark/database_connectors/hyper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/database_connectors/hyper.py b/benchmark/database_connectors/hyper.py index cf6369f1..0338da3e 100644 --- a/benchmark/database_connectors/hyper.py +++ b/benchmark/database_connectors/hyper.py @@ -55,7 +55,7 @@ def execute(self, n_runs: int, params: dict[str, Any]) -> ConnectorResult: result: ConnectorResult = eval(out) patched_result: ConnectorResult = dict() for key, val in result.items(): - patched_result[f'{key}{suffix}'] = { 'ExecutionTime' : val } + patched_result[f'{key}{suffix}'] = val return patched_result @staticmethod