This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch new_join2 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 85b9d973e13d0e93477bc646e72bbd28d1533d4c Author: BiteTheDDDDt <pxl...@qq.com> AuthorDate: Wed Nov 22 14:05:08 2023 +0800 fix compile --- be/src/vec/columns/column_nothing.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/be/src/vec/columns/column_nothing.h b/be/src/vec/columns/column_nothing.h index 8a10eec8b6f..8874bb6e7ad 100644 --- a/be/src/vec/columns/column_nothing.h +++ b/be/src/vec/columns/column_nothing.h @@ -39,6 +39,11 @@ public: bool structure_equals(const IColumn& rhs) const override { return typeid(rhs) == typeid(ColumnNothing); } + + void insert_indices_from_join(const IColumn& src, const uint32_t* indices_begin, + const uint32_t* indices_end) override { + LOG(FATAL) << "insert_indices_from_join not supported in ColumnNothing"; + } }; } // namespace doris::vectorized --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org