~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/case.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:
38
38
(CASE "two" when "one" then 1.00 WHEN "two" then 2.00 END) +0.0
39
39
2.00
40
40
select case 1/0 when "a" then "true" else "false" END;
41
 
case 1/0 when "a" then "true" else "false" END
42
 
false
43
 
Warnings:
44
 
Error   1365    Division by 0
 
41
ERROR 22012: Division by 0
45
42
select case 1/0 when "a" then "true" END;
46
 
case 1/0 when "a" then "true" END
47
 
NULL
48
 
Warnings:
49
 
Error   1365    Division by 0
 
43
ERROR 22012: Division by 0
50
44
select (case 1/0 when "a" then "true" END);
51
 
(case 1/0 when "a" then "true" END)
52
 
NULL
53
 
Warnings:
54
 
Error   1365    Division by 0
 
45
ERROR 22012: Division by 0
55
46
select (case 1/0 when "a" then "true" END) + 0.0;
56
 
(case 1/0 when "a" then "true" END) + 0.0
57
 
NULL
58
 
Warnings:
59
 
Error   1365    Division by 0
 
47
ERROR 22012: Division by 0
60
48
select case when 1>0 then "TRUE" else "FALSE" END;
61
49
case when 1>0 then "TRUE" else "FALSE" END
62
50
TRUE