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:46:36 UTC

incubator-kylin git commit: Remove right join during cube creation

Repository: incubator-kylin
Updated Branches:
  refs/heads/1.x-staging 9b0d0c979 -> 23754e7f4


Remove right join during cube 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/23754e7f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/23754e7f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/23754e7f

Branch: refs/heads/1.x-staging
Commit: 23754e7f431e6f44ab673a6f2991204c5b9901e3
Parents: 9b0d0c9
Author: jiazhong <ji...@ebay.com>
Authored: Fri Oct 30 14:45:44 2015 +0800
Committer: jiazhong <ji...@ebay.com>
Committed: Fri Oct 30 14:46:16 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/23754e7f/webapp/app/js/model/cubeConfig.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/model/cubeConfig.js b/webapp/app/js/model/cubeConfig.js
index 63d7fd0..8662680 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},