mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
19 lines
301 B
C++
19 lines
301 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <Common/AutoArray.h>
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** The data type for representing one row of the table in the RAM.
|
|
* Warning! It is preferable to store column blocks instead of single rows. See Block.h
|
|
*/
|
|
|
|
using Row = AutoArray<Field>;
|
|
|
|
}
|