~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-proposed

« back to all changes in this revision

Viewing changes to mysql-test/t/subselect_sj_mat.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
Tags: 5.5.39-2
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1808
1808
DROP TABLE t1, t2;
1809
1809
DROP VIEW v2;
1810
1810
 
 
1811
--echo #
 
1812
--echo # MDEV-6289 : Unexpected results when querying information_schema
 
1813
--echo #
 
1814
CREATE TABLE t1 (
 
1815
  id int(11) unsigned NOT NULL AUTO_INCREMENT,
 
1816
  db varchar(254) NOT NULL DEFAULT '',
 
1817
  PRIMARY KEY (id),
 
1818
  UNIQUE KEY db (db)
 
1819
) DEFAULT CHARSET=utf8;
 
1820
INSERT INTO t1 (db) VALUES ('mysqltest1'),('mysqltest2'),('mysqltest3'),('mysqltest4');
 
1821
 
 
1822
--disable_warnings
 
1823
drop database if exists mysqltest1;
 
1824
drop database if exists mysqltest2;
 
1825
drop database if exists mysqltest3;
 
1826
drop database if exists mysqltest4;
 
1827
--enable_warnings
 
1828
create database mysqltest1;
 
1829
create database mysqltest2;
 
1830
create database mysqltest3;
 
1831
create database mysqltest4;
 
1832
 
 
1833
SELECT db FROM t1 WHERE db IN (SELECT SCHEMA_NAME FROM information_schema.schemata) ORDER BY db DESC;
 
1834
 
 
1835
EXPLAIN EXTENDED
 
1836
SELECT db FROM t1 WHERE db IN (SELECT SCHEMA_NAME FROM information_schema.schemata) ORDER BY db DESC;
 
1837
 
 
1838
drop table t1;
 
1839
drop database mysqltest1;
 
1840
drop database mysqltest2;
 
1841
drop database mysqltest3;
 
1842
drop database mysqltest4;
 
1843
 
1811
1844
--echo # End of 5.5 tests
1812
1845