diff options
author | monty@hundin.mysql.fi <> | 2001-06-26 10:23:50 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-06-26 10:23:50 +0300 |
commit | 85388703c400d4a952085a8ed547494bd20863a2 (patch) | |
tree | c0fdcacb616884cc66417017b1d2de4754d92d7f /myisam/mi_statrec.c | |
parent | 65600db56d540e11473628b6d691102be18905ee (diff) | |
download | mariadb-git-85388703c400d4a952085a8ed547494bd20863a2.tar.gz |
Fixed length rows should not use row checksum in MyISAM tables
Fixed bug in handling of packed MyISAM keys
Diffstat (limited to 'myisam/mi_statrec.c')
-rw-r--r-- | myisam/mi_statrec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_statrec.c b/myisam/mi_statrec.c index 7af8c304c0f..e0fce6d3e1c 100644 --- a/myisam/mi_statrec.c +++ b/myisam/mi_statrec.c @@ -73,7 +73,7 @@ int _mi_write_static_record(MI_INFO *info, const byte *record) bzero((char*) temp,length); if (my_pwrite(info->dfile, (byte*) temp,length, info->state->data_file_length+ - info->s->base.pack_reclength, + info->s->base.reclength, info->s->write_flag)) goto err; } |