| 1112 | std::string LargeStringType::ToString(bool show_metadata) const { return "large_string"; } |
| 1113 | |
| 1114 | int FixedSizeBinaryType::bit_width() const { return CHAR_BIT * byte_width(); } |
| 1115 | |
| 1116 | Result<std::shared_ptr<DataType>> FixedSizeBinaryType::Make(int32_t byte_width) { |
| 1117 | if (byte_width < 0) { |