summaryrefslogtreecommitdiff
path: root/sql/ha_isam.cc
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2002-11-14 12:21:36 +0200
committerunknown <monty@mashka.mysql.fi>2002-11-14 12:21:36 +0200
commit3648eb7da856868e1e484ac5b592e3a26ee560fc (patch)
tree65895353350fb5af2ad4caa816640113636e002d /sql/ha_isam.cc
parent869dc1a1e725002df22e96f612bc050d8b148211 (diff)
downloadmariadb-git-3648eb7da856868e1e484ac5b592e3a26ee560fc.tar.gz
Portability fix when using -DBIG_TABLES
BitKeeper/etc/config: Changed Sasha to sys client/mysqlbinlog.cc: Fixed that --position open works. sql/item_timefunc.cc: Portability fix sql/log_event.cc: Portability fix sql/set_var.cc: Portability fix
Diffstat (limited to 'sql/ha_isam.cc')
-rw-r--r--sql/ha_isam.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_isam.cc b/sql/ha_isam.cc
index 052e6a4b9ec..6fa54d18aac 100644
--- a/sql/ha_isam.cc
+++ b/sql/ha_isam.cc
@@ -380,7 +380,8 @@ int ha_isam::create(const char *name, register TABLE *form,
}
recinfo_pos->base.type= (int) FIELD_LAST; /* End of fieldinfo */
error=nisam_create(fn_format(buff,name,"","",2+4+16),form->keys,keydef,
- recinfo,form->max_rows,form->min_rows,0,0,0L);
+ recinfo,(ulong) form->max_rows, (ulong) form->min_rows,
+ 0, 0, 0L);
my_free((gptr) recinfo,MYF(0));
DBUG_RETURN(error);