-
Notifications
You must be signed in to change notification settings - Fork 32
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
Expose ViewContext and page byte ranges in array reader #339
Conversation
@@ -107,5 +107,5 @@ zigzag = "0.1.0" | |||
warnings = "deny" | |||
|
|||
[workspace.lints.clippy] | |||
all = "deny" | |||
all = { level = "deny", priority = -1 } |
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.
What does this do?
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 part of us using nightly, seems like they now complain if two rules have same "priority" so you make this priority lower so it can be overriden by individual rules
@@ -300,7 +300,7 @@ pub fn unpack_single(array: &BitPackedArray, index: usize) -> VortexResult<Scala | |||
/// The caller must ensure the following invariants hold: | |||
/// * `packed.len() == (length + 1023) / 1024 * 128 * bit_width` | |||
/// * `index_to_decode < length` | |||
/// Where `length` is the length of the array/slice backed by `packed` (but is not provided to this function). | |||
/// Where `length` is the length of the array/slice backed by `packed` (but is not provided to this function). |
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.
Fix
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 also us using nightly
No description provided.