diff options
author | unknown <monty@hundin.mysql.fi> | 2002-01-18 00:43:50 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-01-18 00:43:50 +0200 |
commit | d38454fab1fb52a98d38c8952602c1461c69df78 (patch) | |
tree | 76a38a24a1fef179359cc94ec33e00e09f3ac3ad /mysys | |
parent | 38e174cc59f99e8bd55e98d2d427037a5a7719e6 (diff) | |
download | mariadb-git-d38454fab1fb52a98d38c8952602c1461c69df78.tar.gz |
Fixed bug when making a range join based on information from a const table.
Docs/manual.texi:
Changelog
mysql-test/r/join.result:
Test of join bug
mysql-test/t/join.test:
Test of join bug
mysys/hash.c:
Fix for SUNPRO_C
scripts/mysql_config.sh:
Fix for MacOS X
Diffstat (limited to 'mysys')
-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 c05379ef4ce..e37bea3846c 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -180,7 +180,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) |