Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit 2515b8e

Browse files
committed
minor cleanups
1 parent 7195e8d commit 2515b8e

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

dist/module.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33899,11 +33899,9 @@ function () {
3389933899
switch (tag.type) {
3390033900
case "macro":
3390133901
return tag.name + "(" + _this.target.timeColumn + ")";
33902-
break;
3390333902

3390433903
case "expression":
3390533904
return tag.params.join(" ");
33906-
break;
3390733905
}
3390833906
});
3390933907

dist/module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bigquery_query.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,6 @@ export default class BigQueryQuery {
320320
query += " AS " + alias.params[0];
321321
}
322322
return query;
323-
324323
}
325324

326325
public buildWhereClause() {
@@ -329,10 +328,8 @@ export default class BigQueryQuery {
329328
switch (tag.type) {
330329
case "macro":
331330
return tag.name + "(" + this.target.timeColumn + ")";
332-
break;
333331
case "expression":
334332
return tag.params.join(" ");
335-
break;
336333
}
337334
});
338335
if (conditions.length > 0) {

src/datasource.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ export class BigQueryDatasource {
279279
});
280280
}
281281

282-
283282
private async _waitForJobComplete(queryResults, requestId, jobId) {
284283
let sleepTimeMs = 100;
285284
console.log("New job id: ", jobId);

0 commit comments

Comments
 (0)