1#pragma once
2
3#include <vector>
4#include <string>
5
6
7namespace DB
8{
9
10using ColumnNumbers = std::vector<size_t>;
11
12}
13