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 (cube-js#8931)
  • Loading branch information
KSDaemon authored and ptiurin committed Nov 27, 2024
1 parent 235d752 commit 337b380
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 @@ -1763,7 +1763,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 337b380

Please sign in to comment.