~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 01:03:01 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913010301-tcvvezipx1124acy
Added calls to the dtrace delete begin/end probes.

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;