Skip to content

Commit 6c1c2d1

Browse files
committed
name
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent c6f3696 commit 6c1c2d1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

encodings/fastlanes/src/bitpacking/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl ArrayPlugin for BitPackedPatchedPlugin {
8383
Ok(patched.into_array())
8484
}
8585

86-
fn supported_encoding(&self, id: &ArrayId) -> bool {
86+
fn is_supported_encoding(&self, id: &ArrayId) -> bool {
8787
id == &BitPacked::ID || id == &Patched.id()
8888
}
8989
}

vortex-array/src/array/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub trait ArrayPlugin: 'static + Send + Sync {
5757
///
5858
/// By default, this is just the [ID][Self::id] of the plugin, but
5959
/// can be overridden if this plugin instance supports reading/writing multiple arrays.
60-
fn supported_encoding(&self, id: &ArrayId) -> bool {
60+
fn is_supported_encoding(&self, id: &ArrayId) -> bool {
6161
self.id() == *id
6262
}
6363
}

vortex-array/src/serde.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ impl SerializedArray {
369369
);
370370

371371
assert!(
372-
plugin.supported_encoding(&decoded.encoding_id()),
372+
plugin.is_supported_encoding(&decoded.encoding_id()),
373373
"Array decoded from {} has incorrect encoding {}",
374374
encoding_id,
375375
decoded.encoding_id(),

0 commit comments

Comments
 (0)