mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
25 lines
346 B
C++
25 lines
346 B
C++
#ifndef DBMS_COLUMN_H
|
|
#define DBMS_COLUMN_H
|
|
|
|
#include <string>
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
#include <DB/ColumnType.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Столбец - часть ColumnGroup, которая, в свою очередь - часть таблицы
|
|
*/
|
|
struct Column
|
|
{
|
|
std::string name;
|
|
Poco::SharedPtr<IColumnType> type;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|