| 115 | |
| 116 | template <typename T> |
| 117 | enable_if_t<has_c_type<T>::value, Status> Visit(const T& t) { |
| 118 | return HandleFixedWidth(t); |
| 119 | } |
| 120 | |
| 121 | Status Visit(const FixedSizeBinaryType& t) { return HandleFixedWidth(t); } |
| 122 | Status Visit(const Decimal32Type& t) { return HandleFixedWidth(t); } |
nothing calls this directly
no test coverage detected