Skip to content

Commit

Permalink
Back out "Deshim //folly:dynamic to //folly/json:dynamic in velox" (f…
Browse files Browse the repository at this point in the history
…acebookincubator#9197)

Summary:
build-break

Pull Request resolved: facebookincubator#9197

Original commit changeset: 9d060725cb74

Original Phabricator Diff: D53837586

Reviewed By: Yuhta

Differential Revision: D55183554

fbshipit-source-id: 4eb49ddcb7199dba2edf691551f751918c28b8f2
  • Loading branch information
mbasmanova authored and facebook-github-bot committed Mar 21, 2024
1 parent 94f52ec commit 0e65b22
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion pyvelox/pyvelox.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <velox/vector/ComplexVector.h>
#include <velox/vector/DictionaryVector.h>
#include <velox/vector/FlatVector.h>
#include "folly/json/json.h"
#include "folly/json.h"
#include "velox/vector/VariantToVector.h"

#include "context.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/common/io/IoStatistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <string>
#include <unordered_map>

#include <folly/json/dynamic.h>
#include <folly/dynamic.h>

namespace facebook::velox::io {

Expand Down
2 changes: 1 addition & 1 deletion velox/common/serialization/DeserializationRegistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include <string>
#include <type_traits>
#include "Registry.h"
#include "folly/dynamic.h"
#include "folly/hash/Hash.h"
#include "folly/json/dynamic.h"

namespace facebook {
namespace velox {
Expand Down
2 changes: 1 addition & 1 deletion velox/common/serialization/Serializable.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <type_traits>
#include "folly/Optional.h"
#include "folly/json/json.h"
#include "folly/json.h"
#include "velox/common/base/Exceptions.h"
#include "velox/common/serialization/DeserializationRegistry.h"

Expand Down
2 changes: 1 addition & 1 deletion velox/common/serialization/tests/SerializableTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "velox/common/serialization/Serializable.h"
#include <gtest/gtest.h>
#include "folly/json/json.h"
#include "folly/json.h"

using namespace ::facebook::velox;

Expand Down
2 changes: 1 addition & 1 deletion velox/dwio/dwrf/common/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "velox/dwio/dwrf/common/Config.h"

#include "folly/String.h"
#include "folly/json/dynamic.h"
#include "folly/dynamic.h"

namespace facebook::velox::dwrf {

Expand Down
2 changes: 1 addition & 1 deletion velox/dwio/dwrf/reader/FlatMapColumnReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "velox/dwio/dwrf/reader/FlatMapColumnReader.h"
#include <folly/Conv.h>
#include <folly/container/F14Set.h>
#include <folly/json/json.h>
#include <folly/json.h>

#include "velox/common/base/BitUtil.h"
#include "velox/dwio/common/FlatMapHelper.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/exec/PlanNodeStats.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
#pragma once

#include <folly/json/dynamic.h>
#include <folly/dynamic.h>
#include "velox/common/time/CpuWallTimer.h"
#include "velox/exec/Operator.h"

Expand Down
2 changes: 1 addition & 1 deletion velox/exec/fuzzer/PrestoQueryRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "velox/exec/fuzzer/PrestoQueryRunner.h"
#include <cpr/cpr.h> // @manual
#include <folly/json/json.h>
#include <folly/json.h>
#include <iostream>
#include "velox/common/base/Fs.h"
#include "velox/common/encode/Base64.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/exec/tests/TableWriteTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "folly/json/dynamic.h"
#include "folly/dynamic.h"
#include "velox/common/base/Fs.h"
#include "velox/common/base/tests/GTestUtils.h"
#include "velox/common/hyperloglog/SparseHll.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/json/JsonExtractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include "boost/algorithm/string/trim.hpp"
#include "folly/String.h"
#include "folly/json/json.h"
#include "folly/json.h"
#include "velox/common/base/Exceptions.h"
#include "velox/functions/prestosql/json/JsonPathTokenizer.h"

Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/json/JsonExtractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <string>

#include "folly/Range.h"
#include "folly/json/dynamic.h"
#include "folly/dynamic.h"

namespace facebook::velox::functions {

Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/json/SIMDJsonExtractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <string>

#include "folly/Range.h"
#include "folly/json/dynamic.h"
#include "folly/dynamic.h"
#include "velox/common/base/Exceptions.h"
#include "velox/functions/prestosql/json/JsonPathTokenizer.h"
#include "velox/functions/prestosql/json/SIMDJsonUtil.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/json/tests/JsonExtractorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "velox/functions/prestosql/json/JsonExtractor.h"

#include "folly/json/json.h"
#include "folly/json.h"
#include "gtest/gtest.h"
#include "velox/common/base/VeloxException.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <optional>
#include <string>

#include "folly/json/json.h"
#include "folly/json.h"
#include "gtest/gtest.h"
#include "velox/common/base/VeloxException.h"

Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/types/JsonType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include "folly/CPortability.h"
#include "folly/Conv.h"
#include "folly/json/json.h"
#include "folly/json.h"

#include "velox/common/base/Exceptions.h"
#include "velox/expression/EvalCtx.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/type/HugeInt.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <folly/json/dynamic.h>
#include <folly/dynamic.h>
#include <sstream>
#include <string>
#include "velox/common/base/BitUtil.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/type/StringView.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <folly/FBString.h>
#include <folly/Format.h>
#include <folly/Range.h>
#include <folly/json/dynamic.h>
#include <folly/dynamic.h>

#include <fmt/format.h>

Expand Down
2 changes: 1 addition & 1 deletion velox/type/Timestamp.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <sstream>
#include <string>

#include <folly/json/dynamic.h>
#include <folly/dynamic.h>

#include "velox/common/base/CheckedArithmetic.h"
#include "velox/type/StringView.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/type/Type.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <folly/Format.h>
#include <folly/Range.h>
#include <folly/String.h>
#include <folly/json/json.h>
#include <folly/json.h>
#include <cstdint>
#include <cstring>
#include <ctime>
Expand Down
2 changes: 1 addition & 1 deletion velox/type/Variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "velox/type/Variant.h"
#include <cfloat>
#include "folly/json/json.h"
#include "folly/json.h"
#include "velox/common/encode/Base64.h"
#include "velox/type/DecimalUtil.h"
#include "velox/type/HugeInt.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/type/Variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include <fmt/format.h>

#include "folly/json/dynamic.h"
#include "folly/dynamic.h"
#include "velox/common/base/Exceptions.h"
#include "velox/common/base/VeloxException.h"
#include "velox/type/Conversions.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/vector/BiasVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
#pragma once

#include <folly/json/dynamic.h>
#include <folly/dynamic.h>

#include "velox/common/base/SimdUtil.h"
#include "velox/common/base/VeloxException.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/vector/FlatVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <folly/container/F14Map.h>
#include <folly/container/F14Set.h>
#include <folly/json/dynamic.h>
#include <folly/dynamic.h>
#include <gflags/gflags_declare.h>

#include "velox/common/base/SimdUtil.h"
Expand Down
2 changes: 1 addition & 1 deletion velox/vector/tests/SimpleVectorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <folly/Demangle.h>
#include <folly/FileUtil.h>
#include <folly/json/dynamic.h>
#include <folly/dynamic.h>

#include "velox/common/base/tests/GTestUtils.h"
#include "velox/vector/BuilderTypeUtils.h"
Expand Down

0 comments on commit 0e65b22

Please sign in to comment.