This is an automated email from the ASF dual-hosted git repository. shaofengshi pushed a commit to branch document in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/document by this push: new 9ec20d3 KYLIN-3766 minor correction 9ec20d3 is described below commit 9ec20d35961b78eab32b7597d7c0f8a5dc68b114 Author: shaofengshi <shaofeng...@apache.org> AuthorDate: Wed Jan 30 09:35:36 2019 +0800 KYLIN-3766 minor correction --- website/_docs/tutorial/kylin_datatype.cn.md | 4 ++-- website/_docs/tutorial/kylin_datatype.md | 4 ++-- website/_docs/tutorial/kylin_function.cn.md | 8 -------- website/_docs/tutorial/kylin_function.md | 8 -------- 4 files changed, 4 insertions(+), 20 deletions(-) diff --git a/website/_docs/tutorial/kylin_datatype.cn.md b/website/_docs/tutorial/kylin_datatype.cn.md index 4467655..27fb24b 100644 --- a/website/_docs/tutorial/kylin_datatype.cn.md +++ b/website/_docs/tutorial/kylin_datatype.cn.md @@ -10,7 +10,7 @@ permalink: /cn/docs/tutorial/kylin_datatype.html | :--------- | :--------- | :--------- | :--------- | :------------------- | | ANY | CHAR | VARCHAR | STRING | BOOLEAN | | BYTE | BINARY | INT | SHORT | LONG | -| INTEGER | TINYINT | SMALLINT | BIGINT | INT4 (for test only) | -| FLOAT | REAL | DOUBLE | DECIMAL | LONG8 (for test only)| +| INTEGER | TINYINT | SMALLINT | BIGINT | | +| FLOAT | REAL | DOUBLE | DECIMAL | | | NUMERIC | DATE | TIME | DATETIME | TIMESTAMP | diff --git a/website/_docs/tutorial/kylin_datatype.md b/website/_docs/tutorial/kylin_datatype.md index f19994e..c2bede2 100644 --- a/website/_docs/tutorial/kylin_datatype.md +++ b/website/_docs/tutorial/kylin_datatype.md @@ -10,6 +10,6 @@ permalink: /docs/tutorial/kylin_datatype.html | :--------- | :--------- | :--------- | :--------- | :------------------- | | ANY | CHAR | VARCHAR | STRING | BOOLEAN | | BYTE | BINARY | INT | SHORT | LONG | -| INTEGER | TINYINT | SMALLINT | BIGINT | INT4 (for test only) | -| FLOAT | REAL | DOUBLE | DECIMAL | LONG8 (for test only)| +| INTEGER | TINYINT | SMALLINT | BIGINT | | +| FLOAT | REAL | DOUBLE | DECIMAL | | | NUMERIC | DATE | TIME | DATETIME | TIMESTAMP | \ No newline at end of file diff --git a/website/_docs/tutorial/kylin_function.cn.md b/website/_docs/tutorial/kylin_function.cn.md index ce798d7..93b239c 100644 --- a/website/_docs/tutorial/kylin_function.cn.md +++ b/website/_docs/tutorial/kylin_function.cn.md @@ -11,7 +11,6 @@ permalink: /cn/docs/tutorial/kylin_function.html [COUNT(COLUMN)](#COUNT_COLUMN) [COUNT(*)](#COUNT_) [COUNT_DISTINCT](#COUNT_DISTINCT) -[EXTENDED_COLUMN](#EXTENDED_COLUMN) [MAX](#MAX) [MIN](#MIN) [PERCENTILE](#PERCENTILE) @@ -60,13 +59,6 @@ SELECT COUNT(*) FROM kylin_sales; SELECT COUNT(DISTINCT seller_id) AS DIST_SELLER FROM kylin_sales; {% endhighlight %} -## EXTENDED_COLUMN {#EXTENDED_COLUMN} - -例子: -{% highlight Groff markup %} -SELECT test_order.order_id, test_extended_column FROM test_kylin_fact as test_kylin_fact INNER JOIN test_order as test_order ON test_kylin_fact.order_id = test_order.order_id INNER JOIN test_category_groupings as test_category_groupings ON test_kylin_fact.leaf_categ_id = test_category_groupings.leaf_categ_id AND test_kylin_fact.lstg_site_id = test_category_groupings.site_id GROUP BY test_order.order_id, test_extended_column; -{% endhighlight %} - ## MAX {#MAX} 返回一列中的最大值。NULL 值不包括在计算中。 例子: diff --git a/website/_docs/tutorial/kylin_function.md b/website/_docs/tutorial/kylin_function.md index 8a56976..60255da 100644 --- a/website/_docs/tutorial/kylin_function.md +++ b/website/_docs/tutorial/kylin_function.md @@ -11,7 +11,6 @@ permalink: /docs/tutorial/kylin_function.html [COUNT(COLUMN)](#COUNT_COLUMN) [COUNT(*)](#COUNT_) [COUNT_DISTINCT](#COUNT_DISTINCT) -[EXTENDED_COLUMN](#EXTENDED_COLUMN) [MAX](#MAX) [MIN](#MIN) [PERCENTILE](#PERCENTILE) @@ -59,13 +58,6 @@ Example: SELECT COUNT(DISTINCT seller_id) AS DIST_SELLER FROM kylin_sales; {% endhighlight %} -## EXTENDED_COLUMN {#EXTENDED_COLUMN} - -Example: -{% highlight Groff markup %} -SELECT test_order.order_id, test_extended_column FROM test_kylin_fact as test_kylin_fact INNER JOIN test_order as test_order ON test_kylin_fact.order_id = test_order.order_id INNER JOIN test_category_groupings as test_category_groupings ON test_kylin_fact.leaf_categ_id = test_category_groupings.leaf_categ_id AND test_kylin_fact.lstg_site_id = test_category_groupings.site_id GROUP BY test_order.order_id, test_extended_column; -{% endhighlight %} - ## MAX {#MAX} Returns the maximum value in a column. NULL values are not included in the calculation. Example: