mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
22 lines
408 B
C++
22 lines
408 B
C++
#ifndef DBMS_ROW_H
|
|
#define DBMS_ROW_H
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include <DB/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Строка или часть строки.
|
|
* Используется для хранения строк в памяти
|
|
* - при обработке запроса, для временных таблиц, для результата.
|
|
*/
|
|
typedef std::vector<Field> Row;
|
|
|
|
}
|
|
|
|
#endif
|