File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ enum class ICEBERG_EXPORT FileFormatType {
3434 kAvro ,
3535 kOrc ,
3636 kPuffin ,
37- kMetadata ,
3837};
3938
4039// / \brief Convert a FileFormatType to a string
@@ -48,8 +47,6 @@ ICEBERG_EXPORT inline std::string_view ToString(FileFormatType format_type) {
4847 return " orc" ;
4948 case FileFormatType::kPuffin :
5049 return " puffin" ;
51- case FileFormatType::kMetadata :
52- return " metadata" ;
5350 }
5451}
5552
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ ReaderFactory& ReaderFactoryRegistry::GetFactory(FileFormatType format_type) {
4242 {FileFormatType::kParquet , GetNotImplementedFactory (FileFormatType::kParquet )},
4343 {FileFormatType::kOrc , GetNotImplementedFactory (FileFormatType::kOrc )},
4444 {FileFormatType::kPuffin , GetNotImplementedFactory (FileFormatType::kPuffin )},
45- {FileFormatType::kMetadata , GetNotImplementedFactory (FileFormatType::kMetadata )},
4645 };
4746 return factories.at (format_type);
4847}
You can’t perform that action at this time.
0 commit comments