Skip to content

Commit b20a3ca

Browse files
authored
fix(schema-compiler): set missed CUBESQL_SQL_PUSH_DOWN to true by default in convertTzForRawTimeDimension flag (#8939)
1 parent a96ed0f commit b20a3ca

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
@@ -1750,7 +1750,7 @@ const variables: Record<string, (...args: any) => any> = {
17501750
maxSourceRowLimit: () => get('CUBEJS_MAX_SOURCE_ROW_LIMIT')
17511751
.default(200000)
17521752
.asInt(),
1753-
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('false').asBoolStrict(),
1753+
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('true').asBoolStrict(),
17541754
// Deprecated section
17551755

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

0 commit comments

Comments
 (0)