~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/negation_elimination.test

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

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;