@uwdata/mosaic-core 0.14.0 → 0.14.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uwdata/mosaic-core",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "Scalable and extensible linked data views.",
5
5
  "keywords": [
6
6
  "mosaic",
@@ -32,10 +32,10 @@
32
32
  "dependencies": {
33
33
  "@duckdb/duckdb-wasm": "^1.29.0",
34
34
  "@uwdata/flechette": "^2.0.0",
35
- "@uwdata/mosaic-sql": "^0.14.0"
35
+ "@uwdata/mosaic-sql": "^0.14.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@uwdata/mosaic-duckdb": "^0.14.0"
38
+ "@uwdata/mosaic-duckdb": "^0.14.1"
39
39
  },
40
- "gitHead": "a882aab60867e4e9d9738bc950aa9de32729a806"
40
+ "gitHead": "5959cb169e95bd8467e1e5d7a9b98954f09474f3"
41
41
  }
@@ -134,7 +134,7 @@ export class PreAggregator {
134
134
  */
135
135
  request(client, selection, activeClause) {
136
136
  // if not enabled, do nothing
137
- if (!this.enabled) return null;
137
+ if (!this.enabled || activeClause == null) return null;
138
138
 
139
139
  const { entries, mc, schema } = this;
140
140
  const { source } = activeClause;