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 39523dd commit 78b7803Copy full SHA for 78b7803
torchci/lib/benchmark/api_helper/backend/dataFetchers/queryBuilderUtils/listCommitQueryBuilder.ts
@@ -107,12 +107,13 @@ export class PytorchOperatorMicroListCommitsDataFetcher
107
super();
108
this._data_query = new BenchmarkListCommitQueryBuilder();
109
this._data_query.addWhere([
110
- "startsWith(model_name, {operatorName: String}) OR {operatorName: String} = ''",
+ "(startsWith(model_name, {operatorName: String}) OR {operatorName: String} = '')",
111
]);
112
}
113
114
toQueryParams(inputs: any, id?: string): Record<string, any> {
115
- return this._data_query.toQueryParams(inputs);
+ const params = this._data_query.toQueryParams(inputs);
116
+ return params;
117
118
119
build() {
0 commit comments