| 57 | struct ARROW_COMPUTE_EXPORT KeyColumnMetadata { |
| 58 | KeyColumnMetadata() = default; |
| 59 | KeyColumnMetadata(bool is_fixed_length_in, uint32_t fixed_length_in, |
| 60 | bool is_null_type_in = false) |
| 61 | : is_fixed_length(is_fixed_length_in), |
| 62 | is_null_type(is_null_type_in), |
| 63 | fixed_length(fixed_length_in) {} |
| 64 | /// \brief True if the column is not a varying-length binary type |
| 65 | /// |
| 66 | /// If this is true the column will have a validity buffer and |
no outgoing calls
no test coverage detected