Skip to content

Commit 6a4469c

Browse files
committed
Revert making parquet::data_type and parquet::arrow::schema experimental
1 parent 02573e9 commit 6a4469c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

parquet/src/arrow/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ pub use self::arrow_reader::ArrowReader;
131131
pub use self::arrow_reader::ParquetFileArrowReader;
132132
pub use self::arrow_writer::ArrowWriter;
133133

134-
#[cfg(feature = "experimental")]
135134
pub use self::schema::{
136135
arrow_to_parquet_schema, parquet_to_arrow_schema, parquet_to_arrow_schema_by_columns,
137136
parquet_to_arrow_schema_by_root_columns,

parquet/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ macro_rules! experimental_mod {
5656
#[macro_use]
5757
pub mod errors;
5858
pub mod basic;
59-
experimental_mod!(data_type, #[macro_use]);
59+
60+
#[macro_use]
61+
pub mod data_type;
6062

6163
// Exported for external use, such as benchmarks
6264
#[cfg(feature = "experimental")]

0 commit comments

Comments
 (0)