~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect.result

  • Committer: Brian Aker
  • Date: 2009-05-13 02:07:22 UTC
  • mfrom: (1008.1.5 merge)
  • Revision ID: brian@gaz-20090513020722-9nqehweityhn6ab0
Merge in refactoring around lock system

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
x
637
637
1
638
638
insert into t2 values (1);
639
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
 
639
INSERT INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
640
640
select * from t1;
641
641
x
642
642
1
657
657
3
658
658
11
659
659
11
660
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
 
660
INSERT INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
661
661
ERROR 42S22: Unknown column 'x' in 'field list'
662
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
 
662
INSERT INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
663
663
select * from t1;
664
664
x
665
665
1
689
689
select * from t1;
690
690
x       y
691
691
1       3
692
 
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
 
692
replace into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
693
693
select * from t1;
694
694
x       y
695
695
1       3
696
696
4       1
697
 
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
 
697
replace into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
698
698
select * from t1;
699
699
x       y
700
700
1       3
701
701
4       2
702
 
replace LOW_PRIORITY into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
 
702
replace into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
703
703
select * from t1;
704
704
x       y
705
705
1       3