Skip to content
Closed
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
7 changes: 7 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"vortex-mask",
"vortex-utils",
"vortex-session",
"vortex-row",
"vortex-flatbuffers",
"vortex-metrics",
"vortex-io",
Expand Down Expand Up @@ -291,6 +292,7 @@ vortex-mask = { version = "0.1.0", path = "./vortex-mask", default-features = fa
vortex-metrics = { version = "0.1.0", path = "./vortex-metrics", default-features = false }
vortex-pco = { version = "0.1.0", path = "./encodings/pco", default-features = false }
vortex-proto = { version = "0.1.0", path = "./vortex-proto", default-features = false }
vortex-row = { version = "0.1.0", path = "./vortex-row", default-features = false }
vortex-runend = { version = "0.1.0", path = "./encodings/runend", default-features = false }
vortex-scan = { version = "0.1.0", path = "./vortex-scan", default-features = false }
vortex-sequence = { version = "0.1.0", path = "encodings/sequence", default-features = false }
Expand Down
20 changes: 20 additions & 0 deletions vortex-row/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "vortex-row"
authors = { workspace = true }
categories = { workspace = true }
description = "Row-oriented byte encoder for Vortex arrays, analogous to arrow-row."
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

[lints]
workspace = true

[dependencies]
vortex-session = { workspace = true }
3 changes: 3 additions & 0 deletions vortex-row/public-api.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub mod vortex_row

pub fn vortex_row::initialize(&vortex_session::VortexSession)
14 changes: 14 additions & 0 deletions vortex-row/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! Row-oriented byte encoder, analogous to Apache Arrow's `arrow-row` crate.
//!
//! Subsequent commits add the encoder, decoder helpers, and per-encoding fast paths.
//! This commit only establishes the crate skeleton and an `initialize` stub.

use vortex_session::VortexSession;

/// Register the row-encoding scalar functions on the given session.
///
/// Currently a stub: subsequent commits register `RowSize` and `RowEncode` here.
pub fn initialize(_session: &VortexSession) {}
Loading