Skip to content

Commit

Permalink
chore(ci): fix benchmark result for tpch (#13941)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Dec 7, 2023
1 parent e180804 commit 667cb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/clickbench/update_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def update_results(dataset, title, url):
with open(result_file, "r") as f:
result = json.load(f)
if dataset == "tpch":
result["result"].append([0.0, 0.0, 0.0])
result["result"].insert(0, [0.0, 0.0, 0.0])
results.append(result)

logger.info("loading report template %s ...", TEMPLATE_FILE)
Expand Down

0 comments on commit 667cb60

Please sign in to comment.