From bbd907713e725400df957095d5af4647b5928552 Mon Sep 17 00:00:00 2001 From: Daniel King Date: Tue, 27 Jan 2026 15:30:36 -0500 Subject: [PATCH 1/3] fix: vortex-layout doc tests require zstd Maybe I am the only one who runs `cargo test -p vortex-layout`? `ci.yml` uses `--all-features`. Signed-off-by: Daniel King --- vortex-layout/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/vortex-layout/Cargo.toml b/vortex-layout/Cargo.toml index b57815b84e9..055356e6113 100644 --- a/vortex-layout/Cargo.toml +++ b/vortex-layout/Cargo.toml @@ -61,6 +61,7 @@ tokio = { workspace = true, features = ["rt", "macros"] } vortex-array = { path = "../vortex-array", features = ["_test-harness"] } vortex-io = { path = "../vortex-io", features = ["tokio"] } vortex-utils = { workspace = true, features = ["_test-harness"] } +vortex-layout = { path = ".", features = ["zstd"] } [features] _test-harness = [] From d7e6f3471baf2243661dd751ccb1e6dd7efc2a4d Mon Sep 17 00:00:00 2001 From: Daniel King Date: Fri, 6 Feb 2026 13:05:07 -0500 Subject: [PATCH 2/3] cargo change Signed-off-by: Daniel King --- Cargo.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.lock b/Cargo.lock index ef07132bdb5..6bf31b33898 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10899,6 +10899,7 @@ dependencies = [ "vortex-error", "vortex-flatbuffers", "vortex-io", + "vortex-layout", "vortex-mask", "vortex-metrics", "vortex-pco", From 1beee9223234f9eb24972109bf0ee6a02702f6ad Mon Sep 17 00:00:00 2001 From: Daniel King Date: Fri, 6 Feb 2026 13:08:28 -0500 Subject: [PATCH 3/3] taplo Signed-off-by: Daniel King --- vortex-layout/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-layout/Cargo.toml b/vortex-layout/Cargo.toml index 055356e6113..40277b84262 100644 --- a/vortex-layout/Cargo.toml +++ b/vortex-layout/Cargo.toml @@ -60,8 +60,8 @@ rstest = { workspace = true } tokio = { workspace = true, features = ["rt", "macros"] } vortex-array = { path = "../vortex-array", features = ["_test-harness"] } vortex-io = { path = "../vortex-io", features = ["tokio"] } -vortex-utils = { workspace = true, features = ["_test-harness"] } vortex-layout = { path = ".", features = ["zstd"] } +vortex-utils = { workspace = true, features = ["_test-harness"] } [features] _test-harness = []