You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2016/12/06 06:39:51 UTC

kylin git commit: refine sample cube, add kind=LOOKUP attr

Repository: kylin
Updated Branches:
  refs/heads/KYLIN-1875 706d6137f -> 3e12fbb74


refine sample cube, add kind=LOOKUP attr


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

Branch: refs/heads/KYLIN-1875
Commit: 3e12fbb744928704f128ace71ac5d480817946c1
Parents: 706d613
Author: Li Yang <li...@apache.org>
Authored: Tue Dec 6 14:39:43 2016 +0800
Committer: Li Yang <li...@apache.org>
Committed: Tue Dec 6 14:39:43 2016 +0800

----------------------------------------------------------------------
 examples/sample_cube/template/model_desc/kylin_sales_model.json | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/3e12fbb7/examples/sample_cube/template/model_desc/kylin_sales_model.json
----------------------------------------------------------------------
diff --git a/examples/sample_cube/template/model_desc/kylin_sales_model.json b/examples/sample_cube/template/model_desc/kylin_sales_model.json
index 2d3cfb6..cce360f 100644
--- a/examples/sample_cube/template/model_desc/kylin_sales_model.json
+++ b/examples/sample_cube/template/model_desc/kylin_sales_model.json
@@ -18,6 +18,7 @@
   }, {
     "table" : "DEFAULT.KYLIN_ACCOUNT",
     "alias" : "BUYER_ACCOUNT",
+    "kind" : "LOOKUP",
     "join" : {
       "type" : "inner",
       "primary_key" : [ "ACCOUNT_ID" ],
@@ -26,6 +27,7 @@
   }, {
     "table" : "DEFAULT.KYLIN_ACCOUNT",
     "alias" : "SELLER_ACCOUNT",
+    "kind" : "LOOKUP",
     "join" : {
       "type" : "inner",
       "primary_key" : [ "ACCOUNT_ID" ],
@@ -34,6 +36,7 @@
   }, {
     "table" : "DEFAULT.KYLIN_COUNTRY",
     "alias" : "BUYER_COUNTRY",
+    "kind" : "LOOKUP",
     "join" : {
       "type" : "inner",
       "primary_key" : [ "COUNTRY" ],
@@ -42,6 +45,7 @@
   }, {
     "table" : "DEFAULT.KYLIN_COUNTRY",
     "alias" : "SELLER_COUNTRY",
+    "kind" : "LOOKUP",
     "join" : {
       "type" : "inner",
       "primary_key" : [ "COUNTRY" ],