~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select.test

  • Committer: Stewart Smith
  • Date: 2010-04-03 07:02:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1437.
  • Revision ID: stewart@flamingspork.com-20100403070251-mecnmff8dc7pbpp0
select test leaving around tables carelessly

Show diffs side-by-side

added added

removed removed

Lines of Context:
3471
3471
SELECT * FROM t2 LEFT JOIN t1 ON a = b + 1;
3472
3472
EXPLAIN EXTENDED SELECT * FROM t2 LEFT JOIN t1 ON a = b + 1;
3473
3473
EXPLAIN EXTENDED SELECT * FROM t1 WHERE a > UNIX_TIMESTAMP('2009-03-10 00:00:00');
 
3474
 
 
3475
DROP TABLE t1, t2;