ClickHouse/dbms/include/DB/Core/ColumnNames.h
2010-03-04 19:20:28 +00:00

16 lines
178 B
C++

#ifndef DBMS_CORE_COLUMN_NAMES_H
#define DBMS_CORE_COLUMN_NAMES_H
#include <vector>
#include <string>
namespace DB
{
typedef std::vector<std::string> ColumnNames;
}
#endif