Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions encodings/alp/public-api.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ impl core::clone::Clone for vortex_alp::ALPArray

pub fn vortex_alp::ALPArray::clone(&self) -> vortex_alp::ALPArray

impl core::convert::AsRef<dyn vortex_array::array::Array> for vortex_alp::ALPArray
impl core::convert::AsRef<dyn vortex_array::array::DynArray> for vortex_alp::ALPArray

pub fn vortex_alp::ALPArray::as_ref(&self) -> &dyn vortex_array::array::Array
pub fn vortex_alp::ALPArray::as_ref(&self) -> &dyn vortex_array::array::DynArray

impl core::convert::From<vortex_alp::ALPArray> for vortex_array::array::ArrayRef

Expand All @@ -38,7 +38,7 @@ pub fn vortex_alp::ALPArray::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> cor

impl core::ops::deref::Deref for vortex_alp::ALPArray

pub type vortex_alp::ALPArray::Target = dyn vortex_array::array::Array
pub type vortex_alp::ALPArray::Target = dyn vortex_array::array::DynArray

pub fn vortex_alp::ALPArray::deref(&self) -> &Self::Target

Expand Down Expand Up @@ -90,9 +90,9 @@ impl core::clone::Clone for vortex_alp::ALPRDArray

pub fn vortex_alp::ALPRDArray::clone(&self) -> vortex_alp::ALPRDArray

impl core::convert::AsRef<dyn vortex_array::array::Array> for vortex_alp::ALPRDArray
impl core::convert::AsRef<dyn vortex_array::array::DynArray> for vortex_alp::ALPRDArray

pub fn vortex_alp::ALPRDArray::as_ref(&self) -> &dyn vortex_array::array::Array
pub fn vortex_alp::ALPRDArray::as_ref(&self) -> &dyn vortex_array::array::DynArray

impl core::convert::From<vortex_alp::ALPRDArray> for vortex_array::array::ArrayRef

Expand All @@ -104,7 +104,7 @@ pub fn vortex_alp::ALPRDArray::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> c

impl core::ops::deref::Deref for vortex_alp::ALPRDArray

pub type vortex_alp::ALPRDArray::Target = dyn vortex_array::array::Array
pub type vortex_alp::ALPRDArray::Target = dyn vortex_array::array::DynArray

pub fn vortex_alp::ALPRDArray::deref(&self) -> &Self::Target

Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
use std::fmt::Debug;
use std::hash::Hash;

use vortex_array::Array;
use vortex_array::ArrayEq;
use vortex_array::ArrayHash;
use vortex_array::ArrayRef;
use vortex_array::DeserializeMetadata;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::Precision;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp/compute/compare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

use std::fmt::Debug;

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::arrays::ConstantArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp/compute/take.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::arrays::TakeExecute;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp_rd/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ use std::fmt::Debug;
use std::hash::Hash;

use itertools::Itertools;
use vortex_array::Array;
use vortex_array::ArrayEq;
use vortex_array::ArrayHash;
use vortex_array::ArrayRef;
use vortex_array::DeserializeMetadata;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::Precision;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp_rd/compute/take.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::arrays::TakeExecute;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp_rd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use num_traits::Float;
use num_traits::One;
use num_traits::PrimInt;
use rustc_hash::FxBuildHasher;
use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::arrays::PrimitiveArray;
use vortex_array::dtype::DType;
use vortex_array::dtype::NativePType;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/src/alp_rd/ops.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::scalar::Scalar;
use vortex_array::vtable::OperationsVTable;
use vortex_error::VortexExpect;
Expand Down
6 changes: 3 additions & 3 deletions encodings/bytebool/public-api.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ impl core::clone::Clone for vortex_bytebool::ByteBoolArray

pub fn vortex_bytebool::ByteBoolArray::clone(&self) -> vortex_bytebool::ByteBoolArray

impl core::convert::AsRef<dyn vortex_array::array::Array> for vortex_bytebool::ByteBoolArray
impl core::convert::AsRef<dyn vortex_array::array::DynArray> for vortex_bytebool::ByteBoolArray

pub fn vortex_bytebool::ByteBoolArray::as_ref(&self) -> &dyn vortex_array::array::Array
pub fn vortex_bytebool::ByteBoolArray::as_ref(&self) -> &dyn vortex_array::array::DynArray

impl core::convert::From<alloc::vec::Vec<bool>> for vortex_bytebool::ByteBoolArray

