mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #68527 from rschu1ze/fix-build
Fix build with `-DENABLE_LIBRARIES=0`
This commit is contained in:
commit
e0f8633fbb
@ -18,13 +18,15 @@
|
|||||||
#include <Core/Settings.h>
|
#include <Core/Settings.h>
|
||||||
#include <IO/Operators.h>
|
#include <IO/Operators.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#if USE_SIMDJSON
|
#if USE_SIMDJSON
|
||||||
#include <Common/JSONParsers/SimdJSONParser.h>
|
# include <Common/JSONParsers/SimdJSONParser.h>
|
||||||
|
#elif USE_RAPIDJSON
|
||||||
|
# include <Common/JSONParsers/RapidJSONParser.h>
|
||||||
|
#else
|
||||||
|
# include <Common/JSONParsers/DummyJSONParser.h>
|
||||||
#endif
|
#endif
|
||||||
#if USE_RAPIDJSON
|
|
||||||
#include <Common/JSONParsers/RapidJSONParser.h>
|
|
||||||
#endif
|
|
||||||
#include <Common/JSONParsers/DummyJSONParser.h>
|
|
||||||
|
|
||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
@ -105,7 +107,7 @@ SerializationPtr DataTypeObject::doGetDefaultSerialization() const
|
|||||||
switch (schema_format)
|
switch (schema_format)
|
||||||
{
|
{
|
||||||
case SchemaFormat::JSON:
|
case SchemaFormat::JSON:
|
||||||
#ifdef USE_SIMDJSON
|
#if USE_SIMDJSON
|
||||||
return std::make_shared<SerializationJSON<SimdJSONParser>>(
|
return std::make_shared<SerializationJSON<SimdJSONParser>>(
|
||||||
std::move(typed_path_serializations),
|
std::move(typed_path_serializations),
|
||||||
paths_to_skip,
|
paths_to_skip,
|
||||||
|
Loading…
Reference in New Issue
Block a user