(e: &paimon::Error)
| 1702 | } |
| 1703 | |
| 1704 | fn is_table_not_exist(e: &paimon::Error) -> bool { |
| 1705 | matches!(e, paimon::Error::TableNotExist { .. }) |
| 1706 | } |
| 1707 | |
| 1708 | /// Parse partition expressions (`col = val, ...`) into partition value maps |
| 1709 | /// suitable for `TableCommit::truncate_partitions`. |
no outgoing calls
no test coverage detected