mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
38b2dec354
* Move getFQDNOrHostName to base/common/ * Add argsToConfig to ya.make * Add coverage.cpp to ya.make Also remove WITH_COVERAGE from config file
10 lines
305 B
C++
10 lines
305 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
|
|
/** Get the FQDN for the local server by resolving DNS hostname - similar to calling the 'hostname' tool with the -f flag.
|
|
* If it does not work, return hostname - similar to calling 'hostname' without flags or 'uname -n'.
|
|
*/
|
|
const std::string & getFQDNOrHostName();
|