This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 9185b202c5 [Fix](multi-catalog) Fix compilation errors in
`Column.java`. (#20075)
9185b202c5 is described below
commit 9185b202c58517f289ed1d53d830ab1acfd247a0
Author: Qi Chen <[email protected]>
AuthorDate: Thu May 25 23:51:29 2023 +0800
[Fix](multi-catalog) Fix compilation errors in `Column.java`. (#20075)
---
fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java
b/fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java
index 8dbf9e6792..db5c9584c3 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java
@@ -177,6 +177,13 @@ public class Column implements Writable,
GsonPostProcessable {
colUniqueId, null, null, null, null);
}
+ public Column(String name, Type type, boolean isKey, AggregateType
aggregateType, boolean isAllowNull,
+ String defaultValue, String comment, boolean visible,
DefaultValueExprDef defaultValueExprDef,
+ int colUniqueId, String realDefaultValue) {
+ this(name, type, isKey, aggregateType, isAllowNull, defaultValue,
comment, visible, defaultValueExprDef,
+ colUniqueId, realDefaultValue, null, null, null);
+ }
+
public Column(String name, Type type, boolean isKey, AggregateType
aggregateType, boolean isAllowNull,
String defaultValue, String comment, boolean visible,
DefaultValueExprDef defaultValueExprDef,
int colUniqueId, String realDefaultValue, String
genericAggregationName,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]