~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/derived.test

  • Committer: Brian Aker
  • Date: 2009-05-20 23:51:08 UTC
  • mfrom: (1022.2.18 mordred)
  • Revision ID: brian@gaz-20090520235108-nb5he1em112798pb
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Initialize
2
 
--disable_warnings
3
2
drop table if exists t1,t2,t3;
4
 
--enable_warnings
5
3
 
6
4
select * from (select 2) b;
7
5
-- error 1054
17
15
CREATE TABLE t3 (a int not null, b char (10) not null);
18
16
insert into t3 values (3,'f'),(4,'y'),(5,'z'),(6,'c');
19
17
select t1.a,t4.y from t1,(select t2.a as y from t2,(select t3.b from t3 where t3.a>3) as t5  where t2.b=t5.b) as t4  where t1.a = t4.y;
20
 
--error ER_BAD_FIELD_ERROR
 
18
--error 1054
21
19
SELECT a FROM (SELECT 1 FROM (SELECT 1) a HAVING a=1) b;
22
 
--error ER_NON_UNIQ_ERROR
 
20
--error 1052
23
21
SELECT a,b as a FROM (SELECT '1' as a,'2' as b) b  HAVING a=1;
24
22
SELECT a,2 as a FROM (SELECT '1' as a) b HAVING a=2;
25
23
SELECT a,2 as a FROM (SELECT '1' as a) b HAVING a=1;
26
 
--error ER_BAD_FIELD_ERROR
 
24
--error 1054
27
25
SELECT 1 FROM (SELECT 1) a WHERE a=2;
28
 
--error ER_BAD_FIELD_ERROR
 
26
--error 1054
29
27
SELECT (SELECT 1) as a FROM (SELECT 1 FROM t1  HAVING a=1) as a;
30
 
--sort_result
31
28
select * from t1 as x1, (select * from t1) as x2;
32
29
explain select * from t1 as x1, (select * from t1) as x2;
33
30
drop table if exists  t2,t3;
62
59
drop table t1;
63
60
SELECT * FROM (SELECT (SELECT * FROM (SELECT 1 as a) as a )) as b;
64
61
select * from (select 1 as a) b  left join (select 2 as a) c using(a);
65
 
--error ER_BAD_FIELD_ERROR
 
62
--error 1054
66
63
SELECT * FROM (SELECT 1 UNION SELECT a) b;
67
 
--error ER_BAD_FIELD_ERROR
 
64
--error 1054
68
65
SELECT 1 as a FROM (SELECT a UNION SELECT 1) b;
69
 
--error ER_BAD_FIELD_ERROR
 
66
--error 1054
70
67
SELECT 1 as a FROM (SELECT 1 UNION SELECT a) b;
71
 
--error ER_BAD_FIELD_ERROR
 
68
--error 1054
72
69
select 1 from  (select 2) a order by 0;
73
70
 
74
71
#
105
102
#
106
103
create table t1 (a int);
107
104
insert into t1 values (1),(2),(3);
 
105
-- error 1288
 
106
update (select * from t1) as t1 set a = 5;
108
107
-- error 1064
109
108
delete from (select * from t1);
110
109
-- error 1064
117
116
create table t1 (E1 INTEGER NOT NULL, E2 INTEGER NOT NULL, E3 INTEGER NOT NULL, PRIMARY KEY(E1)
118
117
);
119
118
insert into t1 VALUES(1,1,1), (2,2,1);
120
 
--sort_result
121
119
select count(*) from t1 INNER JOIN (SELECT A.E1, A.E2, A.E3 FROM t1 AS A WHERE A.E3 = (SELECT MAX(B.E3) FROM t1 AS B WHERE A.E2 = B.E2)) AS THEMAX ON t1.E1 = THEMAX.E2 AND t1.E1 = t1.E2;
122
120
explain select count(*) from t1 INNER JOIN (SELECT A.E1, A.E2, A.E3 FROM t1 AS A WHERE A.E3 = (SELECT MAX(B.E3) FROM t1 AS B WHERE A.E2 = B.E2)) AS THEMAX ON t1.E1 = THEMAX.E2 AND t1.E1 = t1.E2;
123
121
drop table t1;
124
122
 
125
123
create table t1 (a int);
126
124
insert into t1 values (1),(2);
127
 
--sort_result
128
125
select * from ( select * from t1 union select * from t1) a,(select * from t1 union select * from t1) b;
129
126
explain select * from ( select * from t1 union select * from t1) a,(select * from t1 union select * from t1) b;
130
127
drop table t1;
131
128
 
132
129
#
 
130
# multi-update & multi-delete with derived tables
 
131
#
 
132
CREATE TABLE `t1` (
 
133
  `N` int NOT NULL default '0',
 
134
  `M` int default '0'
 
135
) ENGINE=MyISAM;
 
136
INSERT INTO `t1` (N, M) VALUES (1, 0),(1, 0),(1, 0),(2, 0),(2, 0),(3, 0);
 
137
UPDATE `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2;
 
138
select * from t1;
 
139
-- error 1288
 
140
# TODO: Bug lp:311109
 
141
#UPDATE `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2, P2.N = 2;
 
142
-- error 1054
 
143
UPDATE `t1` AS P1 INNER JOIN (SELECT aaaa FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2;
 
144
delete P1.* from `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N;
 
145
select * from t1;
 
146
--replace_result P2 p2
 
147
# TODO: Bug lp:311111
 
148
#--error ER_NON_UPDATABLE_TABLE
 
149
#delete P1.*,P2.* from `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N;
 
150
-- error 1054
 
151
delete P1.* from `t1` AS P1 INNER JOIN (SELECT aaa FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N;
 
152
drop table t1;
 
153
 
 
154
#
133
155
# correct lex->current_select
134
156
#
135
 
CREATE TEMPORARY TABLE t1 (
 
157
CREATE TABLE t1 (
136
158
  OBJECTID int NOT NULL default 0,
137
159
  SORTORDER int NOT NULL auto_increment,
138
160
  KEY t1_SortIndex (SORTORDER),
139
161
  KEY t1_IdIndex (OBJECTID)
140
162
) ENGINE=MyISAM;
141
 
CREATE TEMPORARY TABLE t2 (
 
163
CREATE TABLE t2 (
142
164
  ID int default NULL,
143
165
  PARID int default NULL,
144
166
  UNIQUE KEY t2_ID_IDX (ID),
145
167
  KEY t2_PARID_IDX (PARID)
146
168
) engine=MyISAM;
147
169
INSERT INTO t2 VALUES (1000,0),(1001,0),(1002,0),(1003,0),(1008,1),(1009,1),(1010,1),(1011,1),(1016,2);
148
 
CREATE TEMPORARY TABLE t3 (
 
170
CREATE TABLE t3 (
149
171
  ID int default NULL,
150
172
  DATA decimal(10,2) default NULL,
151
173
  UNIQUE KEY t3_ID_IDX (ID)
200
222
#
201
223
CREATE TABLE t1 (a char(10), b char(10));
202
224
INSERT INTO t1 VALUES ('root','localhost'), ('root','%');
203
 
--error ER_SUBQUERY_NO_1_ROW
 
225
--error 1242
204
226
SELECT * FROM (SELECT (SELECT a.a FROM t1 AS a WHERE a.a = b.a) FROM t1 AS b) AS c;
205
227
DROP TABLE t1;
206
228
#