This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch dev-1.1.2
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/dev-1.1.2 by this push:
     new fae5b6cb59 [bugfix] handle string type in TextConverter::write_column 
(#11256)
fae5b6cb59 is described below

commit fae5b6cb59da529d8b7465381ae68b18b8dcd245
Author: TengJianPing <18241664+jackte...@users.noreply.github.com>
AuthorDate: Wed Jul 27 16:46:44 2022 +0800

    [bugfix] handle string type in TextConverter::write_column (#11256)
---
 be/src/exec/text_converter.hpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/exec/text_converter.hpp b/be/src/exec/text_converter.hpp
index 1eacaadfb9..6cf4fa94a2 100644
--- a/be/src/exec/text_converter.hpp
+++ b/be/src/exec/text_converter.hpp
@@ -189,6 +189,7 @@ inline bool TextConverter::write_column(const 
SlotDescriptor* slot_desc,
         
reinterpret_cast<vectorized::ColumnHLL*>(col_ptr)->get_data().emplace_back(HyperLogLog(Slice(data,
 len)));
         break;
     }
+    case TYPE_STRING:
     case TYPE_VARCHAR:
     case TYPE_CHAR: {
         if (need_escape) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to