mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
dbms: tiny fix [#METR-9508].
This commit is contained in:
parent
e0179cd968
commit
f1af3dadff
@ -95,9 +95,9 @@ public:
|
||||
/// Выполнить функцию над блоком.
|
||||
void execute(Block & block, const ColumnNumbers & arguments, size_t result)
|
||||
{
|
||||
block.getByPosition(result).column = new ColumnConstString(
|
||||
block.getByPosition(result).column = ColumnConstString(
|
||||
block.rowsInFirstColumn(),
|
||||
Poco::Net::DNS::hostName());
|
||||
Poco::Net::DNS::hostName()).convertToFullColumn();
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user