~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_no_semijoin.result

  • Committer: Brian Aker
  • Date: 2009-03-12 00:51:19 UTC
  • mfrom: (910.4.17 sparc)
  • Revision ID: brian@tangent.org-20090312005119-xemqiftml9jhyhcr
Merg'ing Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3281
3281
PRIMARY KEY (x), FOREIGN KEY (y) REFERENCES t1 (b)) ENGINE=MyISAM;
3282
3282
SET SESSION sort_buffer_size = 32 * 1024;
3283
3283
Warnings:
3284
 
Warning 1292    Truncated incorrect sort_buffer_size value: '32768'
 
3284
Error   1292    Truncated incorrect sort_buffer_size value: '32768'
3285
3285
SELECT COUNT(*) 
3286
3286
FROM (SELECT  a, b, (SELECT x FROM t2 WHERE y=b ORDER BY z DESC LIMIT 1) c
3287
3287
FROM t1) t;
3648
3648
INSERT INTO `t2` VALUES ('asdf');
3649
3649
SET session sort_buffer_size=8192;
3650
3650
Warnings:
3651
 
Warning 1292    Truncated incorrect sort_buffer_size value: '8192'
 
3651
Error   1292    Truncated incorrect sort_buffer_size value: '8192'
3652
3652
SELECT (SELECT 1 FROM  t1 WHERE t1.a=t2.a ORDER BY t1.b LIMIT 1) AS d1 FROM t2;
3653
3653
d1
3654
3654
1