ClickHouse/dbms/src/Core/Row.h

19 lines
301 B
C++
Raw Normal View History

2011-09-19 01:42:16 +00:00
#pragma once
2010-03-01 16:59:51 +00:00
#include <vector>
#include <Common/AutoArray.h>
#include <Core/Field.h>
2010-03-01 16:59:51 +00:00
namespace DB
{
2017-04-30 13:50:16 +00:00
/** 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
2010-03-01 16:59:51 +00:00
*/
using Row = AutoArray<Field>;
2010-03-01 16:59:51 +00:00
}