[23/48] kylin git commit: minor, fix typo

2017-09-15 Thread liyang
minor, fix typo


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

Branch: refs/heads/ranger
Commit: 5d8adbf0def0a2c034d7a1547e736c8044889fd9
Parents: fae56af
Author: lidongsjtu 
Authored: Fri Sep 8 09:51:19 2017 +0800
Committer: Roger Shi 
Committed: Fri Sep 8 10:05:44 2017 +0800

--
 .../org/apache/kylin/query/relnode/OLAPAggregateRel.java  | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/5d8adbf0/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
--
diff --git 
a/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java 
b/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
index 2c2f572..1540483 100644
--- a/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
+++ b/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
@@ -73,7 +73,7 @@ import com.google.common.collect.Sets;
 public class OLAPAggregateRel extends Aggregate implements OLAPRel {
 
 private final static Map AGGR_FUNC_MAP = new 
HashMap();
-private final static Map AGGR_FUNC_PARAM_AS_MEASTURE_MAP 
= new HashMap();
+private final static Map AGGR_FUNC_PARAM_AS_MEASURE_MAP = 
new HashMap();
 
 static {
 AGGR_FUNC_MAP.put("SUM", "SUM");
@@ -91,7 +91,7 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 Map udafs = MeasureTypeFactory.getUDAFs();
 for (String func : udafs.keySet()) {
 try {
-AGGR_FUNC_PARAM_AS_MEASTURE_MAP.put(func, 
((ParamAsMeasureCount) 
(udafs.get(func).newInstance())).getParamAsMeasureCount());
+AGGR_FUNC_PARAM_AS_MEASURE_MAP.put(func, 
((ParamAsMeasureCount) 
(udafs.get(func).newInstance())).getParamAsMeasureCount());
 } catch (Exception e) {
 throw new RuntimeException(e);
 }
@@ -110,7 +110,7 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 String sqlName = getSqlFuncName(aggCall);
 String funcName = AGGR_FUNC_MAP.get(sqlName);
 if (funcName == null) {
-throw new IllegalStateException("Don't suppoprt aggregation " + 
sqlName);
+throw new IllegalStateException("Don't support aggregation " + 
sqlName);
 }
 return funcName;
 }
@@ -254,8 +254,8 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 List columns = Lists.newArrayList();
 String funcName = getSqlFuncName(aggCall);
 int columnsCount = aggCall.getArgList().size();
-if (AGGR_FUNC_PARAM_AS_MEASTURE_MAP.containsKey(funcName)) {
-int asMeasureCnt = 
AGGR_FUNC_PARAM_AS_MEASTURE_MAP.get(funcName);
+if (AGGR_FUNC_PARAM_AS_MEASURE_MAP.containsKey(funcName)) {
+int asMeasureCnt = 
AGGR_FUNC_PARAM_AS_MEASURE_MAP.get(funcName);
 if (asMeasureCnt > 0) {
 columnsCount = asMeasureCnt;
 } else {



[23/28] kylin git commit: minor, fix typo

2017-09-09 Thread liyang
minor, fix typo


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

Branch: refs/heads/master
Commit: 5d8adbf0def0a2c034d7a1547e736c8044889fd9
Parents: fae56af
Author: lidongsjtu 
Authored: Fri Sep 8 09:51:19 2017 +0800
Committer: Roger Shi 
Committed: Fri Sep 8 10:05:44 2017 +0800

--
 .../org/apache/kylin/query/relnode/OLAPAggregateRel.java  | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/5d8adbf0/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
--
diff --git 
a/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java 
b/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
index 2c2f572..1540483 100644
--- a/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
+++ b/query/src/main/java/org/apache/kylin/query/relnode/OLAPAggregateRel.java
@@ -73,7 +73,7 @@ import com.google.common.collect.Sets;
 public class OLAPAggregateRel extends Aggregate implements OLAPRel {
 
 private final static Map AGGR_FUNC_MAP = new 
HashMap();
-private final static Map AGGR_FUNC_PARAM_AS_MEASTURE_MAP 
= new HashMap();
+private final static Map AGGR_FUNC_PARAM_AS_MEASURE_MAP = 
new HashMap();
 
 static {
 AGGR_FUNC_MAP.put("SUM", "SUM");
@@ -91,7 +91,7 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 Map udafs = MeasureTypeFactory.getUDAFs();
 for (String func : udafs.keySet()) {
 try {
-AGGR_FUNC_PARAM_AS_MEASTURE_MAP.put(func, 
((ParamAsMeasureCount) 
(udafs.get(func).newInstance())).getParamAsMeasureCount());
+AGGR_FUNC_PARAM_AS_MEASURE_MAP.put(func, 
((ParamAsMeasureCount) 
(udafs.get(func).newInstance())).getParamAsMeasureCount());
 } catch (Exception e) {
 throw new RuntimeException(e);
 }
@@ -110,7 +110,7 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 String sqlName = getSqlFuncName(aggCall);
 String funcName = AGGR_FUNC_MAP.get(sqlName);
 if (funcName == null) {
-throw new IllegalStateException("Don't suppoprt aggregation " + 
sqlName);
+throw new IllegalStateException("Don't support aggregation " + 
sqlName);
 }
 return funcName;
 }
@@ -254,8 +254,8 @@ public class OLAPAggregateRel extends Aggregate implements 
OLAPRel {
 List columns = Lists.newArrayList();
 String funcName = getSqlFuncName(aggCall);
 int columnsCount = aggCall.getArgList().size();
-if (AGGR_FUNC_PARAM_AS_MEASTURE_MAP.containsKey(funcName)) {
-int asMeasureCnt = 
AGGR_FUNC_PARAM_AS_MEASTURE_MAP.get(funcName);
+if (AGGR_FUNC_PARAM_AS_MEASURE_MAP.containsKey(funcName)) {
+int asMeasureCnt = 
AGGR_FUNC_PARAM_AS_MEASURE_MAP.get(funcName);
 if (asMeasureCnt > 0) {
 columnsCount = asMeasureCnt;
 } else {



[10/37] kylin git commit: minor, fix typo

2017-05-19 Thread liyang
minor, fix typo


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

Branch: refs/heads/master
Commit: 8a4b6b9611a25c8e0f8bf2ec99244a250d9dd91b
Parents: 32b8f2c
Author: Hongbin Ma 
Authored: Thu May 4 16:58:09 2017 +0800
Committer: Dong Li 
Committed: Thu May 4 17:00:22 2017 +0800

--
 build/script/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/8a4b6b96/build/script/build.sh
--
diff --git a/build/script/build.sh b/build/script/build.sh
index 390a2c5..458c612 100755
--- a/build/script/build.sh
+++ b/build/script/build.sh
@@ -22,7 +22,7 @@ echo "package back-end"
 dir=$(dirname ${0})
 cd ${dir}/../..
 
-mvn clean intall -DskipTests $@ || { exit 1; }
+mvn clean install -DskipTests $@ || { exit 1; }
 
 #package webapp
 echo 'package front-end'



[1/5] kylin git commit: minor, fix typo [Forced Update!]

2016-12-29 Thread billyliu
Repository: kylin
Updated Branches:
  refs/heads/yang22-hbase102 46966c4e8 -> bd0852136 (forced update)


minor, fix typo


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

Branch: refs/heads/yang22-hbase102
Commit: ab6aecd410d8463c149db0feed90433d8793f949
Parents: a27d290
Author: lidongsjtu 
Authored: Fri Dec 30 09:49:55 2016 +0800
Committer: lidongsjtu 
Committed: Fri Dec 30 09:49:55 2016 +0800

--
 build/smoke-test/smoke-test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/ab6aecd4/build/smoke-test/smoke-test.sh
--
diff --git a/build/smoke-test/smoke-test.sh b/build/smoke-test/smoke-test.sh
index f174b47..a71faf9 100755
--- a/build/smoke-test/smoke-test.sh
+++ b/build/smoke-test/smoke-test.sh
@@ -43,7 +43,7 @@ mkdir -p ${TARGET_PATH}
 KYLIN_PID=`cat "${TARGET_PATH}/*kylin*/pid"`
 if [ -n "${KYLIN_PID}" ]; then
 if ps -p ${KYLIN_PID} > /dev/null; then
-echo "Kylin is running, will be killed. (pid=${KYILN_PID})"
+echo "Kylin is running, will be killed. (pid=${KYLIN_PID})"
 kill -9 ${KYLIN_PID}
 fi
 fi



[1/5] kylin git commit: minor, fix typo [Forced Update!]

2016-12-29 Thread billyliu
Repository: kylin
Updated Branches:
  refs/heads/yang22-cdh5.7 32baec717 -> 2ec0d8dbd (forced update)


minor, fix typo


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

Branch: refs/heads/yang22-cdh5.7
Commit: ab6aecd410d8463c149db0feed90433d8793f949
Parents: a27d290
Author: lidongsjtu 
Authored: Fri Dec 30 09:49:55 2016 +0800
Committer: lidongsjtu 
Committed: Fri Dec 30 09:49:55 2016 +0800

--
 build/smoke-test/smoke-test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/ab6aecd4/build/smoke-test/smoke-test.sh
--
diff --git a/build/smoke-test/smoke-test.sh b/build/smoke-test/smoke-test.sh
index f174b47..a71faf9 100755
--- a/build/smoke-test/smoke-test.sh
+++ b/build/smoke-test/smoke-test.sh
@@ -43,7 +43,7 @@ mkdir -p ${TARGET_PATH}
 KYLIN_PID=`cat "${TARGET_PATH}/*kylin*/pid"`
 if [ -n "${KYLIN_PID}" ]; then
 if ps -p ${KYLIN_PID} > /dev/null; then
-echo "Kylin is running, will be killed. (pid=${KYILN_PID})"
+echo "Kylin is running, will be killed. (pid=${KYLIN_PID})"
 kill -9 ${KYLIN_PID}
 fi
 fi



[1/4] kylin git commit: minor, fix typo [Forced Update!]

2016-12-29 Thread billyliu
Repository: kylin
Updated Branches:
  refs/heads/yang22-hbase1.x baece09e5 -> e0cc137d7 (forced update)


minor, fix typo


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

Branch: refs/heads/yang22-hbase1.x
Commit: ab6aecd410d8463c149db0feed90433d8793f949
Parents: a27d290
Author: lidongsjtu 
Authored: Fri Dec 30 09:49:55 2016 +0800
Committer: lidongsjtu 
Committed: Fri Dec 30 09:49:55 2016 +0800

--
 build/smoke-test/smoke-test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/ab6aecd4/build/smoke-test/smoke-test.sh
--
diff --git a/build/smoke-test/smoke-test.sh b/build/smoke-test/smoke-test.sh
index f174b47..a71faf9 100755
--- a/build/smoke-test/smoke-test.sh
+++ b/build/smoke-test/smoke-test.sh
@@ -43,7 +43,7 @@ mkdir -p ${TARGET_PATH}
 KYLIN_PID=`cat "${TARGET_PATH}/*kylin*/pid"`
 if [ -n "${KYLIN_PID}" ]; then
 if ps -p ${KYLIN_PID} > /dev/null; then
-echo "Kylin is running, will be killed. (pid=${KYILN_PID})"
+echo "Kylin is running, will be killed. (pid=${KYLIN_PID})"
 kill -9 ${KYLIN_PID}
 fi
 fi



kylin git commit: minor, fix typo

2016-12-29 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/yang22 a27d29073 -> ab6aecd41


minor, fix typo


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

Branch: refs/heads/yang22
Commit: ab6aecd410d8463c149db0feed90433d8793f949
Parents: a27d290
Author: lidongsjtu 
Authored: Fri Dec 30 09:49:55 2016 +0800
Committer: lidongsjtu 
Committed: Fri Dec 30 09:49:55 2016 +0800

--
 build/smoke-test/smoke-test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/ab6aecd4/build/smoke-test/smoke-test.sh
--
diff --git a/build/smoke-test/smoke-test.sh b/build/smoke-test/smoke-test.sh
index f174b47..a71faf9 100755
--- a/build/smoke-test/smoke-test.sh
+++ b/build/smoke-test/smoke-test.sh
@@ -43,7 +43,7 @@ mkdir -p ${TARGET_PATH}
 KYLIN_PID=`cat "${TARGET_PATH}/*kylin*/pid"`
 if [ -n "${KYLIN_PID}" ]; then
 if ps -p ${KYLIN_PID} > /dev/null; then
-echo "Kylin is running, will be killed. (pid=${KYILN_PID})"
+echo "Kylin is running, will be killed. (pid=${KYLIN_PID})"
 kill -9 ${KYLIN_PID}
 fi
 fi



[1/8] kylin git commit: minor, fix typo [Forced Update!]

2016-12-12 Thread billyliu
Repository: kylin
Updated Branches:
  refs/heads/yang22-hbase1.x ff3f2ebe4 -> c1705755c (forced update)


minor, fix typo


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

Branch: refs/heads/yang22-hbase1.x
Commit: 7a9273ab706461579ad73dd01ff4ca77bf56ee3a
Parents: a6abf16
Author: lidongsjtu 
Authored: Thu Dec 8 18:42:28 2016 +0800
Committer: lidongsjtu 
Committed: Thu Dec 8 18:42:28 2016 +0800

--
 webapp/app/partials/cubeDesigner/cubeOverwriteProp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/7a9273ab/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
--
diff --git a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html 
b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
index c1a1648..b61c33a 100644
--- a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
+++ b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
@@ -59,7 +59,7 @@
 
   
 
-  Cube level properties will overwrite configuration in 
kylin.prperties
+  Cube level properties will overwrite configuration in 
kylin.properties
 
   
 



[07/15] kylin git commit: minor, fix typo

2016-12-08 Thread liyang
minor, fix typo


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

Branch: refs/heads/master-cdh5.7
Commit: 2814ce774c5bfc88f012beac7de9f46692f4aadd
Parents: 763b140
Author: lidongsjtu 
Authored: Thu Dec 8 18:42:28 2016 +0800
Committer: lidongsjtu 
Committed: Thu Dec 8 18:42:54 2016 +0800

--
 webapp/app/partials/cubeDesigner/cubeOverwriteProp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/2814ce77/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
--
diff --git a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html 
b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
index c1a1648..b61c33a 100644
--- a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
+++ b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
@@ -59,7 +59,7 @@
 
   
 
-  Cube level properties will overwrite configuration in 
kylin.prperties
+  Cube level properties will overwrite configuration in 
kylin.properties
 
   
 



kylin git commit: minor, fix typo

2016-12-08 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/master 763b14086 -> 2814ce774


minor, fix typo


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

Branch: refs/heads/master
Commit: 2814ce774c5bfc88f012beac7de9f46692f4aadd
Parents: 763b140
Author: lidongsjtu 
Authored: Thu Dec 8 18:42:28 2016 +0800
Committer: lidongsjtu 
Committed: Thu Dec 8 18:42:54 2016 +0800

--
 webapp/app/partials/cubeDesigner/cubeOverwriteProp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/2814ce77/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
--
diff --git a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html 
b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
index c1a1648..b61c33a 100644
--- a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
+++ b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
@@ -59,7 +59,7 @@
 
   
 
-  Cube level properties will overwrite configuration in 
kylin.prperties
+  Cube level properties will overwrite configuration in 
kylin.properties
 
   
 



kylin git commit: minor, fix typo

2016-12-08 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/yang22 a6abf16b4 -> 7a9273ab7


minor, fix typo


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

Branch: refs/heads/yang22
Commit: 7a9273ab706461579ad73dd01ff4ca77bf56ee3a
Parents: a6abf16
Author: lidongsjtu 
Authored: Thu Dec 8 18:42:28 2016 +0800
Committer: lidongsjtu 
Committed: Thu Dec 8 18:42:28 2016 +0800

--
 webapp/app/partials/cubeDesigner/cubeOverwriteProp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/7a9273ab/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
--
diff --git a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html 
b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
index c1a1648..b61c33a 100644
--- a/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
+++ b/webapp/app/partials/cubeDesigner/cubeOverwriteProp.html
@@ -59,7 +59,7 @@
 
   
 
-  Cube level properties will overwrite configuration in 
kylin.prperties
+  Cube level properties will overwrite configuration in 
kylin.properties
 
   
 



[03/50] [abbrv] kylin git commit: minor, fix typo

2016-12-06 Thread lidong
minor, fix typo


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

Branch: refs/heads/master-cdh5.7
Commit: c3d62e9c5e6c39771bec1bbe2660130ff2033ef3
Parents: b1448e5
Author: lidongsjtu 
Authored: Mon Nov 28 23:48:46 2016 +0800
Committer: lidongsjtu 
Committed: Mon Nov 28 23:48:46 2016 +0800

--
 build/smoke-test/testDiag.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/c3d62e9c/build/smoke-test/testDiag.py
--
diff --git a/build/smoke-test/testDiag.py b/build/smoke-test/testDiag.py
index cc932da..588864b 100644
--- a/build/smoke-test/testDiag.py
+++ b/build/smoke-test/testDiag.py
@@ -15,7 +15,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-# This is python unittest used in smoke-test.sh, aim to testing query via rest 
APIs.
+# This is python unittest used in smoke-test.sh, aim to testing diagnosis via 
rest APIs.
 
 import unittest
 import requests
@@ -40,5 +40,5 @@ class testDiag(unittest.TestCase):
 
 
 if __name__ == '__main__':
-print 'Test Diagnogis for Kylin sample.'
+print 'Test Diagnosis for Kylin sample.'
 unittest.main()



[04/50] [abbrv] kylin git commit: minor, fix typo

2016-12-06 Thread lidong
minor, fix typo


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

Branch: refs/heads/master-hbase1.x
Commit: c3d62e9c5e6c39771bec1bbe2660130ff2033ef3
Parents: b1448e5
Author: lidongsjtu 
Authored: Mon Nov 28 23:48:46 2016 +0800
Committer: lidongsjtu 
Committed: Mon Nov 28 23:48:46 2016 +0800

--
 build/smoke-test/testDiag.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/c3d62e9c/build/smoke-test/testDiag.py
--
diff --git a/build/smoke-test/testDiag.py b/build/smoke-test/testDiag.py
index cc932da..588864b 100644
--- a/build/smoke-test/testDiag.py
+++ b/build/smoke-test/testDiag.py
@@ -15,7 +15,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-# This is python unittest used in smoke-test.sh, aim to testing query via rest 
APIs.
+# This is python unittest used in smoke-test.sh, aim to testing diagnosis via 
rest APIs.
 
 import unittest
 import requests
@@ -40,5 +40,5 @@ class testDiag(unittest.TestCase):
 
 
 if __name__ == '__main__':
-print 'Test Diagnogis for Kylin sample.'
+print 'Test Diagnosis for Kylin sample.'
 unittest.main()



kylin git commit: minor, fix typo

2016-11-28 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/master b1448e578 -> c3d62e9c5


minor, fix typo


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

Branch: refs/heads/master
Commit: c3d62e9c5e6c39771bec1bbe2660130ff2033ef3
Parents: b1448e5
Author: lidongsjtu 
Authored: Mon Nov 28 23:48:46 2016 +0800
Committer: lidongsjtu 
Committed: Mon Nov 28 23:48:46 2016 +0800

--
 build/smoke-test/testDiag.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/c3d62e9c/build/smoke-test/testDiag.py
--
diff --git a/build/smoke-test/testDiag.py b/build/smoke-test/testDiag.py
index cc932da..588864b 100644
--- a/build/smoke-test/testDiag.py
+++ b/build/smoke-test/testDiag.py
@@ -15,7 +15,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-# This is python unittest used in smoke-test.sh, aim to testing query via rest 
APIs.
+# This is python unittest used in smoke-test.sh, aim to testing diagnosis via 
rest APIs.
 
 import unittest
 import requests
@@ -40,5 +40,5 @@ class testDiag(unittest.TestCase):
 
 
 if __name__ == '__main__':
-print 'Test Diagnogis for Kylin sample.'
+print 'Test Diagnosis for Kylin sample.'
 unittest.main()



[36/50] [abbrv] kylin git commit: minor, fix typo for massin

2016-05-08 Thread liyang
minor, fix typo for massin


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

Branch: refs/heads/1.5.x-HBase1.x
Commit: c1a19038d04b33d0d87b84c731c9cd44145d30c2
Parents: d11055c
Author: lidongsjtu 
Authored: Thu May 5 14:49:07 2016 +0800
Committer: lidongsjtu 
Committed: Thu May 5 14:49:07 2016 +0800

--
 .../main/java/org/apache/kylin/cube/CubeCapabilityChecker.java  | 2 +-
 .../org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/c1a19038/core-cube/src/main/java/org/apache/kylin/cube/CubeCapabilityChecker.java
--
diff --git 
a/core-cube/src/main/java/org/apache/kylin/cube/CubeCapabilityChecker.java 
b/core-cube/src/main/java/org/apache/kylin/cube/CubeCapabilityChecker.java
index bd45d07..1f16b1b 100644
--- a/core-cube/src/main/java/org/apache/kylin/cube/CubeCapabilityChecker.java
+++ b/core-cube/src/main/java/org/apache/kylin/cube/CubeCapabilityChecker.java
@@ -86,7 +86,7 @@ public class CubeCapabilityChecker {
 return result;
 }
 
-if (cube.getStorageType() == IStorageAware.ID_HBASE && 
MassInTupleFilter.constainsMassInTupleFilter(digest.filter)) {
+if (cube.getStorageType() == IStorageAware.ID_HBASE && 
MassInTupleFilter.containsMassInTupleFilter(digest.filter)) {
 logger.info("Exclude cube " + cube.getName() + " because only v2 
storage + v2 query engine supports massin");
 return result;
 

http://git-wip-us.apache.org/repos/asf/kylin/blob/c1a19038/core-metadata/src/main/java/org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java
--
diff --git 
a/core-metadata/src/main/java/org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java
 
b/core-metadata/src/main/java/org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java
index 5889c61..66c9f21 100644
--- 
a/core-metadata/src/main/java/org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java
+++ 
b/core-metadata/src/main/java/org/apache/kylin/metadata/filter/UDF/MassInTupleFilter.java
@@ -32,7 +32,6 @@ import org.apache.kylin.metadata.filter.TupleFilter;
 import org.apache.kylin.metadata.filter.function.Functions;
 import org.apache.kylin.metadata.model.ExternalFilterDesc;
 import org.apache.kylin.metadata.model.TblColRef;
-import org.apache.kylin.metadata.project.ProjectManager;
 import org.apache.kylin.metadata.tuple.IEvaluatableTuple;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -123,7 +122,7 @@ public class MassInTupleFilter extends FunctionTupleFilter {
 filterTableType = 
Functions.FilterTableType.valueOf(BytesUtil.readUTFString(buffer));
 }
 
-public static boolean constainsMassInTupleFilter(TupleFilter filter) {
+public static boolean containsMassInTupleFilter(TupleFilter filter) {
 if (filter == null)
 return false;
 
@@ -132,7 +131,7 @@ public class MassInTupleFilter extends FunctionTupleFilter {
 }
 
 for (TupleFilter child : filter.getChildren()) {
-if (constainsMassInTupleFilter(child))
+if (containsMassInTupleFilter(child))
 return true;
 }
 return false;



kylin git commit: minor, fix typo on doc title

2016-03-09 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/document 8d4be6fb4 -> 20c7e3069


minor, fix typo on doc title


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

Branch: refs/heads/document
Commit: 20c7e30695ec48c941871fa226987e6ae02ec316
Parents: 8d4be6f
Author: lidongsjtu 
Authored: Thu Mar 10 11:27:46 2016 +0800
Committer: lidongsjtu 
Committed: Thu Mar 10 11:27:46 2016 +0800

--
 website/_dev/howto_release.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/20c7e306/website/_dev/howto_release.md
--
diff --git a/website/_dev/howto_release.md b/website/_dev/howto_release.md
index 1346988..4734d2d 100644
--- a/website/_dev/howto_release.md
+++ b/website/_dev/howto_release.md
@@ -1,6 +1,6 @@
 ---
 layout: dev
-title:  How to Making a Release
+title:  How to make a Release
 categories: development
 permalink: /development/howto_release.html
 ---



kylin git commit: minor, fix typo

2016-01-08 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/1.x-staging ebecfcef8 -> abd53e124


minor, fix typo


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

Branch: refs/heads/1.x-staging
Commit: abd53e124aec4c85d509e6cdf055c2ec6ba446f7
Parents: ebecfce
Author: lidongsjtu 
Authored: Sat Jan 9 12:17:14 2016 +0800
Committer: lidongsjtu 
Committed: Sat Jan 9 12:17:19 2016 +0800

--
 docs/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/abd53e12/docs/README.md
--
diff --git a/docs/README.md b/docs/README.md
index 22b84f9..a4c802d 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,6 +1,6 @@
 # Apache Kylin Documentation
 
-__All documentations have been moved to Kylin website at:__  
+__All documens have been moved to Kylin website at:__  
 [http://kylin.apache.org/docs](http://kylin.apache.org/docs)
 
-Please visit there for furthe reference.
\ No newline at end of file
+Please visit there for further reference.



[3/3] kylin git commit: minor, fix typo

2015-12-26 Thread lidong
minor, fix typo


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

Branch: refs/heads/2.x-staging
Commit: e58326999711bef09a823026038ec3adf0acf2ad
Parents: a46a25d
Author: lidongsjtu 
Authored: Sun Dec 27 14:35:10 2015 +0800
Committer: lidongsjtu 
Committed: Sun Dec 27 14:35:10 2015 +0800

--
 webapp/app/partials/admin/admin.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/e5832699/webapp/app/partials/admin/admin.html
--
diff --git a/webapp/app/partials/admin/admin.html 
b/webapp/app/partials/admin/admin.html
index 3e063a6..0ed5ab5 100644
--- a/webapp/app/partials/admin/admin.html
+++ b/webapp/app/partials/admin/admin.html
@@ -61,7 +61,7 @@
 
   
 
-  Enable 
Cache
+  Enable 
Cache
 
   
   



kylin git commit: minor, fix typo

2015-12-26 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/2.0-rc 39e82bd89 -> d8a964b4b


minor, fix typo


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

Branch: refs/heads/2.0-rc
Commit: d8a964b4b66868a962b6fd76ffd6a0285cf194d4
Parents: 39e82bd
Author: lidongsjtu 
Authored: Sun Dec 27 15:40:46 2015 +0800
Committer: lidongsjtu 
Committed: Sun Dec 27 15:40:46 2015 +0800

--
 webapp/app/partials/admin/admin.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/d8a964b4/webapp/app/partials/admin/admin.html
--
diff --git a/webapp/app/partials/admin/admin.html 
b/webapp/app/partials/admin/admin.html
index addc8ed..59fe9ae 100644
--- a/webapp/app/partials/admin/admin.html
+++ b/webapp/app/partials/admin/admin.html
@@ -61,7 +61,7 @@
 
   
 
-  Enable 
Cache
+  Enable 
Cache
 
   
 



kylin git commit: minor, fix typo

2015-12-26 Thread lidong
Repository: kylin
Updated Branches:
  refs/heads/1.x-staging 2d60c7896 -> 54fbce4c9


minor, fix typo


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

Branch: refs/heads/1.x-staging
Commit: 54fbce4c9ddf6d374eca338945201116548bcf56
Parents: 2d60c78
Author: lidongsjtu 
Authored: Sun Dec 27 15:17:24 2015 +0800
Committer: lidongsjtu 
Committed: Sun Dec 27 15:17:24 2015 +0800

--
 webapp/app/partials/admin/admin.html | 2 +-
 website/_dev/howto_release.md| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/54fbce4c/webapp/app/partials/admin/admin.html
--
diff --git a/webapp/app/partials/admin/admin.html 
b/webapp/app/partials/admin/admin.html
index 8e32409..a51b011 100644
--- a/webapp/app/partials/admin/admin.html
+++ b/webapp/app/partials/admin/admin.html
@@ -61,7 +61,7 @@
 
   
 
-  Enable 
Cache
+  Enable 
Cache
 
   
 

http://git-wip-us.apache.org/repos/asf/kylin/blob/54fbce4c/website/_dev/howto_release.md
--
diff --git a/website/_dev/howto_release.md b/website/_dev/howto_release.md
index 6978493..f11425b 100644
--- a/website/_dev/howto_release.md
+++ b/website/_dev/howto_release.md
@@ -10,7 +10,7 @@ _Shell commands is on Mac OS X as sample._
 _For people in China, please aware using proxy to avoid potential firewall 
issue._  
 
 ## Setup Account
-Make sure you have avaliable account and privlidge for following applications:
+Make sure you have avaliable account and privilege for following applications:
 
 * Apache account: [https://id.apache.org](https://id.apache.org/)
 * Apache Kylin git repo (main cobe base): 
[https://git-wip-us.apache.org/repos/asf/kylin.git](https://git-wip-us.apache.org/repos/asf/kylin.git)