MCPcopy Create free account
hub / github.com/apache/datafusion / unicode_case

Function unicode_case

datafusion/functions/src/string/common.rs:337–343  ·  view source on GitHub ↗
(s: &str, lower: bool)

Source from the content-addressed store, hash-verified

335
336#[inline]
337fn unicode_case(s: &str, lower: bool) -> String {
338 if lower {
339 s.to_lowercase()
340 } else {
341 s.to_uppercase()
342 }
343}
344
345fn case_conversion(
346 args: &[ColumnarValue],

Callers 2

case_conversionFunction · 0.85
case_conversion_arrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…