| 590 | } |
| 591 | |
| 592 | LogicalType::Type::type LogicalTypeId(const ColumnDescriptor* descr) { |
| 593 | if (const auto& logical_type = descr->logical_type()) { |
| 594 | return logical_type->type(); |
| 595 | } |
| 596 | return LogicalType::Type::NONE; |
| 597 | } |
| 598 | LogicalType::Type::type LogicalTypeId(const Statistics& stats) { |
| 599 | return LogicalTypeId(stats.descr()); |
| 600 | } |
no test coverage detected