We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bf66ec commit 9a4b7ddCopy full SHA for 9a4b7dd
programs/server/Server.cpp
@@ -2427,7 +2427,10 @@ try
2427
dns_cache_updater->start();
2428
2429
auto replicas_reconnector = ReplicasReconnector::init(global_context);
2430
+
2431
+#if USE_PARQUET
2432
ParquetFileMetaDataCache::instance()->setMaxSizeInBytes(server_settings[ServerSetting::input_format_parquet_metadata_cache_max_size]);
2433
+#endif
2434
2435
/// Set current database name before loading tables and databases because
2436
/// system logs may copy global context.
src/Processors/Formats/Impl/ParquetFileMetaDataCache.cpp
@@ -1,6 +1,6 @@
1
#include <Processors/Formats/Impl/ParquetFileMetaDataCache.h>
2
3
-#ifdef USE_PARQUET
4
5
namespace DB
6
{
0 commit comments