mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 05:52:05 +00:00
Fix
This commit is contained in:
parent
31d5049f80
commit
dba72bf9c5
@ -68,9 +68,6 @@
|
||||
#include <Access/AccessControl.h>
|
||||
#include <Storages/ColumnsDescription.h>
|
||||
|
||||
#include <DataTypes/DataTypeString.h>
|
||||
#include <IO/WriteBufferFromString.h>
|
||||
|
||||
#include <boost/algorithm/string/case_conv.hpp>
|
||||
#include <boost/algorithm/string/replace.hpp>
|
||||
#include <iostream>
|
||||
@ -562,11 +559,6 @@ try
|
||||
pager_cmd = ShellCommand::execute(config);
|
||||
out_buf = &pager_cmd->in;
|
||||
}
|
||||
/// We can use special buffer for query output for internal queries.
|
||||
else if (output_format_buffer)
|
||||
{
|
||||
out_buf = output_format_buffer.get();
|
||||
}
|
||||
else
|
||||
{
|
||||
out_buf = &std_out;
|
||||
|
@ -248,7 +248,6 @@ protected:
|
||||
/// The user can specify to redirect query output to a file.
|
||||
std::unique_ptr<WriteBuffer> out_file_buf;
|
||||
std::shared_ptr<IOutputFormat> output_format;
|
||||
std::unique_ptr<WriteBuffer> output_format_buffer;
|
||||
|
||||
/// The user could specify special file for server logs (stderr by default)
|
||||
std::unique_ptr<WriteBuffer> out_logs_buf;
|
||||
|
@ -87,6 +87,7 @@ static std::map<ClickHouseVersion, SettingsChangesHistory::SettingsChanges> sett
|
||||
{
|
||||
{"24.3", {{"s3_connect_timeout_ms", 1000, 1000, "Introduce new dedicated setting for s3 connection timeout"},
|
||||
{"allow_experimental_shared_merge_tree", false, true, "The setting is obsolete"},
|
||||
{"ignore_drop_queries_probability", 0, 0, "Allow to ignore drop queries in server with specified probability for testing purposes"},
|
||||
{"use_page_cache_for_disks_without_file_cache", false, false, "Added userspace page cache"},
|
||||
{"read_from_page_cache_if_exists_otherwise_bypass_cache", false, false, "Added userspace page cache"},
|
||||
{"page_cache_inject_eviction", false, false, "Added userspace page cache"},
|
||||
|
Loading…
Reference in New Issue
Block a user