| 57 | } |
| 58 | |
| 59 | TextConverter FileMetadataUtils::CreateTextConverter() const { |
| 60 | return TextConverter(/* escape_char */ '\\', |
| 61 | scan_node_->hdfs_table()->null_partition_key_value(), |
| 62 | /* check_null */ true, /* strict_mode */ true); |
| 63 | } |
| 64 | |
| 65 | void FileMetadataUtils::PopulateIcebergDefaults(Tuple* template_tuple, MemPool* pool) { |
| 66 | DCHECK(scan_node_->hdfs_table()->IsIcebergTable()); |
nothing calls this directly
no test coverage detected