Repository: carbondata Updated Branches: refs/heads/master 67581cfe6 -> dfc5e8c53
[Documentation] Editorial Review Spelling correction fixed STATMENT to STATEMENT granualrity to granularity This closes #2079 Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/dfc5e8c5 Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/dfc5e8c5 Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/dfc5e8c5 Branch: refs/heads/master Commit: dfc5e8c53d87b187f358fc27a124f72107231c57 Parents: 67581cf Author: sgururajshetty <[email protected]> Authored: Tue Mar 20 11:01:11 2018 +0530 Committer: manishgupta88 <[email protected]> Committed: Wed Mar 21 15:31:48 2018 +0530 ---------------------------------------------------------------------- docs/data-management-on-carbondata.md | 2 +- docs/datamap/timeseries-datamap-guide.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/carbondata/blob/dfc5e8c5/docs/data-management-on-carbondata.md ---------------------------------------------------------------------- diff --git a/docs/data-management-on-carbondata.md b/docs/data-management-on-carbondata.md index bd4afdc..22db960 100644 --- a/docs/data-management-on-carbondata.md +++ b/docs/data-management-on-carbondata.md @@ -699,7 +699,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa LOAD DATA [LOCAL] INPATH 'folder_path' INTO TABLE [db_name.]table_name PARTITION (partition_spec) OPTIONS(property_name=property_value, ...) - INSERT INTO INTO TABLE [db_name.]table_name PARTITION (partition_spec) <SELECT STATMENT> + INSERT INTO INTO TABLE [db_name.]table_name PARTITION (partition_spec) <SELECT STATEMENT> ``` Example: http://git-wip-us.apache.org/repos/asf/carbondata/blob/dfc5e8c5/docs/datamap/timeseries-datamap-guide.md ---------------------------------------------------------------------- diff --git a/docs/datamap/timeseries-datamap-guide.md b/docs/datamap/timeseries-datamap-guide.md index 886c161..7847312 100644 --- a/docs/datamap/timeseries-datamap-guide.md +++ b/docs/datamap/timeseries-datamap-guide.md @@ -27,7 +27,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'year_granualrity'='1', + 'year_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -37,7 +37,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'month_granualrity'='1', + 'month_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -47,7 +47,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'day_granualrity'='1', + 'day_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -57,7 +57,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'hour_granualrity'='1', + 'hour_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -67,7 +67,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'minute_granualrity'='1', + 'minute_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -77,7 +77,7 @@ ON TABLE sales USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'minute_granualrity'='1', + 'minute_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -105,7 +105,7 @@ level and hour level pre-aggregate USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'day_granualrity'='1', + 'day_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex @@ -115,7 +115,7 @@ level and hour level pre-aggregate USING "timeseries" DMPROPERTIES ( 'event_time'='order_time', - 'hour_granualrity'='1', + 'hour_granularity'='1', ) AS SELECT order_time, country, sex, sum(quantity), max(quantity), count(user_id), sum(price), avg(price) FROM sales GROUP BY order_time, country, sex
