| 209 | } |
| 210 | |
| 211 | std::string toString() const { |
| 212 | return fmt::format( |
| 213 | "FileFormat[{}] TestMode[{}] commitStrategy[{}] bucketKind[{}] bucketSort[{}] multiDrivers[{}] compression[{}]", |
| 214 | dwio::common::toString((fileFormat())), |
| 215 | testModeString(testMode()), |
| 216 | commitStrategyToString(commitStrategy()), |
| 217 | HiveBucketProperty::kindString(bucketKind()), |
| 218 | bucketSort(), |
| 219 | multiDrivers(), |
| 220 | compressionKindToString(compressionKind())); |
| 221 | } |
| 222 | }; |
| 223 | |
| 224 | constexpr bool formatSupportsFilterPushdown(const FileFormat format) { |
no test coverage detected