From e96ed68f74940a3175916ec85b00e259ce3df6d7 Mon Sep 17 00:00:00 2001 From: Harsha Rastogi Date: Fri, 13 Dec 2024 13:11:12 -0800 Subject: [PATCH] Add new file format (#11847) Summary: Add new file format to the list Reviewed By: zzhao0, xiaoxmeng Differential Revision: D67158670 Pulled By: harsharastogi --- velox/dwio/common/Options.h | 1 + 1 file changed, 1 insertion(+) diff --git a/velox/dwio/common/Options.h b/velox/dwio/common/Options.h index f785e701b1ce..16f42f4dd2df 100644 --- a/velox/dwio/common/Options.h +++ b/velox/dwio/common/Options.h @@ -50,6 +50,7 @@ enum class FileFormat { PARQUET = 7, NIMBLE = 8, ORC = 9, + SST = 10, // rocksdb sst format }; FileFormat toFileFormat(std::string_view s);