We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e800b4 commit 1a949c3Copy full SHA for 1a949c3
native/core/src/parquet/parquet_support.rs
@@ -406,18 +406,6 @@ fn create_hdfs_object_store(
406
Ok((Box::new(store), path))
407
}
408
409
-/// Stub implementation when hdfs-opendal feature is not enabled
410
-#[cfg(not(feature = "hdfs-opendal"))]
411
-pub async fn write_to_hdfs_with_opendal_async(
412
- _url: &Url,
413
- _data: bytes::Bytes,
414
-) -> Result<(), object_store::Error> {
415
- Err(object_store::Error::Generic {
416
- store: "hdfs-opendal",
417
- source: "HDFS OpenDAL support is not enabled in this build".into(),
418
- })
419
-}
420
-
421
#[cfg(feature = "hdfs-opendal")]
422
fn get_name_node_uri(url: &Url) -> Result<String, object_store::Error> {
423
use std::fmt::Write;
0 commit comments