mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
14 lines
291 B
C++
14 lines
291 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <Core/NamesAndTypes.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
DataTypePtr getDataTypeByColumn(const IColumn & column);
|
|
void convertObjectsToTuples(NamesAndTypesList & columns_list, Block & block);
|
|
DataTypePtr getLeastCommonTypeForObject(const DataTypes & types);
|
|
|
|
}
|