~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/delete.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
358
358
INSERT INTO t1 VALUES (1,2,3), (4,5,6), (7,8,9);
359
359
DELETE FROM t1 WHERE a = 10 OR b = 20 ORDER BY c LIMIT 1;
360
360
DROP TABLE t1;
 
361
#
 
362
# Bug #53034: Multiple-table DELETE statements not accepting
 
363
#             "Access compatibility" syntax
 
364
#
 
365
CREATE TABLE t1 (id INT);
 
366
CREATE TABLE t2 LIKE t1;
 
367
CREATE TABLE t3 LIKE t1;
 
368
DELETE FROM t1.*, test.t2.*, a.* USING t1, t2, t3 AS a;
 
369
DROP TABLE t1, t2, t3;
361
370
End of 5.1 tests