~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: lbieber
  • Date: 2010-10-08 01:11:05 UTC
  • mfrom: (1821.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101008011105-1tbwbvz9me9fy7ua
Merge Monty - Fixed the last of the ICC warnings. Turned on warnings=errors
Merge Brian - fixu bug #655558: SELECT 102/(1-1) should error on divide by zero          
Merge Brian - fix bug #654219: information_schema.key_column_usage does not contain information about FKs

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
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
 
a
33
 
Warnings:
34
 
Error   1365    Division by 0
 
32
ERROR 22012: 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
 
a
38
 
1
39
 
Warnings:
40
 
Error   1365    Division by 0
 
35
ERROR 22012: Division by 0
41
36
INSERT INTO t1 VALUES(2),(3);
42
37
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
43
 
a
44
 
1
45
 
Warnings:
46
 
Error   1365    Division by 0
 
38
ERROR 22012: Division by 0
47
39
DROP TABLE t1;
48
40
CREATE TABLE t1( a INT );
49
41
SELECT b FROM t1;