Adding is_in operator for AttrComparison#178
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #178 +/- ##
==========================================
+ Coverage 87.95% 88.03% +0.08%
==========================================
Files 50 50
Lines 3411 3444 +33
Branches 585 596 +11
==========================================
+ Hits 3000 3032 +32
- Misses 247 248 +1
Partials 164 164 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Hi @yfukai, awesome PR, I was not familiar with I removed the handling of SQLAlchemy because today everything is processed when they are polars dataframe, maybe in the future that could be done through the ORM to avoid this additional overhead of SQL -> polars. |
|
Thank you for your review @JoOkuma! I merged the PR. |
|
Sorry I should have been a bit more careful. It looks like the filter is building an SQL at least for the SQLGraph. Let me have a closer look! |
|
In the test, |
|
For |
|
@yfukai, my bad, you're completely right and I introduced a bug into your code 😅 |
|
Hi thanks @JoOkuma! No worries, it's a great news in a sense! |
|
Oh sorry that makes the test fail... |
|
Sorry according to the test I found that |
|
No problem, thanks for the great PR @yfukai |
I found it useful to have
is_inforAttrComparisonto filter a set of tracks. I'm not sure if I'm going to a right direction, so inputs are welcome!