~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Brian Aker
  • Date: 2009-10-15 00:22:33 UTC
  • mto: (1183.1.11 merge)
  • mto: This revision was merged to the branch mainline in revision 1198.
  • Revision ID: brian@gaz-20091015002233-fa4ao2mbc67wls91
First pass of information engine. OMG, ponies... is it so much easier to
deal with creating and engine.

The list table iterator though... its ass, needs to go. We should also
abstract out share. Very few engines need a custom one. Just say'in

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