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 80d69c7 commit e850183Copy full SHA for e850183
packages/cubejs-backend-shared/src/env.ts
@@ -1848,6 +1848,9 @@ const variables: Record<string, (...args: any) => any> = {
1848
cubeStoreNoHeartBeatTimeout: () => get('CUBEJS_CUBESTORE_NO_HEART_BEAT_TIMEOUT')
1849
.default('30')
1850
.asInt(),
1851
+ cubeStoreRollingWindowJoin: () => get('CUBEJS_CUBESTORE_ROLLING_WINDOW_JOIN')
1852
+ .default('false')
1853
+ .asBoolStrict(),
1854
1855
allowUngroupedWithoutPrimaryKey: () => get('CUBEJS_ALLOW_UNGROUPED_WITHOUT_PRIMARY_KEY')
1856
.default(get('CUBESQL_SQL_PUSH_DOWN').default('true').asString())
0 commit comments