| 808 | // Type checks for public LogicalType class |
| 809 | |
| 810 | bool LogicalType::is_string() const { return impl_->type() == LogicalType::Type::STRING; } |
| 811 | bool LogicalType::is_map() const { return impl_->type() == LogicalType::Type::MAP; } |
| 812 | bool LogicalType::is_list() const { return impl_->type() == LogicalType::Type::LIST; } |
| 813 | bool LogicalType::is_enum() const { return impl_->type() == LogicalType::Type::ENUM; } |