Skip to content

Commit 9482807

Browse files
authored
fix(schema-compiler): set missed CUBESQL_SQL_PUSH_DOWN to true by default in convertTzForRawTimeDimension flag (#8931)
1 parent 6fc556f commit 9482807

File tree

1 file changed

+1
-1
lines changed
  • packages/cubejs-backend-shared/src

1 file changed

+1
-1
lines changed

packages/cubejs-backend-shared/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,7 @@ const variables: Record<string, (...args: any) => any> = {
17631763
maxSourceRowLimit: () => get('CUBEJS_MAX_SOURCE_ROW_LIMIT')
17641764
.default(200000)
17651765
.asInt(),
1766-
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('false').asBoolStrict(),
1766+
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('true').asBoolStrict(),
17671767
// Deprecated section
17681768

17691769
// Support for Redis as queue & cache driver was removed in 0.36

0 commit comments

Comments
 (0)