diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-27 22:02:37 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-27 22:02:37 +0300 |
commit | 0edc02d65348fb3fb1c2d814d8ff5eececdec7cf (patch) | |
tree | efc338d3f173438bf497cfc5ec22271876b39af5 /mysql-test/r | |
parent | e47b763f869180053a9cd22a8688bfa04bdb6f3a (diff) | |
download | mariadb-git-0edc02d65348fb3fb1c2d814d8ff5eececdec7cf.tar.gz |
Fixed bug in counting open files when using many files
Fixed bug in JOIN
Docs/manual.texi:
Changlog
mysql-test/r/join.result:
New test for join bug
mysql-test/r/null_key.result:
Fix result after fixing join bug
mysql-test/t/join.test:
New test for join bug
mysys/my_open.c:
Fixed bug in counting open files when using many files.
sql/sql_select.cc:
Fixed join bug
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/join.result | 2 | ||||
-rw-r--r-- | mysql-test/r/null_key.result | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/join.result b/mysql-test/r/join.result index 3c5a72edc68..7db456a1af5 100644 --- a/mysql-test/r/join.result +++ b/mysql-test/r/join.result @@ -20,3 +20,5 @@ id catid stateid countyid a 1 2 +a a b +2 2 3 diff --git a/mysql-test/r/null_key.result b/mysql-test/r/null_key.result index ead1dc29326..d0d59cdebf8 100644 --- a/mysql-test/r/null_key.result +++ b/mysql-test/r/null_key.result @@ -11,7 +11,7 @@ t1 index NULL a 9 NULL 12 where used; Using index table type possible_keys key key_len ref rows Extra t1 range a,b a 9 NULL 3 where used; Using index table type possible_keys key key_len ref rows Extra -t1 ref a,b b 4 const 2 where used +t1 range a,b a 9 NULL 2 where used; Using index table type possible_keys key key_len ref rows Extra t1 ref a,b a 5 const 3 where used; Using index table type possible_keys key key_len ref rows Extra |