This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 226601b8673 [opt](tpch-tools) Analyze database with full (branch-2.0)
(#25870)
226601b8673 is described below
commit 226601b8673662ea8f1366b975c07953c790091b
Author: minghong <[email protected]>
AuthorDate: Wed Oct 25 17:10:17 2023 +0800
[opt](tpch-tools) Analyze database with full (branch-2.0) (#25870)
---
tools/tpcds-tools/bin/run-tpcds-queries.sh | 4 ++--
tools/tpch-tools/bin/run-tpch-queries.sh | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tools/tpcds-tools/bin/run-tpcds-queries.sh
b/tools/tpcds-tools/bin/run-tpcds-queries.sh
index 08416b34ed1..b404eaf0794 100755
--- a/tools/tpcds-tools/bin/run-tpcds-queries.sh
+++ b/tools/tpcds-tools/bin/run-tpcds-queries.sh
@@ -105,10 +105,10 @@ echo '============================================'
run_sql "show table status;"
echo '============================================'
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 '============================================'
echo "Time Unit: ms"
diff --git a/tools/tpch-tools/bin/run-tpch-queries.sh
b/tools/tpch-tools/bin/run-tpch-queries.sh
index 116c95795b2..f95a1952ad3 100755
--- a/tools/tpch-tools/bin/run-tpch-queries.sh
+++ b/tools/tpch-tools/bin/run-tpch-queries.sh
@@ -132,10 +132,10 @@ echo '============================================'
run_sql "show table status;"
echo '============================================'
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 '============================================'
echo "Time Unit: ms"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]