Skip to content

Commit f90d5b5

Browse files
committed
Arrow -> Apache Arrow
1 parent 812b6d8 commit f90d5b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# MongoDB Arrow Connector
1+
# MongoDB Apache Arrow Connector
22

3-
A Rust library for Arrow IO from and to MongoDB.
3+
A Rust library for reading and writing Apache Arrow batches from and to MongoDB.
44

55
Licensed under the Apache 2.0 license.
66

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! This crate allows reading and writing MongoDB data in the Apache Arrow format.
55
//! Data is read as `RecordBatch`es from a MongoDB database using the aggregation
66
//! framework.
7-
//! Arrow `RecordBatch`es are written to MongoDB using an insert_many into a collection.
7+
//! Apache Arrow `RecordBatch`es are written to MongoDB using an insert_many into a collection.
88
99
/// MongoDB reader
1010
pub mod reader;

src/writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ impl Writer {
104104
})
105105
}
106106

107-
/// MongoDB supports a subset of Arrow supported types, check if schema can be written
107+
/// MongoDB supports a subset of Apache Arrow supported types, check if schema can be written
108108
fn check_supported_schema(fields: &Vec<Field>, coerce_types: bool) -> Result<(), ()> {
109109
for field in fields {
110110
let t = field.data_type();

0 commit comments

Comments
 (0)