1#pragma once
2
3#include <vector>
4
5#include <Core/ColumnWithTypeAndName.h>
6
7
8namespace DB
9{
10
11using ColumnsWithTypeAndName = std::vector<ColumnWithTypeAndName>;
12
13}
14