This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new ba2039ae6d fix typo (#7856)
ba2039ae6d is described below
commit ba2039ae6d9f17750bddda067a8fb8cee66f3931
Author: Huaijin <[email protected]>
AuthorDate: Thu Oct 19 05:35:28 2023 +0800
fix typo (#7856)
---
datafusion/core/src/datasource/physical_plan/file_stream.rs | 2 +-
datafusion/physical-plan/src/repartition/mod.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/core/src/datasource/physical_plan/file_stream.rs
b/datafusion/core/src/datasource/physical_plan/file_stream.rs
index 487d17d9c1..22ff3f42eb 100644
--- a/datafusion/core/src/datasource/physical_plan/file_stream.rs
+++ b/datafusion/core/src/datasource/physical_plan/file_stream.rs
@@ -112,7 +112,7 @@ enum FileStreamState {
/// The idle state, no file is currently being read
Idle,
/// Currently performing asynchronous IO to obtain a stream of RecordBatch
- /// for a given parquet file
+ /// for a given file
Open {
/// A [`FileOpenFuture`] returned by [`FileOpener::open`]
future: FileOpenFuture,
diff --git a/datafusion/physical-plan/src/repartition/mod.rs
b/datafusion/physical-plan/src/repartition/mod.rs
index d1638a0277..82801bcdfd 100644
--- a/datafusion/physical-plan/src/repartition/mod.rs
+++ b/datafusion/physical-plan/src/repartition/mod.rs
@@ -238,7 +238,7 @@ impl BatchPartitioner {
///
/// # Background
///
-/// DataFusion, like most other commercial systems, with the the
+/// DataFusion, like most other commercial systems, with the
/// notable exception of DuckDB, uses the "Exchange Operator" based
/// approach to parallelism which works well in practice given
/// sufficient care in implementation.