@malloydata/malloy 0.0.88-dev231003001139 → 0.0.88

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.
@@ -93,7 +93,6 @@ function getDialectFunction(name) {
93
93
  dialect: { [dialect.name]: overload.e },
94
94
  needsWindowOrderBy: overload.needsWindowOrderBy,
95
95
  between: overload.between,
96
- isSymmetric: overload.isSymmetric,
97
96
  });
98
97
  }
99
98
  }
@@ -4,7 +4,6 @@ export interface DialectFunctionOverloadDef {
4
4
  params: FunctionParameterDef[];
5
5
  e: Expr;
6
6
  needsWindowOrderBy?: boolean;
7
- isSymmetric?: boolean;
8
7
  between: {
9
8
  preceding: number | string;
10
9
  following: number | string;
@@ -282,12 +282,9 @@ class QueryField extends QueryNode {
282
282
  });
283
283
  }
284
284
  generateFunctionCallExpression(resultSet, context, frag, state) {
285
- var _a;
286
285
  const overload = frag.overload;
287
286
  const args = frag.args;
288
- const isSymmetric = (_a = frag.overload.isSymmetric) !== null && _a !== void 0 ? _a : false;
289
287
  const distinctKey = (0, malloy_types_1.expressionIsAggregate)(overload.returnType.expressionType) &&
290
- !isSymmetric &&
291
288
  this.generateDistinctKeyIfNecessary(resultSet, context, frag.structPath);
292
289
  if (distinctKey) {
293
290
  if (!context.dialect.supportsAggDistinct) {
@@ -560,7 +560,6 @@ export interface FunctionOverloadDef {
560
560
  preceding: number | string;
561
561
  following: number | string;
562
562
  };
563
- isSymmetric?: boolean;
564
563
  params: FunctionParameterDef[];
565
564
  dialect: {
566
565
  [dialect: string]: Expr;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.88-dev231003001139",
3
+ "version": "0.0.88",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",