We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b09453b commit ffcc7e3Copy full SHA for ffcc7e3
2 files changed
datafusion/spark/src/function/map/map_func.rs
@@ -78,7 +78,10 @@ impl ScalarUDFImpl for Map {
78
}
79
80
if arg_types.is_empty() {
81
- return Ok(map_type_from_key_value_types(&DataType::Null, &DataType::Null));
+ return Ok(map_type_from_key_value_types(
82
+ &DataType::Null,
83
84
+ ));
85
86
87
let key_type = arg_types
datafusion/spark/src/function/map/mod.rs
@@ -15,9 +15,9 @@
15
// specific language governing permissions and limitations
16
// under the License.
17
18
-pub mod map_func;
19
pub mod map_from_arrays;
20
pub mod map_from_entries;
+pub mod map_func;
21
pub mod str_to_map;
22
mod utils;
23
0 commit comments