(string: &str)
| 935 | } |
| 936 | |
| 937 | fn parse_bool(string: &str) -> Option<bool> { |
| 938 | if string.eq_ignore_ascii_case("false") { |
| 939 | Some(false) |
| 940 | } else if string.eq_ignore_ascii_case("true") { |
| 941 | Some(true) |
| 942 | } else { |
| 943 | None |
| 944 | } |
| 945 | } |
| 946 | |
| 947 | // parse the column string to an Arrow Array |
| 948 | fn build_decimal_array<T: DecimalType>( |
no outgoing calls
no test coverage detected