Skip to content

Commit

Permalink
format and modify the doc
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed Jul 9, 2024
1 parent a2179ea commit e7b6a77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions datafusion/functions/src/core/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ use std::any::Any;
use std::collections::VecDeque;
use std::sync::Arc;

use arrow::array::{
new_null_array, Array, ArrayData, ArrayRef, MapArray, StructArray,
};
use arrow::array::{new_null_array, Array, ArrayData, ArrayRef, MapArray, StructArray};
use arrow::compute::concat;
use arrow::datatypes::{DataType, Field, SchemaBuilder};
use arrow_buffer::{Buffer, ToByteSlice};
Expand Down
2 changes: 1 addition & 1 deletion datafusion/functions/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub mod expr_fn {
args,
),(
make_map,
"Returns a map created from a list of key-value pairs",
"Returns a map created from the given keys and values pairs. This function isn't efficient for large maps. Use the `map` function instead.",
args,
),(
map,
Expand Down

0 comments on commit e7b6a77

Please sign in to comment.