~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Monty Taylor
  • Date: 2009-02-11 23:45:52 UTC
  • mfrom: (881 drizzle)
  • mto: This revision was merged to the branch mainline in revision 885.
  • Revision ID: mordred@inaugust.com-20090211234552-d57gtqlup0pr7g13
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
select * from t3;
215
215
a       b
216
216
drop table t1,t2,t3;
217
 
create table t1(a date not null);
218
 
insert into t1 values (0);
219
 
select * from t1 where a is null;
220
 
a
221
 
0000-00-00
222
 
delete from t1 where a is null;
223
 
select count(*) from t1;
224
 
count(*)
225
 
0
226
 
drop table t1;
227
217
CREATE TABLE t1 (a INT);
228
218
INSERT INTO t1 VALUES (1);
229
219
DELETE FROM t1 ORDER BY x;