ClickHouse/dbms/Columns/getLeastSuperColumn.h

13 lines
225 B
C++
Raw Normal View History

2019-05-31 12:36:44 +00:00
#pragma once
#include <Core/ColumnWithTypeAndName.h>
namespace DB
{
/// getLeastSupertype + related column changes
ColumnWithTypeAndName getLeastSuperColumn(const std::vector<const ColumnWithTypeAndName *> & columns);
2019-05-31 12:36:44 +00:00
}