-
Notifications
You must be signed in to change notification settings - Fork 321
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(experiments): add experiment run filter to compare experiments page #5738
base: main
Are you sure you want to change the base?
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
b54ce9b
to
f921977
Compare
elif isinstance(ast_operator, ast.In): | ||
return lambda left, right: operators.contains_op(right, left) | ||
elif isinstance(ast_operator, ast.NotIn): | ||
return lambda left, right: operators.not_contains_op(right, left) |
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.
Ideally, we should use TextContains, otherwise it turns into LIKE
and special characters like %
would need escaping.
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.
Good catch, I addressed with escaping since its smaller change to the current implementation. 10c5fd1
Adds filtering via query DSL to compare experiments page.
resolves #5681