We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de03dc9 commit 6dfe1fdCopy full SHA for 6dfe1fd
datafusion/src/scalar.rs
@@ -323,7 +323,7 @@ impl ScalarValue {
323
let data_type = match scalars.peek() {
324
None => {
325
return Err(DataFusionError::Internal(
326
- "empty iterator passed to ScalarValue::iter_to_array".to_string(),
+ "Empty iterator passed to ScalarValue::iter_to_array".to_string(),
327
))
328
}
329
Some(sv) => sv.get_datatype(),
@@ -1190,7 +1190,7 @@ mod tests {
1190
assert!(
1191
result
1192
.to_string()
1193
- .contains("empty iterator passed to ScalarValue::iter_to_array"),
+ .contains("Empty iterator passed to ScalarValue::iter_to_array"),
1194
"{}",
1195
1196
);
0 commit comments