diff options
author | unknown <monty@donna.mysql.com> | 2000-12-12 04:34:56 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-12-12 04:34:56 +0200 |
commit | 28ad76e22c799a933006e8cad31a7389e85106eb (patch) | |
tree | 3c78736b50f99b9b8ac968afb833752f201a482a /sql/ha_myisam.cc | |
parent | 7847639270269bc6aebeed36e68ddfec0cf6c145 (diff) | |
download | mariadb-git-28ad76e22c799a933006e8cad31a7389e85106eb.tar.gz |
Fixed delete in tables with hidden primary key
Remove not used BDB logs on shutdown
Don't give warnings for repair on slaves
Fixed transaction log files
Docs/manual.texi:
Updated 'known bugs'
include/my_sys.h:
Added define for checking number of bytes left in the IO_CACHE
mysql-test/mysql-test-run:
Small bug fixes
mysys/mf_iocache2.c:
Use new define
sql/filesort.cc:
Temporary fix for FULLTEXT index
sql/ha_berkeley.cc:
Fix for delete in tables with hidden primary key
Remove not used BDB logs on shutdown
sql/ha_myisam.cc:
Don't give warnings for repair on slaves
sql/hostname.cc:
Portability fix
sql/log.cc:
Fix transaction log files
sql/log_event.h:
portability fix
sql/slave.cc:
Don't give warnings for repair on slaves
sql/sql_class.h:
Cleanup
sql/sql_parse.cc:
Fixed typo
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r-- | sql/ha_myisam.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index 860418a3fe4..c0f7b73a856 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -563,7 +563,7 @@ int ha_myisam::repair(THD *thd, MI_CHECK ¶m, bool optimize) T_STATISTICS ? UPDATE_STAT : 0)); info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE | HA_STATUS_CONST); - if (rows != file->state->records) + if (rows != file->state->records && ! (param.testflag & T_VERY_SILENT)) { char llbuff[22],llbuff2[22]; mi_check_print_warning(¶m,"Number of rows changed from %s to %s", |