mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
16 lines
179 B
C++
16 lines
179 B
C++
#ifndef DBMS_CORE_COLUMN_NUMBERS_H
|
|
#define DBMS_CORE_COLUMN_NUMBERS_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef std::vector<size_t> ColumnNumbers;
|
|
|
|
}
|
|
|
|
#endif
|