You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ch...@apache.org on 2018/07/09 08:39:40 UTC

[kylin] branch master updated: minor, update TOP_N measure default encoding

This is an automated email from the ASF dual-hosted git repository.

chen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/master by this push:
     new 01c3771  minor, update TOP_N measure default encoding
01c3771 is described below

commit 01c37717043c9c038482afb2cd07d1188aad77c7
Author: chenzhx <ch...@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);