diff options
author | monty@mysql.com <> | 2004-06-25 18:49:36 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-06-25 18:49:36 +0300 |
commit | f6765146c1b97bbb71f79adbd275dc2b6ca79333 (patch) | |
tree | 3a9126456bcc45a3caaf4b6c53da125de2769da8 /sql/ha_myisam.h | |
parent | 00dc9a0e91835f4cae34d287b4351667fe7fe4dc (diff) | |
download | mariadb-git-f6765146c1b97bbb71f79adbd275dc2b6ca79333.tar.gz |
Added missing root user to mysql.user on windows. (Bug #4242)
Set default max_allowed_packet to be able to read help tables even if an my.cnf file with this option is present. (Bug #3938)
Don't use default arguments for ha_rnd_init()
Simple code cleanups since last pull
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 72ff6024109..ef3f00577dd 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -92,7 +92,7 @@ class ha_myisam: public handler FT_INFO *ft_init_ext(uint flags, uint inx,const byte *key, uint keylen) { return ft_init_search(flags,file,inx,(byte*) key,keylen, table->record[0]); } int ft_read(byte *buf); - int rnd_init(bool scan=1); + int rnd_init(bool scan); int rnd_next(byte *buf); int rnd_pos(byte * buf, byte *pos); int restart_rnd_next(byte *buf, byte *pos); |