blob: e0f88e6f75c564fd25a8dd5f044f8559793a02c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#pragma once
#include "column.h"
#include "numeric.h"
namespace NClickHouse {
/**
* Represents column of Nullable(T).
*/
class TColumnNullable: public TColumn {
public:
static TIntrusivePtr<TColumnNullable> Create(TColumnRef nested);
static TIntrusivePtr<TColumnNullable> Create(TColumnRef nested, TColumnRef nulls);
/// Returns null flag at given row number.
bool IsNull(size_t n) const;
/// Returns nested column.
TColumnRef Nested() const;
public:
/// Appends content of given column to the end of current one.
void Append(TColumnRef column) override;
/// Loads column data from input stream.
bool Load(TCodedInputStream* input, size_t rows) override;
/// Saves column data to output stream.
void Save(TCodedOutputStream* output) override;
/// Returns count of rows in the column.
size_t Size() const override;
/// Makes slice of the current column.
TColumnRef Slice(size_t begin, size_t len) override;
private:
TColumnNullable(TColumnRef nested, TColumnRef nulls);
TColumnRef Nested_;
TIntrusivePtr<TColumnUInt8> Nulls_;
};
}
|