From b78f46bf013256be5ac3a43cb204d98f2a328799 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Fri, 17 Jan 2025 17:13:49 -0800 Subject: [PATCH] migrate uses of legacy namespace folly::io::zlib (#11929) Summary: Pull Request resolved: https://github.com/facebookincubator/velox/pull/11929 Pull Request resolved: https://github.com/facebookincubator/velox/pull/10283 Pull Request resolved: https://github.com/facebookincubator/velox/pull/10282 Migrate uses of legacy namespace `folly::io::zlib` to `folly::compression::zlib`. Reviewed By: sdruzkin, michalgr, pedroerp, skrueger Differential Revision: D58821426 fbshipit-source-id: fc8f220660f64dca4887f8f1c816d88b98e28293 --- velox/dwio/dwrf/test/TestDecompression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/velox/dwio/dwrf/test/TestDecompression.cpp b/velox/dwio/dwrf/test/TestDecompression.cpp index 37b0166558ff..c2de52a9d7b2 100644 --- a/velox/dwio/dwrf/test/TestDecompression.cpp +++ b/velox/dwio/dwrf/test/TestDecompression.cpp @@ -33,7 +33,7 @@ using namespace facebook::velox::dwio::common; using namespace facebook::velox::dwrf; using namespace facebook::velox::memory; using namespace facebook::velox; -using namespace folly::io; +using namespace folly::compression; const std::string simpleFile(getExampleFilePath("simple-file.binary"));