Expand All @@ -38,7 +38,7 @@ pub fn vortex_bytebool::ByteBoolArray::fmt(&self, f: &mut core::fmt::Formatter<'

impl core::ops::deref::Deref for vortex_bytebool::ByteBoolArray

pub type vortex_bytebool::ByteBoolArray::Target = dyn vortex_array::array::Array
pub type vortex_bytebool::ByteBoolArray::Target = dyn vortex_array::array::DynArray

pub fn vortex_bytebool::ByteBoolArray::deref(&self) -> &Self::Target

Expand Down
6 changes: 3 additions & 3 deletions encodings/datetime-parts/public-api.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ impl core::clone::Clone for vortex_datetime_parts::DateTimePartsArray

pub fn vortex_datetime_parts::DateTimePartsArray::clone(&self) -> vortex_datetime_parts::DateTimePartsArray

impl core::convert::AsRef<dyn vortex_array::array::Array> for vortex_datetime_parts::DateTimePartsArray
impl core::convert::AsRef<dyn vortex_array::array::DynArray> for vortex_datetime_parts::DateTimePartsArray

pub fn vortex_datetime_parts::DateTimePartsArray::as_ref(&self) -> &dyn vortex_array::array::Array
pub fn vortex_datetime_parts::DateTimePartsArray::as_ref(&self) -> &dyn vortex_array::array::DynArray

impl core::convert::From<vortex_datetime_parts::DateTimePartsArray> for vortex_array::array::ArrayRef

Expand All @@ -38,7 +38,7 @@ pub fn vortex_datetime_parts::DateTimePartsArray::fmt(&self, f: &mut core::fmt::

impl core::ops::deref::Deref for vortex_datetime_parts::DateTimePartsArray

pub type vortex_datetime_parts::DateTimePartsArray::Target = dyn vortex_array::array::Array
pub type vortex_datetime_parts::DateTimePartsArray::Target = dyn vortex_array::array::DynArray

pub fn vortex_datetime_parts::DateTimePartsArray::deref(&self) -> &Self::Target

Expand Down
2 changes: 1 addition & 1 deletion encodings/datetime-parts/src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
use std::fmt::Debug;
use std::hash::Hash;

use vortex_array::Array;
use vortex_array::ArrayEq;
use vortex_array::ArrayHash;
use vortex_array::ArrayRef;
use vortex_array::DeserializeMetadata;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::Precision;
Expand Down
4 changes: 2 additions & 2 deletions encodings/datetime-parts/src/compute/cast.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::builtins::ArrayBuiltins;
use vortex_array::dtype::DType;
Expand Down Expand Up @@ -35,8 +35,8 @@ impl CastReduce for DateTimePartsVTable {
#[cfg(test)]
mod tests {
use rstest::rstest;
use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::arrays::PrimitiveArray;
use vortex_array::arrays::TemporalArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/datetime-parts/src/compute/compare.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::arrays::ConstantArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/datetime-parts/src/compute/rules.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::arrays::AnyScalarFn;
use vortex_array::arrays::ConstantArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/datetime-parts/src/compute/take.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::ToCanonical;
Expand Down
2 changes: 1 addition & 1 deletion encodings/datetime-parts/src/ops.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::dtype::DType;
use vortex_array::extension::datetime::Timestamp;
use vortex_array::scalar::Scalar;
Expand Down
6 changes: 3 additions & 3 deletions encodings/decimal-byte-parts/public-api.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ impl core::clone::Clone for vortex_decimal_byte_parts::DecimalBytePartsArray

pub fn vortex_decimal_byte_parts::DecimalBytePartsArray::clone(&self) -> vortex_decimal_byte_parts::DecimalBytePartsArray

impl core::convert::AsRef<dyn vortex_array::array::Array> for vortex_decimal_byte_parts::DecimalBytePartsArray
impl core::convert::AsRef<dyn vortex_array::array::DynArray> for vortex_decimal_byte_parts::DecimalBytePartsArray

pub fn vortex_decimal_byte_parts::DecimalBytePartsArray::as_ref(&self) -> &dyn vortex_array::array::Array
pub fn vortex_decimal_byte_parts::DecimalBytePartsArray::as_ref(&self) -> &dyn vortex_array::array::DynArray

impl core::convert::From<vortex_decimal_byte_parts::DecimalBytePartsArray> for vortex_array::array::ArrayRef

Expand All @@ -28,7 +28,7 @@ pub fn vortex_decimal_byte_parts::DecimalBytePartsArray::fmt(&self, f: &mut core

impl core::ops::deref::Deref for vortex_decimal_byte_parts::DecimalBytePartsArray

pub type vortex_decimal_byte_parts::DecimalBytePartsArray::Target = dyn vortex_array::array::Array
pub type vortex_decimal_byte_parts::DecimalBytePartsArray::Target = dyn vortex_array::array::DynArray

pub fn vortex_decimal_byte_parts::DecimalBytePartsArray::deref(&self) -> &Self::Target

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::builtins::ArrayBuiltins;
use vortex_array::dtype::DType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

use Sign::Negative;
use num_traits::NumCast;
use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::arrays::ConstantArray;
use vortex_array::builtins::ArrayBuiltins;
Expand Down Expand Up @@ -140,7 +140,7 @@ where

#[cfg(test)]
mod tests {
use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::arrays::BoolArray;
use vortex_array::arrays::ConstantArray;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::arrays::TakeExecute;
use vortex_error::VortexResult;
Expand Down
4 changes: 2 additions & 2 deletions encodings/decimal-byte-parts/src/decimal_byte_parts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ mod slice;
use std::hash::Hash;

use prost::Message as _;
use vortex_array::Array;
use vortex_array::ArrayEq;
use vortex_array::ArrayHash;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::ExecutionCtx;
use vortex_array::IntoArray;
use vortex_array::Precision;
Expand Down Expand Up @@ -325,7 +325,7 @@ impl ValidityChild<DecimalBytePartsVTable> for DecimalBytePartsVTable {

#[cfg(test)]
mod tests {
use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::arrays::BoolArray;
use vortex_array::arrays::PrimitiveArray;
use vortex_array::dtype::DType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::Array;
use vortex_array::ArrayRef;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::arrays::FilterArray;
use vortex_array::arrays::FilterReduceAdaptor;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/benches/bitpacking_take.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use rand::Rng;
use rand::SeedableRng;
use rand::distr::Uniform;
use rand::prelude::StdRng;
use vortex_array::Array;
use vortex_array::DynArray;
use vortex_array::IntoArray as _;
use vortex_array::LEGACY_SESSION;
use vortex_array::RecursiveCanonical;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/benches/canonicalize_bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use std::sync::LazyLock;
use divan::Bencher;
use rand::SeedableRng;
use rand::prelude::StdRng;
use vortex_array::Array;
use vortex_array::Canonical;
use vortex_array::DynArray;
use vortex_array::IntoArray;
use vortex_array::VortexSessionExecute;
use vortex_array::arrays::ChunkedArray;
Expand Down
Loading
Loading