-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP #1079
WIP #1079
Conversation
89df70a
to
355f79f
Compare
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the contributing guide. |
@@ -518,6 +547,17 @@ def __init__( | |||
|
|||
self._metric_to_linkable_element_sets[metric.name] = linkable_sets_for_measure | |||
|
|||
# Linkable element lookup won't work unless this loop happens after the one above. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO
@@ -83,13 +84,26 @@ def visit_metadata_spec(self, metadata_spec: MetadataSpec) -> ColumnAssociation: | |||
single_column_correlation_key=SingleColumnCorrelationKey(), | |||
) | |||
|
|||
def visit_group_by_metric_spec(self, group_by_metric_spec: GroupByMetricSpec) -> ColumnAssociation: # noqa: D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't do
@@ -137,13 +137,13 @@ def resolve_matching_item_for_filters( | |||
manifest_lookup=self._manifest_lookup, | |||
source_spec_patterns=( | |||
spec_pattern, | |||
BaseTimeGrainPattern(), | |||
BaseTimeGrainPattern(only_apply_for_metric_time=True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Validate this
Resolves #
Description