本文整理匯總了Java中com.taobao.tddl.executor.function.AggregateFunction類的典型用法代碼示例。如果您正苦於以下問題:Java AggregateFunction類的具體用法?Java AggregateFunction怎麽用?Java AggregateFunction使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
AggregateFunction類屬於com.taobao.tddl.executor.function包,在下文中一共展示了AggregateFunction類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: putAggregateFunctionsResultInRecord
import com.taobao.tddl.executor.function.AggregateFunction; //導入依賴的package包/類
void putAggregateFunctionsResultInRecord(List<IFunction> functions, IRowSet record) {
for (IFunction f : functions) {
Integer index = this.cursorMeta.getIndex(f.getTableName(), f.getColumnName(), f.getAlias());
Object res = ((AggregateFunction) f.getExtraFunction()).getResult();
if (res instanceof Map) {
Map<String, Object> map = (Map<String, Object>) res;
for (Entry<String, Object> en : map.entrySet()) {
record.setObject(index, en.getValue());
}
} else {
record.setObject(index, res);
}
}
}
示例2: putRetColumnInMeta
import com.taobao.tddl.executor.function.AggregateFunction; //導入依賴的package包/類
void putRetColumnInMeta(ISelectable column, List<ColumnMeta> metaColumns) {
String columnName;
columnName = column.getColumnName();
DataType type = null;
// 函數在Map和Reduce過程中的返回類型可以不同
// 如Avg,map過程返回String
// reduce過程中返回數字類型
if (this.isMerge()) {
type = column.getDataType();
} else {
if (column instanceof IFunction) {
if (((IFunction) column).getFunctionType().equals(FunctionType.Aggregate)) {
type = ((AggregateFunction) ((IFunction) column).getExtraFunction()).getMapReturnType();
} else {
type = column.getDataType();
}
} else {
type = column.getDataType();
}
}
ColumnMeta cm = new ColumnMeta(ExecUtils.getLogicTableName(column.getTableName()),
columnName,
type,
column.getAlias(),
true);
metaColumns.add(cm);
}