summaryrefslogtreecommitdiff
path: root/sql/ha_berkeley.h
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_berkeley.h
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_berkeley.h')
-rw-r--r--sql/ha_berkeley.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_berkeley.h b/sql/ha_berkeley.h
index 198664d0c06..f2a81d123f1 100644
--- a/sql/ha_berkeley.h
+++ b/sql/ha_berkeley.h
@@ -27,7 +27,8 @@
typedef struct st_berkeley_share {
ulonglong auto_ident;
- ha_rows rows, org_rows, *rec_per_key;
+ ha_rows rows, org_rows;
+ ulong *rec_per_key;
THR_LOCK lock;
pthread_mutex_t mutex;
char *table_name;