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 c24fcd13cd1c6a9a187584e4f70a7e2f8a2319cb
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

Reply via email to