You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/06/19 02:42:09 UTC

[doris] branch master updated: [tpch] Change all `replication_num` to 1 (#10244)

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

morningman 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 61d7724ab3 [tpch] Change all `replication_num` to 1 (#10244)
61d7724ab3 is described below

commit 61d7724ab3c25f33c6a293102ce6207a87f1d702
Author: Gabriel <ga...@gmail.com>
AuthorDate: Sun Jun 19 10:42:04 2022 +0800

    [tpch] Change all `replication_num` to 1 (#10244)
---
 tools/tpch-tools/create-tpch-tables.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/tpch-tools/create-tpch-tables.sql b/tools/tpch-tools/create-tpch-tables.sql
index c86d7b6c51..1627720899 100644
--- a/tools/tpch-tools/create-tpch-tables.sql
+++ b/tools/tpch-tools/create-tpch-tables.sql
@@ -144,7 +144,7 @@ DUPLICATE KEY(`N_NATIONKEY`)
 COMMENT "OLAP"
 DISTRIBUTED BY HASH(`N_NATIONKEY`) BUCKETS 1
 PROPERTIES (
-    "replication_num" = "3"
+    "replication_num" = "1"
 );
 
 drop table if exists region;
@@ -157,7 +157,7 @@ DUPLICATE KEY(`r_regionkey`)
 COMMENT "OLAP"
 DISTRIBUTED BY HASH(`r_regionkey`) BUCKETS 1
 PROPERTIES (
-    "replication_num" = "3"
+    "replication_num" = "1"
 );
 
 drop view if exists revenue0;


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