You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2022/07/14 06:16:50 UTC

[doris] branch master updated: [doc] Fixed doc typo for materialized views

This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 190daee9f3 [doc] Fixed doc typo for materialized views
190daee9f3 is described below

commit 190daee9f3554370e7a880666799eab7d727190a
Author: 子兔Antg <57...@users.noreply.github.com>
AuthorDate: Thu Jul 14 14:16:45 2022 +0800

    [doc] Fixed doc typo for materialized views
---
 docs/zh-CN/docs/advanced/materialized-view.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/zh-CN/docs/advanced/materialized-view.md b/docs/zh-CN/docs/advanced/materialized-view.md
index 80b1871e16..799d944988 100644
--- a/docs/zh-CN/docs/advanced/materialized-view.md
+++ b/docs/zh-CN/docs/advanced/materialized-view.md
@@ -293,7 +293,7 @@ EXPLAIN SELECT store_id, sum(sale_amt) FROM sales_records GROUP BY store_id;
 
 假设用户的原始广告点击数据存储在 Doris,那么针对广告 PV, UV 查询就可以通过创建 `bitmap_union` 的物化视图来提升查询速度。
 
-通过下面语句首先创建一个存储广告点击数据明细的表,包含每条点击的点击事件,点击的是什么广告,通过什么渠道点击,以及点击的用户是谁。
+通过下面语句首先创建一个存储广告点击数据明细的表,包含每条点击的点击时间,点击的是什么广告,通过什么渠道点击,以及点击的用户是谁。
 
 ```sql
 MySQL [test]> create table advertiser_view_record(time date, advertiser varchar(10), channel varchar(10), user_id int) distributed by hash(time) properties("replication_num" = "1");


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org