diff options
author | unknown <monty@hundin.mysql.fi> | 2002-01-05 22:51:42 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-01-05 22:51:42 +0200 |
commit | e9b750d1a6a131b60453c8dd4efef9d572bae476 (patch) | |
tree | aee8644482b4b6ee28e2b60a28829fa32f99a2b0 /mysys/hash.c | |
parent | f06d80f679aad1f6ddb79d26c36cd574de85bc24 (diff) | |
download | mariadb-git-e9b750d1a6a131b60453c8dd4efef9d572bae476.tar.gz |
Fix for FLUSH QUERY CACHE
Fix for new bug in CREATE TABLE when sorting keys.
Docs/manual.texi:
Added FOUND_ROWS() section.
include/my_base.h:
Spatial index
include/myisam.h:
Spatial index
include/mysql_com.h:
Spatial index
myisam/ft_dump.c:
Remove warnings.
mysys/hash.c:
Fix for SUNPRO_C (Sun's Fortre compiler)
sql/sql_cache.cc:
Fix for FLUSH QUERY CACHE.
sql/sql_cache.h:
Fix for FLUSH QUERY CACHE.
sql/sql_table.cc:
Fix for new bug when sorting keys.
Diffstat (limited to 'mysys/hash.c')
-rw-r--r-- | mysys/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/hash.c b/mysys/hash.c index 64de2c71bef..0b326ebc508 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -177,7 +177,7 @@ uint calc_hashnr_caseup(const byte *key, uint len) #endif -#ifndef _FORTREC_ +#ifndef __SUNPRO_C /* SUNPRO can't handle this */ inline #endif uint rec_hashnr(HASH *hash,const byte *record) |