~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_no_mat.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:
640
640
x
641
641
1
642
642
insert into t2 values (1);
643
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
 
643
INSERT INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
644
644
select * from t1;
645
645
x
646
646
1
661
661
3
662
662
11
663
663
11
664
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
 
664
INSERT INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
665
665
ERROR 42S22: Unknown column 'x' in 'field list'
666
 
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
 
666
INSERT INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
667
667
select * from t1;
668
668
x
669
669
1
693
693
select * from t1;
694
694
x       y
695
695
1       3
696
 
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
 
696
replace into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
697
697
select * from t1;
698
698
x       y
699
699
1       3
700
700
4       1
701
 
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
 
701
replace into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
702
702
select * from t1;
703
703
x       y
704
704
1       3
705
705
4       2
706
 
replace LOW_PRIORITY into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
 
706
replace into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
707
707
select * from t1;
708
708
x       y
709
709
1       3