@cubejs-client/core 1.0.0 → 1.2.0
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/cubejs-client-core.esm.js +1 -1
- package/dist/cubejs-client-core.esm.js.map +1 -1
- package/dist/cubejs-client-core.js +1 -1
- package/dist/cubejs-client-core.js.map +1 -1
- package/dist/cubejs-client-core.umd.js +1 -1
- package/dist/cubejs-client-core.umd.js.map +1 -1
- package/index.d.ts +19 -1
- package/package.json +2 -2
- package/src/ResultSet.js +1 -1
- package/src/tests/ResultSet.test.js +120 -0
|
@@ -9403,7 +9403,7 @@
|
|
|
9403
9403
|
return _this2.axisValuesString(xValues);
|
|
9404
9404
|
});
|
|
9405
9405
|
var measureValue = function measureValue(row, measure) {
|
|
9406
|
-
return row[measure] || 0;
|
|
9406
|
+
return row[measure] || pivotConfig.fillWithValue || 0;
|
|
9407
9407
|
};
|
|
9408
9408
|
if (pivotConfig.fillMissingDates && pivotConfig.x.length === 1 && equals(pivotConfig.x, (query.timeDimensions || []).filter(function (td) {
|
|
9409
9409
|
return Boolean(td.granularity);
|