1#pragma once
2
3#include <Core/ColumnWithTypeAndName.h>
4
5
6namespace DB
7{
8
9/// getLeastSupertype + related column changes
10ColumnWithTypeAndName getLeastSuperColumn(const std::vector<const ColumnWithTypeAndName *> & columns);
11
12}
13