ClickHouse/dbms/include/DB/Core/ColumnNumbers.h

16 lines
179 B
C
Raw Normal View History

2010-06-24 19:12:10 +00:00
#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