-
Notifications
You must be signed in to change notification settings - Fork 9
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
Fix build & advisory issues. #521
Conversation
9f097f6
to
4c68744
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #521 +/- ##
==========================================
+ Coverage 80.69% 80.74% +0.05%
==========================================
Files 80 80
Lines 19405 19405
Branches 19405 19405
==========================================
+ Hits 15658 15669 +11
+ Misses 3322 3311 -11
Partials 425 425 ☔ View full report in Codecov by Sentry. |
Conformance comparison report
Number passing in both: 5562 Number failing in both: 833 Number passing in Base (a7993de) but now fail: 2 Number failing in Base (a7993de) but now pass: 0 Click here to see
|
aa7e0c2
to
23f5103
Compare
@@ -170,7 +170,7 @@ pub struct BasicContext<'a> { | |||
pub errors: RefCell<Vec<EvaluationError>>, | |||
} | |||
|
|||
impl<'a> BasicContext<'a> { | |||
impl BasicContext<'_> { |
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.
seems unrelated to your change but there's a clippy warning on L149:
unexpected `cfg` condition value: `serde`
warning: unexpected `cfg` condition value: `serde`
--> partiql-eval/src/eval/mod.rs:149:12
|
149 | #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
| ^^^^^^^^^^^^^^^^^ help: remove the condition
|
= note: no expected values for `feature`
= help: consider adding `serde` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
derivative
witheduce
. #518 (see below)Fix the following as reported by
cargo deny check
Cf. mcarton/rust-derivative#117
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.