Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen5959 committed Jan 13, 2025
1 parent d592b75 commit 5b57f6c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/utils/queryBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ export class CorrelationQueryBuilder {
getCorrelationQuery() {
const query =
this.selectedFields &&
/* eslint-disable no-useless-escape */
`select ${this.selectedFields
.map((field) => {
const [streamName, fieldName] = field.split('.');
Expand All @@ -142,6 +143,7 @@ export class CorrelationQueryBuilder {
}

getParseableQuery() {
/* eslint-disable no-useless-escape */
const query = `SELECT * FROM \"${this.streamNames[0]}\" LIMIT ${this.limit}`;
return {
startTime: this.startTime,
Expand Down

0 comments on commit 5b57f6c

Please sign in to comment.