Skip to content

Commit

Permalink
fix(schema-compiler): set missed CUBESQL_SQL_PUSH_DOWN to true by def…
Browse files Browse the repository at this point in the history
…ault in convertTzForRawTimeDimension flag (#8939)
  • Loading branch information
KSDaemon authored Nov 13, 2024
1 parent a96ed0f commit b20a3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cubejs-backend-shared/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,7 @@ const variables: Record<string, (...args: any) => any> = {
maxSourceRowLimit: () => get('CUBEJS_MAX_SOURCE_ROW_LIMIT')
.default(200000)
.asInt(),
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('false').asBoolStrict(),
convertTzForRawTimeDimension: () => get('CUBESQL_SQL_PUSH_DOWN').default('true').asBoolStrict(),
// Deprecated section

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

0 comments on commit b20a3ca

Please sign in to comment.