aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Columns/getLeastSuperColumn.h
blob: cd8dc53a895b0c2af9e4ceb626d2e8a99e8d23aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <Core/ColumnWithTypeAndName.h>


namespace DB
{

/// getLeastSupertype + related column changes
ColumnWithTypeAndName getLeastSuperColumn(const std::vector<const ColumnWithTypeAndName *> & columns);

}