Rich-T-kid commented on code in PR #11016: URL: https://github.com/apache/arrow-rs/pull/11016#discussion_r3958331110
########## parquet/src/encodings/mod.rs: ########## @@ -20,4 +20,10 @@ pub mod decoding; pub mod encoding; pub mod levels; -experimental!(pub(crate) mod rle); +// Keep this module declaration explicit so rustfmt discovers its source file. +// See the comment in the crate root. +#[cfg(feature = "experimental")] +#[doc(hidden)] +pub mod rle; +#[cfg(not(feature = "experimental"))] +pub(crate) mod rle; Review Comment: ah okay make sense. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
