Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datafusion/datasource/src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ pub trait FileSource: Any + Send + Sync {
/// `base` is the shared [`FileScanConfig`] this source is wrapped in; the
/// format-agnostic parts (file groups, schema, statistics, ordering,
/// projection, …) are encoded via
/// [`FileScanConfig::to_proto_conf`](crate::file_scan_config::FileScanConfig::to_proto_conf),
/// [`FileScanConfig::try_to_proto`](crate::file_scan_config::FileScanConfig::try_to_proto),
/// and the concrete source appends its format-specific fields (e.g. CSV
/// delimiter/quote) around it.
///
Expand Down
2 changes: 1 addition & 1 deletion datafusion/datasource/src/file_scan_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
pub(crate) mod sort_pushdown;

/// Shared `FileScanConfig` <-> proto conversion, gated on the `proto` feature.
/// Attaches inherent `to_proto_conf` / `from_proto_conf` / `parse_table_schema_from_proto`
/// Attaches inherent `try_to_proto` / `try_from_proto` / `parse_table_schema_from_proto`
/// helpers to [`FileScanConfig`] used by every file source's `try_to_proto` hook.
#[cfg(feature = "proto")]
pub(crate) mod proto;
Expand Down
Loading
Loading