You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch '1024-fix-unit-normalization-for-quantity-units-such-as-ucum-and-calendar-date-units' of https://github.com/FirelyTeam/firely-cql-sdk into 1024-fix-unit-normalization-for-quantity-units-such-as-ucum-and-calendar-date-units
// If a Query has a ListTypeSpecifier as resultTypeSpecifier but its ReturnClause has no resultTypeSpecifier, set the ReturnClause's resultTypeSpecifier to the elementType of the ListTypeSpecifier
"Setting missing ReturnClause.resultTypeSpecifier to ListTypeSpecifier.elementType to '{resultType}' on Query @ {locator}.\n{expressionKey}",
51
+
elementType,
52
+
query.locator,
53
+
self.ContextStackString);
54
+
returnClause.resultTypeSpecifier=elementType;
55
+
}
56
+
}
57
+
58
+
{
59
+
// If a ReturnClause has a TupleTypeSpecifier as resultTypeSpecifier but its Tuple has no resultTypeSpecifier, set the Tuple's resultTypeSpecifier to the ReturnClause's TupleTypeSpecifier
"Setting missing Tuple.resultTypeSpecifier to TupleTypeSpecifier to '{resultType}' on ReturnClause @ {locator}.\n{expressionKey}",
68
+
tupleTypeSpecifier,
69
+
clause.locator,
70
+
self.ContextStackString);
71
+
tuple.resultTypeSpecifier=tupleTypeSpecifier;
72
+
}
73
+
}
74
+
75
+
{
76
+
// If a Tuple has elements with missing resultTypeSpecifier but the Tuple itself has a TupleTypeSpecifier as resultTypeSpecifier, set the missing element resultTypeSpecifiers from the TupleTypeSpecifier
0 commit comments