From 501d636c78e88972a4cd42d6fe370068b7b7f915 Mon Sep 17 00:00:00 2001 From: Joe Isaacs Date: Mon, 13 Jan 2025 15:09:43 +0000 Subject: [PATCH] fix docs tests --- pyvortex/src/io.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pyvortex/src/io.rs b/pyvortex/src/io.rs index c81bb364dd..799297489e 100644 --- a/pyvortex/src/io.rs +++ b/pyvortex/src/io.rs @@ -72,21 +72,6 @@ use crate::{PyArray, TOKIO_RUNTIME}; /// null /// ] /// -/// Read just the name column, by its index: -/// -/// >>> d = vortex.io.read_path("a.vortex", projection = [1]) -/// >>> d.to_arrow_array() -/// -/// -- is_valid: all not null -/// -- child 0 type: string_view -/// [ -/// "Joseph", -/// null, -/// "Angela", -/// "Mikhail", -/// null -/// ] -/// /// /// Keep rows with an age above 35. This will read O(N_KEPT) rows, when the file format allows. ///