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 2437a0f commit 33cd9f8Copy full SHA for 33cd9f8
packages/cubejs-schema-compiler/src/adapter/BaseGroupFilter.ts
@@ -1,3 +1,5 @@
1
+import R from 'ramda';
2
+
3
export class BaseGroupFilter {
4
protected readonly values: any;
5
@@ -29,7 +31,7 @@ export class BaseGroupFilter {
29
31
return null;
30
32
}
33
return `(${sql})`;
- }).filter(x => x).join(` ${this.operator.toUpperCase()} `);
34
+ }).filter(R.identity).join(` ${this.operator.toUpperCase()} `);
35
36
if (!r.length) {
37
0 commit comments