mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
16 lines
178 B
C++
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
|