mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
09f3d68f6e
* Try fix macos server run * Doc macos build # Please enter the commit message for your changes. Lines starting * CLICKHOUSE-3957 start wip * tests wip * wip * wip * wip * wip * wip * wip * wip * fix * fix * Making logger for clickhouse-local * fixes * wip * wip * wip * wip * clean * cf * wip * fix * Update CMakeLists.txt * Update argsToConfig.h * Update argsToConfig.cpp * Update ExtendedLogChannel.h * Update OwnPatternFormatter.cpp
11 lines
326 B
C++
11 lines
326 B
C++
#pragma once
|
|
#include <Poco/Util/Application.h>
|
|
|
|
namespace Poco::Util
|
|
{
|
|
class LayeredConfiguration;
|
|
}
|
|
|
|
/// Import extra command line arguments to configuration. These are command line arguments after --.
|
|
void argsToConfig(const Poco::Util::Application::ArgVec & argv, Poco::Util::LayeredConfiguration & config, int priority);
|