Skip to content

Commit a91f8d1

Browse files
committed
f
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent c0da54b commit a91f8d1

53 files changed

Lines changed: 33 additions & 300 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

encodings/alp/src/alp/array.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ impl Display for ALPData {
239239
#[derive(Clone, Debug)]
240240
pub struct ALP;
241241

242-
243242
#[derive(Clone, prost::Message)]
244243
pub struct ALPMetadata {
245244
#[prost(uint32, tag = "1")]

encodings/parquet-variant/src/vtable.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ use crate::kernel::PARENT_KERNELS;
4646
#[derive(Debug, Clone)]
4747
pub struct ParquetVariant;
4848

49-
5049
#[derive(Clone, prost::Message)]
5150
struct ParquetVariantMetadataProto {
5251
/// Whether the un-shredded `value` child is present.

vortex-array/src/aggregate_fn/session.rs

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,9 @@ impl Default for AggregateFnSession {
6262
this.register(Sum);
6363

6464
// Register the built-in aggregate kernels.
65-
this.register_aggregate_kernel(
66-
Chunked.id(),
67-
None::<AggregateFnId>,
68-
&ChunkedArrayAggregate,
69-
);
65+
this.register_aggregate_kernel(Chunked.id(), None::<AggregateFnId>, &ChunkedArrayAggregate);
7066
this.register_aggregate_kernel(Dict.id(), Some(MinMax.id()), &DictMinMaxKernel);
71-
this.register_aggregate_kernel(
72-
Dict.id(),
73-
Some(IsConstant.id()),
74-
&DictIsConstantKernel,
75-
);
67+
this.register_aggregate_kernel(Dict.id(), Some(IsConstant.id()), &DictIsConstantKernel);
7668
this.register_aggregate_kernel(Dict.id(), Some(IsSorted.id()), &DictIsSortedKernel);
7769

7870
this

vortex-array/src/arrays/bool/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ impl VTable for Bool {
193193
#[derive(Clone, Debug)]
194194
pub struct Bool;
195195

196-
197196
#[cfg(test)]
198197
mod tests {
199198
use vortex_buffer::ByteBufferMut;

vortex-array/src/arrays/chunked/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ pub type ChunkedArray = Array<Chunked>;
4949
#[derive(Clone, Debug)]
5050
pub struct Chunked;
5151

52-
5352
impl ArrayHash for ChunkedData {
5453
fn array_hash<H: Hasher>(&self, _state: &mut H, _precision: Precision) {
5554
// Chunk offsets are cached derived data. Slot 0 already stores the logical offsets array,

vortex-array/src/arrays/constant/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ pub type ConstantArray = Array<Constant>;
5252
#[derive(Clone, Debug)]
5353
pub struct Constant;
5454

55-
5655
impl ArrayHash for ConstantData {
5756
fn array_hash<H: Hasher>(&self, state: &mut H, _precision: Precision) {
5857
self.scalar.hash(state);

vortex-array/src/arrays/decimal/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ impl VTable for Decimal {
206206
#[derive(Clone, Debug)]
207207
pub struct Decimal;
208208

209-
210209
#[cfg(test)]
211210
mod tests {
212211
use vortex_buffer::ByteBufferMut;

vortex-array/src/arrays/dict/compute/rules.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
use vortex_error::VortexResult;
55

66
use crate::ArrayEq;
7-
use crate::array::VTable;
87
use crate::ArrayRef;
98
use crate::IntoArray;
109
use crate::Precision;
1110
use crate::array::ArrayView;
11+
use crate::array::VTable;
1212
use crate::arrays::Constant;
1313
use crate::arrays::ConstantArray;
1414
use crate::arrays::Dict;

vortex-array/src/arrays/dict/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ pub type DictArray = Array<Dict>;
5353
#[derive(Clone, Debug)]
5454
pub struct Dict;
5555

56-
5756
impl ArrayHash for DictData {
5857
fn array_hash<H: Hasher>(&self, _state: &mut H, _precision: Precision) {}
5958
}

vortex-array/src/arrays/extension/vtable/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,3 @@ impl VTable for Extension {
167167

168168
#[derive(Clone, Debug)]
169169
pub struct Extension;
170-

0 commit comments

Comments
 (0)