summaryrefslogtreecommitdiff
path: root/myisam/mi_check.c
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-07-30 16:15:10 +0200
committerunknown <serg@serg.mylan>2003-07-30 16:15:10 +0200
commit20e39672fb84d3ce70ff466713b84f7d9c78c7fe (patch)
treed4ef00706641ad95046bde9a8bfea353f329f7ac /myisam/mi_check.c
parent2763b52d0a0ad85818f5c8259b4dd1d060e568e7 (diff)
downloadmariadb-git-20e39672fb84d3ce70ff466713b84f7d9c78c7fe.tar.gz
Bug#937
myisamchk.c: help text clarified mi_check.c: allow one to "analyze" empty table :) myisam/mi_check.c: allow one to "analyze" empty table :) myisam/myisamchk.c: help text clarified
Diffstat (limited to 'myisam/mi_check.c')
-rw-r--r--myisam/mi_check.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c
index 6caacd95386..4b28a88fc6e 100644
--- a/myisam/mi_check.c
+++ b/myisam/mi_check.c
@@ -3562,11 +3562,12 @@ int update_state_info(MI_CHECK *param, MI_INFO *info,uint update)
uint i, key_parts= mi_uint2korr(share->state.header.key_parts);
share->state.rec_per_key_rows=info->state->records;
share->state.changed&= ~STATE_NOT_ANALYZED;
- for (i=0; i<key_parts; i++)
- {
- if (!(share->state.rec_per_key_part[i]=param->rec_per_key_part[i]))
- share->state.changed|= STATE_NOT_ANALYZED;
- }
+ if (info->state->records)
+ for (i=0; i<key_parts; i++)
+ {
+ if (!(share->state.rec_per_key_part[i]=param->rec_per_key_part[i]))
+ share->state.changed|= STATE_NOT_ANALYZED;
+ }
}
if (update & (UPDATE_STAT | UPDATE_SORT | UPDATE_TIME | UPDATE_AUTO_INC))
{