You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by zh...@apache.org on 2015/10/30 07:44:10 UTC

incubator-kylin git commit: KYLIN-1058 Remove right join during model creation

Repository: incubator-kylin
Updated Branches:
  refs/heads/2.x-staging edf93ea3f -> 3e0929354


KYLIN-1058 Remove right join during model creation


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/3e092935
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/3e092935
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/3e092935

Branch: refs/heads/2.x-staging
Commit: 3e09293549cd098f5958f763734b626b4c1d4402
Parents: edf93ea
Author: jiazhong <ji...@ebay.com>
Authored: Fri Oct 30 14:43:36 2015 +0800
Committer: jiazhong <ji...@ebay.com>
Committed: Fri Oct 30 14:43:36 2015 +0800

----------------------------------------------------------------------
 webapp/app/js/model/cubeConfig.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/3e092935/webapp/app/js/model/cubeConfig.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/model/cubeConfig.js b/webapp/app/js/model/cubeConfig.js
index c7e1b44..a647b53 100644
--- a/webapp/app/js/model/cubeConfig.js
+++ b/webapp/app/js/model/cubeConfig.js
@@ -27,8 +27,7 @@ KylinApp.constant('cubeConfig', {
   cubePartitionTypes: ['APPEND'],
   joinTypes: [
     {name: 'Left', value: 'left'},
-    {name: 'Inner', value: 'inner'},
-    {name: 'Right', value: 'right'}
+    {name: 'Inner', value: 'inner'}
   ],
   queryPriorities: [
     {name: 'NORMAL', value: 50},