~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/negation_elimination.test

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
 
68
68
delete from t1 where a > 3;
69
69
select a, not(not(a)) from t1;
70
 
--replace_column 9 #
71
70
explain extended select a, not(not(a)), not(a <= 2 and not(a)), not(a not like "1"), not (a not in (1,2)), not(a != 2) from t1 where not(not(a)) having not(not(a));
72
71
 
73
72
drop table t1;