Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
643b1a7
Array VTables 5
gatesn Mar 29, 2026
5cf6f0d
Array VTables 5
gatesn Mar 30, 2026
77a8529
Array VTables 5
gatesn Mar 30, 2026
6857bdc
Array VTables 5
gatesn Mar 30, 2026
e5d0ff9
Array VTables 5
gatesn Mar 30, 2026
7c78812
Array VTables 5
gatesn Mar 30, 2026
ce18bd4
Array VTables 5
gatesn Mar 30, 2026
5aa2ba4
Array VTables 5
gatesn Mar 30, 2026
6ca133b
Array VTables 5
gatesn Mar 30, 2026
f163ba6
Array VTables 5
gatesn Mar 30, 2026
4b8ff85
Array VTables 5
gatesn Mar 30, 2026
41b3f52
Array VTables 5
gatesn Mar 30, 2026
617e8c7
Array VTables 5
gatesn Mar 30, 2026
a9f5174
fix: resolve merge conflicts and pre-existing errors
gatesn Mar 30, 2026
150df60
Array VTables 5
gatesn Mar 31, 2026
aa292e1
Array VTables 5
gatesn Mar 31, 2026
80e754d
Explorer Actions
gatesn Mar 31, 2026
9c41e0f
Explorer Actions
gatesn Mar 31, 2026
bd5083a
Explorer Actions
gatesn Mar 31, 2026
5818db9
Explorer Actions
gatesn Mar 31, 2026
522593d
Explorer Actions
gatesn Apr 1, 2026
f1a954a
ArrayRef
gatesn Apr 1, 2026
a6da277
ArrayRef
gatesn Apr 1, 2026
67aa5d8
ArrayRef
gatesn Apr 1, 2026
c5a5086
ArrayRef
gatesn Apr 1, 2026
2510ebb
ArrayRef
gatesn Apr 1, 2026
1aac167
ArrayRef
gatesn Apr 1, 2026
4c51b6d
wip: merge develop, resolve conflicts
gatesn Apr 1, 2026
368f6e6
ArrayRef
gatesn Apr 1, 2026
65a53e5
ArrayRef
gatesn Apr 1, 2026
e91bab2
ArrayRef
gatesn Apr 1, 2026
404b566
ArrayRef
gatesn Apr 1, 2026
035fb48
ArrayRef
gatesn Apr 1, 2026
80bd461
ArrayRef
gatesn Apr 1, 2026
05fc936
ArrayRef
gatesn Apr 1, 2026
c4fd913
Merge remote-tracking branch 'origin/develop' into ngates/array-vtabl…
gatesn Apr 1, 2026
92fac91
ArrayRef
gatesn Apr 1, 2026
b88954e
ArrayRef
gatesn Apr 2, 2026
f7305cd
ArrayRef
gatesn Apr 2, 2026
c3d9fed
ArrayRef
gatesn Apr 2, 2026
5a05016
merge
gatesn Apr 2, 2026
f980f65
merge
gatesn Apr 2, 2026
e90ec6d
merge
gatesn Apr 2, 2026
a2770cd
merge
gatesn Apr 2, 2026
50d4d18
merge
gatesn Apr 2, 2026
2cc0923
merge
gatesn Apr 2, 2026
273b4ae
merge
gatesn Apr 2, 2026
c4284c4
merge
gatesn Apr 2, 2026
aa20eea
merge
gatesn Apr 2, 2026
4ebb321
merge
gatesn Apr 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion benchmarks/compress-bench/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn chunked_to_vec_record_batch(
// TODO(connor)[ListView]: The rust Parquet implementation does not support writing
// `ListView` to Parquet files yet.
let converted_array = recursive_list_from_list_view(array.clone())?;
Ok(RecordBatch::try_from(converted_array.as_ref())?)
Ok(RecordBatch::try_from(&converted_array)?)
})
.collect::<anyhow::Result<Vec<_>>>()?;

Expand Down
5 changes: 3 additions & 2 deletions benchmarks/compress-bench/src/vortex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use async_trait::async_trait;
use bytes::Bytes;
use futures::StreamExt;
use futures::pin_mut;
use vortex::array::IntoArray;
use vortex::file::OpenOptionsSessionExt;
use vortex::file::WriteOptionsSessionExt;
use vortex_bench::Format;
Expand All @@ -37,7 +38,7 @@ impl Compressor for VortexCompressor {
let mut cursor = Cursor::new(&mut buf);
SESSION
.write_options()
.write(&mut cursor, uncompressed.to_array_stream())
.write(&mut cursor, uncompressed.into_array().to_array_stream())
.await?;
let elapsed = start.elapsed();

Expand All @@ -51,7 +52,7 @@ impl Compressor for VortexCompressor {
let mut cursor = Cursor::new(&mut buf);
SESSION
.write_options()
.write(&mut cursor, uncompressed.to_array_stream())
.write(&mut cursor, uncompressed.into_array().to_array_stream())
.await?;

// Now decompress
Expand Down
314 changes: 158 additions & 156 deletions encodings/alp/public-api.lock

Large diffs are not rendered by default.

Loading
Loading