1 | #pragma once |
---|---|
2 | |
3 | #include <vector> |
4 | |
5 | #include <Common/AutoArray.h> |
6 | #include <Core/Field.h> |
7 | |
8 | |
9 | namespace DB |
10 | { |
11 | |
12 | /** The data type for representing one row of the table in the RAM. |
13 | * Warning! It is preferable to store column blocks instead of single rows. See Block.h |
14 | */ |
15 | |
16 | using Row = AutoArray<Field>; |
17 | |
18 | } |
19 |