Skip to content

Commit

Permalink
Fix #230: Fix HyPer connector in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmanuelHaffner committed Apr 24, 2024
1 parent 4969a30 commit 49ce7ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/database_connectors/hyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 49ce7ed

Please sign in to comment.