Skip to content

Commit 24107d8

Browse files
committed
removed the unnecessary .trim() function
1 parent 74fb715 commit 24107d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-schema-compiler/src/adapter/SqliteQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const GRANULARITY_TO_INTERVAL = {
1616
WHEN cast(strftime('%m', ${date}) as integer) BETWEEN 4 AND 6 THEN strftime('%Y-04-01T00:00:00.000', ${date})
1717
WHEN cast(strftime('%m', ${date}) as integer) BETWEEN 7 AND 9 THEN strftime('%Y-07-01T00:00:00.000', ${date})
1818
ELSE strftime('%Y-10-01T00:00:00.000', ${date})
19-
END`.trim()
19+
END`
2020
};
2121

2222
class SqliteFilter extends BaseFilter {

0 commit comments

Comments
 (0)