@cubejs-backend/schema-compiler 1.3.6 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/adapter/BaseQuery.js +1 -1
- package/dist/src/adapter/BaseQuery.js.map +1 -1
- package/dist/src/adapter/PreAggregations.js +1 -1
- package/dist/src/adapter/PreAggregations.js.map +1 -1
- package/dist/src/adapter/PrestodbQuery.d.ts +6 -0
- package/dist/src/adapter/PrestodbQuery.d.ts.map +1 -1
- package/dist/src/adapter/PrestodbQuery.js +21 -0
- package/dist/src/adapter/PrestodbQuery.js.map +1 -1
- package/dist/src/adapter/RedshiftQuery.d.ts +15 -0
- package/dist/src/adapter/RedshiftQuery.d.ts.map +1 -1
- package/dist/src/adapter/RedshiftQuery.js +55 -0
- package/dist/src/adapter/RedshiftQuery.js.map +1 -1
- package/dist/src/compiler/CubeEvaluator.d.ts.map +1 -1
- package/dist/src/compiler/CubeEvaluator.js +5 -1
- package/dist/src/compiler/CubeEvaluator.js.map +1 -1
- package/dist/src/compiler/CubeSymbols.d.ts +10 -3
- package/dist/src/compiler/CubeSymbols.d.ts.map +1 -1
- package/dist/src/compiler/CubeSymbols.js +52 -32
- package/dist/src/compiler/CubeSymbols.js.map +1 -1
- package/dist/src/compiler/CubeValidator.d.ts.map +1 -1
- package/dist/src/compiler/CubeValidator.js +13 -8
- package/dist/src/compiler/CubeValidator.js.map +1 -1
- package/package.json +6 -6
|
@@ -2413,7 +2413,7 @@ class BaseQuery {
|
|
|
2413
2413
|
*/
|
|
2414
2414
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2415
2415
|
dateBin(interval, source, origin) {
|
|
2416
|
-
throw new Error('Date bin function is not implemented');
|
|
2416
|
+
throw new Error('Date bin function, required for custom time dimension granularities, is not implemented for this data source');
|
|
2417
2417
|
// Different syntax possible in different DBs
|
|
2418
2418
|
}
|
|
2419
2419
|
/**
|