~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Brian Aker
  • Date: 2010-10-07 20:00:40 UTC
  • mto: (1822.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1823.
  • Revision ID: brian@tangent.org-20101007200040-st5l46s5i445vxoz
We no longer needed to look at the share when removing tables.

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
 
ERROR 22012: Division by 0
 
32
a
 
33
Warnings:
 
34
Error   1365    Division by 0
33
35
INSERT INTO t1 VALUES(1);
34
36
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
35
 
ERROR 22012: Division by 0
 
37
a
 
38
1
 
39
Warnings:
 
40
Error   1365    Division by 0
36
41
INSERT INTO t1 VALUES(2),(3);
37
42
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
38
 
ERROR 22012: Division by 0
 
43
a
 
44
1
 
45
Warnings:
 
46
Error   1365    Division by 0
39
47
DROP TABLE t1;
40
48
CREATE TABLE t1( a INT );
41
49
SELECT b FROM t1;