~matttbe/ubuntu/quantal/mysql-5.5/lp1013171

« back to all changes in this revision

Viewing changes to mysql-test/r/blackhole.result

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-11 23:34:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611233414-mu6ybxiajgcxqztj
Tags: 5.5.25-0ubuntu1
* New upstream release (LP: #1011371, LP: #986892)
* d/rules: change get-orig-source to pull from a working mirror.
* d/control: Build with default compiler instead of gcc 4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Bug #11880012: INDEX_SUBQUERY, BLACKHOLE,
 
3
#                HANG IN PREPARING WITH 100% CPU USAGE
 
4
#
 
5
CREATE TABLE t1(a INT NOT NULL);
 
6
INSERT INTO t1 VALUES (1), (2), (3);
 
7
CREATE TABLE t2 (a INT UNSIGNED, b INT, UNIQUE KEY (a, b)) ENGINE=BLACKHOLE;
 
8
SELECT 1 FROM t1 WHERE a = ANY (SELECT a FROM t2);
 
9
1
 
10
DROP TABLE t1, t2;
 
11
End of 5.5 tests