| 820 | // Type checks for public LogicalType class |
| 821 | |
| 822 | bool LogicalType::is_string() const { return impl_->type() == LogicalType::Type::STRING; } |
| 823 | bool LogicalType::is_map() const { return impl_->type() == LogicalType::Type::MAP; } |
| 824 | bool LogicalType::is_list() const { return impl_->type() == LogicalType::Type::LIST; } |
| 825 | bool LogicalType::is_enum() const { return impl_->type() == LogicalType::Type::ENUM; } |