forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix](mark join) mark join column should be nullable (apache#24910)
- Loading branch information
Showing
15 changed files
with
280 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "vec/columns/column_filter_helper.h" | ||
|
||
namespace doris::vectorized { | ||
ColumnFilterHelper::ColumnFilterHelper(IColumn& column_) | ||
: _column(assert_cast<ColumnNullable&>(column_)), | ||
_value_column(assert_cast<ColumnUInt8&>(_column.get_nested_column())), | ||
_null_map_column(_column.get_null_map_column()) {} | ||
|
||
void ColumnFilterHelper::resize_fill(size_t size, doris::vectorized::UInt8 value) { | ||
_value_column.get_data().resize_fill(size, value); | ||
_null_map_column.get_data().resize_fill(size, 0); | ||
} | ||
|
||
void ColumnFilterHelper::insert_value(doris::vectorized::UInt8 value) { | ||
_value_column.get_data().push_back(value); | ||
_null_map_column.get_data().push_back(0); | ||
} | ||
|
||
void ColumnFilterHelper::insert_null() { | ||
_value_column.insert_default(); | ||
_null_map_column.get_data().push_back(1); | ||
} | ||
|
||
void ColumnFilterHelper::reserve(size_t size) { | ||
_value_column.reserve(size); | ||
_null_map_column.reserve(size); | ||
} | ||
|
||
} // namespace doris::vectorized |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#pragma once | ||
|
||
#include "column_nullable.h" | ||
|
||
namespace doris::vectorized { | ||
class ColumnFilterHelper { | ||
public: | ||
ColumnFilterHelper(IColumn&); | ||
|
||
void resize_fill(size_t size, UInt8 value); | ||
void insert_null(); | ||
void insert_value(UInt8 value); | ||
void reserve(size_t size); | ||
|
||
[[nodiscard]] size_t size() const { return _column.size(); } | ||
|
||
private: | ||
ColumnNullable& _column; | ||
ColumnUInt8& _value_column; | ||
ColumnUInt8& _null_map_column; | ||
}; | ||
} // namespace doris::vectorized |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.