File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- # MongoDB Arrow Connector
1
+ # MongoDB Apache Arrow Connector
2
2
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.
4
4
5
5
Licensed under the Apache 2.0 license.
6
6
Original file line number Diff line number Diff line change 4
4
//! This crate allows reading and writing MongoDB data in the Apache Arrow format.
5
5
//! Data is read as `RecordBatch`es from a MongoDB database using the aggregation
6
6
//! 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.
8
8
9
9
/// MongoDB reader
10
10
pub mod reader;
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ impl Writer {
104
104
} )
105
105
}
106
106
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
108
108
fn check_supported_schema ( fields : & Vec < Field > , coerce_types : bool ) -> Result < ( ) , ( ) > {
109
109
for field in fields {
110
110
let t = field. data_type ( ) ;
You can’t perform that action at this time.
0 commit comments