-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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(rust): add env
locked metadata functions
#16719
Conversation
And CI is failing. You have a lint error. |
6bb79bf
to
c9e45ec
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #16719 +/- ##
==========================================
- Coverage 81.49% 81.38% -0.11%
==========================================
Files 1416 1415 -1
Lines 186880 186429 -451
Branches 3023 2776 -247
==========================================
- Hits 152289 151729 -560
- Misses 34059 34180 +121
+ Partials 532 520 -12 ☔ View full report in Codecov by Sentry. |
This prepares for further use of metadata. This locks several functionalities of the metadata behind the `POLARS_METADATA_FLAGS` environment variable when compiling on `debug`-mode. This is either `0` to disable all metadata, or `extensive` and `log` possibility delimited by `,`. This enables further experimental features like `extensive` use of the metadata and `log`ging of every time the metadata is used.
c9e45ec
to
df86903
Compare
CodSpeed Performance ReportMerging #16719 will improve performances by 15.86%Comparing Summary
Benchmarks breakdown
|
This prepares for further use of the metadata. This locks several functionalities of the metadata behind the
POLARS_METADATA_FLAGS
environment variable when compiling ondebug
-mode. This is either0
to disable all metadata, orextensive
andlog
possibility delimited by,
. This enables further experimental features likeextensive
use of the metadata andlog
ging of every time the metadata is used.