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 ca303db commit 382d7d4Copy full SHA for 382d7d4
torchci/clickhouse_queries/torchbench_userbenchmark_query_metrics/query.sql
@@ -1,4 +1,10 @@
1
--- !!! Query is not converted to CH syntax yet. Delete this line when it gets converted
2
-SELECT * FROM torchbench."torchbench-userbenchmark"
3
- WHERE name = :userbenchmark
4
- AND REGEXP_LIKE("torchbench-userbenchmark".environ.pytorch_git_version, :commit);
+SELECT
+ *
+FROM
+ benchmark.torchbench_userbenchmark
5
+WHERE
6
+ name = {userbenchmark: String }
7
+ AND match(
8
+ JSONExtractString(environ, 'pytorch_git_version') as pytorch_git_version,
9
+ {commit: String }
10
+ )
0 commit comments