This is an automated email from the ASF dual-hosted git repository. englefly 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 576972ee79e [opt](tools) analyze with full in tools scripts #25873 576972ee79e is described below commit 576972ee79ee3b59c97861a4cc784b176e79f80d Author: minghong <engle...@gmail.com> AuthorDate: Mon Oct 30 08:19:36 2023 +0800 [opt](tools) analyze with full in tools scripts #25873 --- tools/tpcds-tools/bin/load-tpcds-data.sh | 4 ++-- tools/tpch-tools/bin/load-tpch-data.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/tpcds-tools/bin/load-tpcds-data.sh b/tools/tpcds-tools/bin/load-tpcds-data.sh index 5bd4f1b3481..d34021076d6 100755 --- a/tools/tpcds-tools/bin/load-tpcds-data.sh +++ b/tools/tpcds-tools/bin/load-tpcds-data.sh @@ -204,8 +204,8 @@ run_sql() { mysql -h"${FE_HOST}" -u"${USER}" -P"${FE_QUERY_PORT}" -D"${DB}" -e "$*" } start=$(date +%s) -run_sql "analyze database ${DB} with sync;" +run_sql "analyze database ${DB} with full with sync;" end=$(date +%s) analyzeTime=$((end - start)) -echo "analyze database ${DB} with sync total time: ${analyzeTime} s" +echo "analyze database ${DB} with full with sync total time: ${analyzeTime} s" echo '============================================' diff --git a/tools/tpch-tools/bin/load-tpch-data.sh b/tools/tpch-tools/bin/load-tpch-data.sh index 988b161fbe0..3e4e7f6bfb6 100755 --- a/tools/tpch-tools/bin/load-tpch-data.sh +++ b/tools/tpch-tools/bin/load-tpch-data.sh @@ -243,8 +243,8 @@ run_sql() { mysql -h"${FE_HOST}" -u"${USER}" -P"${FE_QUERY_PORT}" -D"${DB}" -e "$*" } start=$(date +%s) -run_sql "analyze database ${DB} with sync;" +run_sql "analyze database ${DB} with full with sync;" end=$(date +%s) totalTime=$((end - start)) -echo "analyze database ${DB} with sync total time: ${totalTime} s" +echo "analyze database ${DB} with full with sync total time: ${totalTime} s" echo '============================================' --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org