This is an automated email from the ASF dual-hosted git repository. chen pushed a commit to branch 2.4.x in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/2.4.x by this push: new dcd6ada minor, update TOP_N measure default encoding dcd6ada is described below commit dcd6adadd615dcb781cc34012ca825235e99464c Author: chenzhx <c...@apache.org> AuthorDate: Mon Jul 9 16:38:56 2018 +0800 minor, update TOP_N measure default encoding --- webapp/app/js/controllers/cubeMeasures.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/app/js/controllers/cubeMeasures.js b/webapp/app/js/controllers/cubeMeasures.js index 4d58533..6fb82f2 100644 --- a/webapp/app/js/controllers/cubeMeasures.js +++ b/webapp/app/js/controllers/cubeMeasures.js @@ -77,7 +77,7 @@ KylinApp.controller('CubeMeasuresCtrl', function ($scope, $modal,MetaModel,cubes if($scope.newMeasure.function.configuration==null){ var GroupBy = { name:$scope.newMeasure.function.parameter.next_parameter.value, - encoding:"dict (v1)", + encoding:"dict[v1]", valueLength:0, } $scope.convertedColumns.push(GroupBy); @@ -285,7 +285,7 @@ KylinApp.controller('CubeMeasuresCtrl', function ($scope, $modal,MetaModel,cubes $scope.addNewGroupByColumn = function () { $scope.nextGroupBy = { name:null, - encoding:"dict (v1)", + encoding:"dict[v1]", valueLength:0, } $scope.convertedColumns.push($scope.nextGroupBy);