use polars_buffer::Buffer;
use polars_core::prelude::*;
use polars_io::ipc::IpcScanOptions;
use polars_utils::pl_path::PlRefPath;
use crate::prelude::*;
impl LazyFrame {
pub fn scan_ipc(
path: PlRefPath,
options: IpcScanOptions,
unified_scan_args: UnifiedScanArgs,
) -> PolarsResult<Self> {
Self::scan_ipc_sources(
ScanSources::Paths(Buffer::from_iter([path])),
options,
unified_scan_args,
)
}
pub fn scan_ipc_sources(
sources: ScanSources,
options: IpcScanOptions,
unified_scan_args: UnifiedScanArgs,
) -> PolarsResult<Self> {
let lf = DslBuilder::scan_ipc(sources, options, unified_scan_args)?
.build()
.into();
Ok(lf)
}
}