ClickHouse/dbms/include/DB/Core/ColumnNumbers.h
2010-06-24 19:12:10 +00:00

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