~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bool.result

  • Committer: Monty Taylor
  • Date: 2008-12-17 04:54:32 UTC
  • mto: (685.1.38 devel) (713.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 713.
  • Revision ID: monty@inaugust.com-20081217045432-dw4425razy7do46i
Fixed bool. No more sql_mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
SELECT * FROM t1 where (1 AND a) IS NULL;
34
34
a
35
35
NULL
36
 
set sql_mode='high_not_precedence';
37
 
select * from t1 where not a between 2 and 3;
38
 
a
39
 
set sql_mode=default;
40
 
select * from t1 where not a between 2 and 3;
41
 
a
42
 
0
43
 
1
44
36
select a, a is false, a is true, a is unknown from t1;
45
 
a       a is false      a is true       a is unknown
 
37
a       a is false      a is true       a is unknown 
46
38
0       1       0       0
47
39
1       0       1       0
48
40
NULL    0       0       1
49
41
select a, a is not false, a is not true, a is not unknown from t1;
50
 
a       a is not false  a is not true   a is not unknown
 
42
a       a is not false  a is not true   a is not unknown 
51
43
0       0       1       1
52
44
1       1       0       1
53
45
NULL    1       1       0