~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Monty
  • Date: 2008-11-28 23:12:37 UTC
  • mto: (632.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: mordred@palanthas.inaugust.com-20081128231237-3ie7yeohoyq3cdxi
Updated test output with new and improved error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
);
251
251
INSERT INTO db2.t1 (a) SELECT * FROM t2;
252
252
DELETE FROM t1 alias USING t1, t2 alias WHERE t1.a = alias.a;
253
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING t1, t2 alias WHERE t1.a = alias.a' at line 1
 
253
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'alias USING t1, t2 alias WHERE t1.a = alias.a' at line 1
254
254
DELETE FROM alias USING t1, t2 alias WHERE t1.a = alias.a;
255
255
DELETE FROM t1, alias USING t1, t2 alias WHERE t1.a = alias.a;
256
256
DELETE FROM t1, t2 USING t1, t2 alias WHERE t1.a = alias.a;
257
257
ERROR 42S02: Unknown table 't2' in MULTI DELETE
258
258
DELETE FROM db1.t1 alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
259
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a' at line 1
 
259
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a' at line 1
260
260
DELETE FROM alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
261
261
DELETE FROM db2.alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
262
262
ERROR 42S02: Unknown table 'alias' in MULTI DELETE
264
264
SELECT * FROM t1;
265
265
a
266
266
DELETE FROM t1 alias USING t1 alias WHERE a = 2;
267
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING t1 alias WHERE a = 2' at line 1
 
267
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'alias USING t1 alias WHERE a = 2' at line 1
268
268
SELECT * FROM t1;
269
269
a
270
270
DROP TABLE t1, t2;