This is an automated email from the ASF dual-hosted git repository.
lihaopeng pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new 5f0acbd4e9 [exec](array) Add support arraySubTypes (#23629)
5f0acbd4e9 is described below
commit 5f0acbd4e903316bce2871dbdc6c8ed2a97be1c5
Author: Mryange <[email protected]>
AuthorDate: Wed Aug 30 10:58:44 2023 +0800
[exec](array) Add support arraySubTypes (#23629)
---
fe/fe-common/src/main/java/org/apache/doris/catalog/Type.java | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fe/fe-common/src/main/java/org/apache/doris/catalog/Type.java
b/fe/fe-common/src/main/java/org/apache/doris/catalog/Type.java
index f43951e803..4a3ce2a1a8 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/catalog/Type.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/catalog/Type.java
@@ -168,6 +168,9 @@ public abstract class Type {
arraySubTypes.add(CHAR);
arraySubTypes.add(VARCHAR);
arraySubTypes.add(STRING);
+ arraySubTypes.add(DECIMAL32);
+ arraySubTypes.add(DECIMAL64);
+ arraySubTypes.add(DECIMAL128);
}
public static final Set<Class> DATE_SUPPORTED_JAVA_TYPE =
Sets.newHashSet(LocalDate.class, java.util.Date.class,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]