diff options
author | unknown <jimw@mysql.com> | 2005-05-07 08:25:58 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-05-07 08:25:58 -0700 |
commit | 474a4d5d8d997f7cc068a8d1b4a14138e3bc55af (patch) | |
tree | 0a1534765795d08014f77b4124d29d383bf130ed /mysql-test/t/temp_table.test | |
parent | de275d94d2b69048e973986e3df3dad8beb6f332 (diff) | |
parent | 29fcd4b318cccf96fbdd68232c9b0596ead04f9d (diff) | |
download | mariadb-git-474a4d5d8d997f7cc068a8d1b4a14138e3bc55af.tar.gz |
Merge
BUILD/FINISH.sh:
Auto merged
client/mysql.cc:
Auto merged
mysql-test/r/innodb.result:
Auto merged
mysql-test/r/type_float.result:
Auto merged
mysql-test/t/innodb.test:
Auto merged
sql/ha_heap.cc:
Auto merged
mysql-test/r/create.result:
Merge changes
mysql-test/r/temp_table.result:
SCCS merged
mysql-test/t/temp_table.test:
Merge new tests
sql/item.cc:
Merge from 4.1
sql/sql_select.cc:
Merge from 4.1
Diffstat (limited to 'mysql-test/t/temp_table.test')
-rw-r--r-- | mysql-test/t/temp_table.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/temp_table.test b/mysql-test/t/temp_table.test index eeb33515570..da7ce9b4722 100644 --- a/mysql-test/t/temp_table.test +++ b/mysql-test/t/temp_table.test @@ -104,3 +104,11 @@ drop table t1; select * from t1; drop view t1; +# Bug #8497: tmpdir with extra slashes would cause failures +# +create table t1 (a int, b int, index(a), index(b)); +create table t2 (c int auto_increment, d varchar(255), primary key (c)); +insert into t1 values (3,1),(3,2); +insert into t2 values (NULL, 'foo'), (NULL, 'bar'); +select d, c from t1 left join t2 on b = c where a = 3 order by d; +drop table t1, t2; |