~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

Reverted 1103

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
2
insert into t1 values(1);
3
 
ERROR 42S02: Unknown table 'test.t1'
 
3
ERROR 42S02: Table 'test.t1' doesn't exist
4
4
delete from t1;
5
 
ERROR 42S02: Unknown table 'test.t1'
 
5
ERROR 42S02: Table 'test.t1' doesn't exist
6
6
update t1 set a=1;
7
 
ERROR 42S02: Unknown table 'test.t1'
 
7
ERROR 42S02: Table 'test.t1' doesn't exist
8
8
create table t1 (a int);
9
9
select count(test.t1.b) from t1;
10
10
ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
23
23
select count(*),b from t1;
24
24
ERROR 42S22: Unknown column 'b' in 'field list'
25
25
drop table t1;
 
26
create table t1 (a int(256));
 
27
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(256))' at line 1
26
28
create table t1 (a varchar(66000));
27
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
28
30
CREATE TABLE t1 (a INT);
29
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
30
 
ERROR 22012: Division by 0
 
32
a
31
33
INSERT INTO t1 VALUES(1);
32
34
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
33
 
ERROR 22012: Division by 0
 
35
a
 
36
1
34
37
INSERT INTO t1 VALUES(2),(3);
35
38
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
36
 
ERROR 22012: Division by 0
 
39
a
 
40
1
 
41
Warnings:
 
42
Error   1365    Division by 0
 
43
Error   1365    Division by 0
37
44
DROP TABLE t1;
38
45
CREATE TABLE t1( a INT );
39
46
SELECT b FROM t1;