We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640bba8 commit fc9a490Copy full SHA for fc9a490
clickhouse/columns/nullable.cpp
@@ -23,6 +23,10 @@ ColumnRef ColumnNullable::Nested() const {
23
return nested_;
24
}
25
26
+ColumnRef ColumnNullable::Nulls() const {
27
+ return nulls_;
28
+}
29
+
30
void ColumnNullable::Append(ColumnRef column) {
31
if (auto col = column->As<ColumnNullable>()) {
32
if (!col->nested_->Type()->IsEqual(nested_->Type())) {
clickhouse/columns/nullable.h
@@ -18,6 +18,9 @@ class ColumnNullable : public Column {
18
/// Returns nested column.
19
ColumnRef Nested() const;
20
21
+ /// Returns nulls column.
22
+ ColumnRef Nulls() const;
public:
/// Appends content of given column to the end of current one.
void Append(ColumnRef column) override;
0 commit comments