diff options
author | monty@donna.mysql.com <> | 2000-09-14 02:39:07 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-09-14 02:39:07 +0300 |
commit | b581f17be222af50b399242353fd6df31b6b05d5 (patch) | |
tree | 47d3199e561726437875c3247556ac5797525366 /myisammrg/myrg_rrnd.c | |
parent | 7e543b4d4b67b7108d72bf1f1a8b22f99937c886 (diff) | |
download | mariadb-git-b581f17be222af50b399242353fd6df31b6b05d5.tar.gz |
Fixes for MERGE TABLES and HEAP tables
Diffstat (limited to 'myisammrg/myrg_rrnd.c')
-rw-r--r-- | myisammrg/myrg_rrnd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/myisammrg/myrg_rrnd.c b/myisammrg/myrg_rrnd.c index da11b230f27..c64f48c93cd 100644 --- a/myisammrg/myrg_rrnd.c +++ b/myisammrg/myrg_rrnd.c @@ -84,10 +84,10 @@ int myrg_rrnd(MYRG_INFO *info,byte *buf,ulonglong filepos) info->end_table-1,filepos); isam_info=info->current_table->table; isam_info->update&= HA_STATE_CHANGED; - return ((*isam_info->s->read_rnd)(isam_info,(byte*) buf, - (ha_rows) (filepos - - info->current_table->file_offset), - 0)); + return ((*isam_info->s->read_rnd) + (isam_info, (byte*) buf, + (ha_rows) (filepos - info->current_table->file_offset), + 0)); } |