You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2021/08/05 06:34:22 UTC

[incubator-doris] branch master updated: [BUG][ARRAY] fix array bound bug (#6347)

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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 21f94c5d [BUG][ARRAY] fix array bound bug (#6347)
21f94c5d is described below

commit 21f94c5d6ceac34b51bfa8e25ba2859a846c5b51
Author: JinLiOnline <48...@users.noreply.github.com>
AuthorDate: Thu Aug 5 14:34:12 2021 +0800

    [BUG][ARRAY] fix array bound bug (#6347)
    
    fix #6346
---
 fe/fe-core/src/main/java/org/apache/doris/catalog/PrimitiveType.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/PrimitiveType.java b/fe/fe-core/src/main/java/org/apache/doris/catalog/PrimitiveType.java
index 989f7a0..85572fd 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/PrimitiveType.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/PrimitiveType.java
@@ -576,7 +576,7 @@ public enum PrimitiveType {
     }
 
     public static int getMaxSlotSize() {
-        return DECIMALV2.slotSize;
+        return ARRAY.slotSize;
     }
 
     /**

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