~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

Updated an include guard thanks to a nice catch during code review from Jay. Thanks Jay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
CREATE TABLE t1 (a INT);
31
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
32
32
a
33
 
Warnings:
34
 
Error   1365    Division by 0
35
33
INSERT INTO t1 VALUES(1);
36
34
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
37
35
a
38
36
1
39
 
Warnings:
40
 
Error   1365    Division by 0
41
37
INSERT INTO t1 VALUES(2),(3);
42
38
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
43
39
a
44
40
1
45
41
Warnings:
46
42
Error   1365    Division by 0
 
43
Error   1365    Division by 0
47
44
DROP TABLE t1;
48
45
CREATE TABLE t1( a INT );
49
46
SELECT b FROM t1;