~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect.result

Merge in additional test case fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4524
4524
SELECT * FROM t1 JOIN ((t1 t1a)) t1a ON 1;
4525
4525
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 't1a ON 1' at line 1
4526
4526
SELECT * FROM t1 JOIN  (t1 t1a)  ON 1;
4527
 
ERROR HY000: Implicit cartesian join attempted.
 
4527
a       a
 
4528
1       1
 
4529
1       2
 
4530
2       1
 
4531
2       2
4528
4532
SELECT * FROM t1 JOIN ((t1 t1a)) ON 1;
4529
 
ERROR HY000: Implicit cartesian join attempted.
 
4533
a       a
 
4534
1       1
 
4535
2       1
 
4536
1       2
 
4537
2       2
4530
4538
SELECT * FROM (t1 t1a);
4531
4539
a
4532
4540
1