-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
feat(eap): Add support for extrapolation #6536
base: master
Are you sure you want to change the base?
Conversation
if func_param.column.column_name in self._attribute_column_names: | ||
return True | ||
return False | ||
def find_subscriptable_reference(exp: Expression) -> SubscriptableReference: |
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.
why do you need to do this? transform expressions will already iterate through every expression in the query
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.
this is to handle cases like sum(multiply(multiply(...)))
where the subscriptable isn't directly passed into the aggregate function
❌ 1 Tests Failed:
View the top 1 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
Added support for EXTRAPOLATION_MODE_SAMPLE_WEIGHTED