@malloydata/malloy 0.0.249-dev250326193717 → 0.0.249-dev250327152019

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.
@@ -889,7 +889,7 @@ class QueryField extends QueryNode {
889
889
  expr.dataType === 'date' ||
890
890
  expr.dataType === 'timestamp' ||
891
891
  expr.dataType === 'boolean') {
892
- if (expr.filter === null || (0, malloy_filter_1.isFilterExpression)(expr.filter)) {
892
+ if (!expr.filter || (0, malloy_filter_1.isFilterExpression)(expr.filter)) {
893
893
  return filter_compilers_1.FilterCompilers.compile(expr.dataType, expr.filter, expr.e.sql || '', this.parent.dialect);
894
894
  }
895
895
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.249-dev250326193717",
3
+ "version": "0.0.249-dev250327152019",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",
@@ -41,9 +41,9 @@
41
41
  "generate-version-file": "VERSION=$(npm pkg get version --workspaces=false | tr -d \\\")\necho \"// generated with 'generate-version-file' script; do not edit manually\\nexport const MALLOY_VERSION = '$VERSION';\" > src/version.ts"
42
42
  },
43
43
  "dependencies": {
44
- "@malloydata/malloy-filter": "^0.0.249-dev250326193717",
45
- "@malloydata/malloy-interfaces": "^0.0.249-dev250326193717",
46
- "@malloydata/malloy-tag": "^0.0.249-dev250326193717",
44
+ "@malloydata/malloy-filter": "^0.0.249-dev250327152019",
45
+ "@malloydata/malloy-interfaces": "^0.0.249-dev250327152019",
46
+ "@malloydata/malloy-tag": "^0.0.249-dev250327152019",
47
47
  "antlr4ts": "^0.5.0-alpha.4",
48
48
  "assert": "^2.0.0",
49
49
  "jest-diff": "^29.6.2",