~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join_outer.test

updateing test results that need to sorted by adding --sorted_result - bug 622005

Show diffs side-by-side

added added

removed removed

Lines of Context:
344
344
insert into t2 values (7, 'green');
345
345
select * from t1;
346
346
select * from t2;
 
347
--sorted_result
347
348
select * from t2 natural join t1;
 
349
--sorted_result
348
350
select t2.count, t1.name from t2 natural join t1;
 
351
--sorted_result
349
352
select t2.count, t1.name from t2 inner join t1 using (color);
350
353
drop table t1;
351
354
drop table t2;