(
builder: &mut impl StringArrayBuilderType,
value: &str,
null_value: Option<&str>,
)
| 319 | /// Appends `value` to the string builder, or NULL if it matches `null_value`. |
| 320 | #[inline(always)] |
| 321 | fn append_part( |
| 322 | builder: &mut impl StringArrayBuilderType, |
| 323 | value: &str, |
| 324 | null_value: Option<&str>, |
| 325 | ) { |
| 326 | if null_value == Some(value) { |
| 327 | builder.append_null(); |
| 328 | } else { |
| 329 | builder.append_value(value); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | /// Optimized `string_to_array` implementation for the common case where |
| 334 | /// delimiter and null_value are scalar values. |
no test coverage detected
searching dependent graphs…