This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch HBASE-29914
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/HBASE-29914 by this push:
new a03f8b263a9 add more output
a03f8b263a9 is described below
commit a03f8b263a995a282859e89a87f056cfa7bfd1f1
Author: Duo Zhang <[email protected]>
AuthorDate: Wed Feb 25 22:55:43 2026 +0800
add more output
---
dev-support/hbase_nightly_pseudo-distributed-test.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-support/hbase_nightly_pseudo-distributed-test.sh
b/dev-support/hbase_nightly_pseudo-distributed-test.sh
index 55f14efd3b6..f40fc8197d2 100755
--- a/dev-support/hbase_nightly_pseudo-distributed-test.sh
+++ b/dev-support/hbase_nightly_pseudo-distributed-test.sh
@@ -421,6 +421,7 @@ HADOOP_CLASSPATH="${hbase_dep_classpath}" redirect_and_run
"${working_dir}/mr-im
EOF
echo "Verifying row count from import."
+echo 'count "test:example"' | "${hbase_client}/bin/hbase" --config
"${working_dir}/hbase-conf/" shell --noninteractive
import_rowcount=$(echo 'count "test:example"' | "${hbase_client}/bin/hbase"
--config "${working_dir}/hbase-conf/" shell --noninteractive 2>/dev/null | tail
-n 1)
if [ ! "${import_rowcount}" -eq 48 ]; then
echo "ERROR: Instead of finding 48 rows, we found ${import_rowcount}."
@@ -534,6 +535,7 @@ echo "Checking on results of example program."
EOF
echo "Verifying row count from example."
+echo 'count "test:example"' | "${hbase_client}/bin/hbase" --config
"${working_dir}/hbase-conf/" shell --noninteractive
example_rowcount=$(echo 'count "test:example"' | "${hbase_client}/bin/hbase"
--config "${working_dir}/hbase-conf/" shell --noninteractive 2>/dev/null | tail
-n 1)
if [ "${example_rowcount}" -gt "1050" ]; then
echo "Found ${example_rowcount} rows, which is enough to cover 48 for
import, 1000 example's use of user table regions, 2 for example's use of
meta/namespace regions, and 1 for example's count record"