From b6d437dd297673d49b6670127ac9455735ee4192 Mon Sep 17 00:00:00 2001 From: Zehua Zou Date: Mon, 29 Jun 2026 14:22:04 +0800 Subject: [PATCH] chore: remove variant outdated Work In Progress comment --- parquet-variant-compute/src/lib.rs | 10 ---------- parquet-variant-json/src/lib.rs | 7 ------- parquet-variant/src/lib.rs | 7 ------- 3 files changed, 24 deletions(-) diff --git a/parquet-variant-compute/src/lib.rs b/parquet-variant-compute/src/lib.rs index 066fe15b7c8b..e729672bd617 100644 --- a/parquet-variant-compute/src/lib.rs +++ b/parquet-variant-compute/src/lib.rs @@ -28,16 +28,6 @@ //! - [`variant_get()`]: Convert `VariantArray` (or an inner path) to a strongly-typed Arrow array. //! - [`shred_variant()`]: Shred a `VariantArray` according to the provided shredding schema //! - [`unshred_variant()`]: Unshred a `VariantArray` to pure binary variant. -//! -//! ## 🚧 Work In Progress -//! -//! This crate is under active development and is not yet ready for production use. -//! If you are interested in helping, you can find more information on the GitHub [Variant issue] -//! -//! [Variant Binary Encoding]: https://github.com/apache/parquet-format/blob/master/VariantEncoding.md -//! [Apache Parquet]: https://parquet.apache.org/ -//! [`VariantPath`]: parquet_variant::VariantPath -//! [Variant issue]: https://github.com/apache/arrow-rs/issues/6736 mod arrow_to_variant; mod cast_to_variant; diff --git a/parquet-variant-json/src/lib.rs b/parquet-variant-json/src/lib.rs index 6b42b15bd480..c393c2722d58 100644 --- a/parquet-variant-json/src/lib.rs +++ b/parquet-variant-json/src/lib.rs @@ -23,13 +23,6 @@ //! //! * See [`JsonToVariant`] trait for converting a JSON string to a Variant. //! * See [`VariantToJson`] trait for converting a Variant to a JSON string. -//! -//! ## 🚧 Work In Progress -//! -//! This crate is under active development and is not yet ready for production use. -//! If you are interested in helping, you can find more information on the GitHub [Variant issue] -//! -//! [Variant issue]: https://github.com/apache/arrow-rs/issues/6736 mod from_json; mod to_json; diff --git a/parquet-variant/src/lib.rs b/parquet-variant/src/lib.rs index a57b4709799d..2bf8c2da2487 100644 --- a/parquet-variant/src/lib.rs +++ b/parquet-variant/src/lib.rs @@ -23,13 +23,6 @@ //! ## Main APIs //! - [`Variant`]: Represents a variant value, which can be an object, list, or primitive. //! - [`VariantBuilder`]: For building `Variant` values. -//! -//! ## 🚧 Work In Progress -//! -//! This crate is under active development and is not yet ready for production use. -//! If you are interested in helping, you can find more information on the GitHub [Variant issue] -//! -//! [Variant issue]: https://github.com/apache/arrow-rs/issues/6736 mod builder; mod decoder;