~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/negation_elimination.test

  • Committer: Jay Pipes
  • Date: 2010-04-08 16:27:25 UTC
  • mfrom: (1405.6.10 replication-pairs)
  • mto: This revision was merged to the branch mainline in revision 1457.
  • Revision ID: jpipes@serialcoder-20100408162725-sugbgn38oxjqclq2
Merge trunk and replication-pairs with conflict resolution

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 #
70
71
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));
71
72
 
72
73
drop table t1;