diff options
author | unknown <monty@donna.mysql.fi> | 2001-03-11 21:20:15 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-03-11 21:20:15 +0200 |
commit | 97acb7b3d17dc60f6b879044aa53b7f422f553c2 (patch) | |
tree | 3ffab1dce3f9b12f0d98de2289a2022d1e7f3327 /sql/ha_myisam.cc | |
parent | 74ea7333032ebc1d396f1939fd5a84c7a6ecc50c (diff) | |
download | mariadb-git-97acb7b3d17dc60f6b879044aa53b7f422f553c2.tar.gz |
Added new tests to benchmark suite
Docs/manual.texi:
Updated some typos in the innobase section
client/mysql.cc:
Added print of field types (for debugging)
client/mysqladmin.c:
Added timeout for shutdown
mysql-test/mysql-test-run.sh:
Use timeout for shutdown
sql-bench/test-select.sh:
Added test of query cache and new tests for count(distinct)
sql/ha_myisam.cc:
Don't give warnings for RESTORE TABLE
sql/mysqld.cc:
Added printing of innobase options
sql/sql_lex.cc:
Fixed possible bug when OEM
sql/sql_table.cc:
cleanup
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r-- | sql/ha_myisam.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index c4393ea8c5d..af35c0269c4 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -484,7 +484,8 @@ int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt) } break; } - if (!error && start_records != file->state->records) + if (!error && start_records != file->state->records && + !(check_opt->flags & T_VERY_SILENT)) { char llbuff[22],llbuff2[22]; sql_print_error("Warning: Found %s of %s rows when repairing '%s'", |