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 <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to