當前位置: 首頁>>代碼示例>>Java>>正文


Java AggregateFunction類代碼示例

本文整理匯總了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);
        }
    }
}
 
開發者ID:loye168,項目名稱:tddl5,代碼行數:16,代碼來源:AggregateCursor.java

示例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);
}
 
開發者ID:loye168,項目名稱:tddl5,代碼行數:32,代碼來源:AggregateCursor.java


注:本文中的com.taobao.tddl.executor.function.AggregateFunction類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。