@malloydata/malloy 0.0.222-dev241212190052 → 0.0.222-dev241212204326
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.
|
@@ -275,7 +275,11 @@ function compositeFieldUsageWithoutNonCompositeFields(compositeFieldUsage, sourc
|
|
|
275
275
|
}
|
|
276
276
|
return {
|
|
277
277
|
fields: compositeFieldUsage.fields.filter(f => isCompositeField(sourceFieldsByName[f])),
|
|
278
|
-
|
|
278
|
+
// Today it is not possible for a join to be composite, so we can safely throw
|
|
279
|
+
// away all join usage here...; if we ever allow joins in composite source
|
|
280
|
+
// inputs, then this will need to be updated to be the joinUsage with joins
|
|
281
|
+
// that are not composite filtered out...
|
|
282
|
+
joinedUsage: {},
|
|
279
283
|
};
|
|
280
284
|
}
|
|
281
285
|
//# sourceMappingURL=composite_source_utils.js.map
|