mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
19 lines
244 B
C++
19 lines
244 B
C++
#ifndef DBMS_COLUMNS_COLUMNS_H
|
|
#define DBMS_COLUMNS_COLUMNS_H
|
|
|
|
#include <vector>
|
|
#include <Poco/SharedPtr.h>
|
|
#include <DB/Columns/IColumn.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
typedef std::vector<SharedPtr<IColumn> > Columns;
|
|
|
|
}
|
|
|
|
#endif
|