~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join_outer.test

  • Committer: lbieber
  • Date: 2010-08-23 20:54:30 UTC
  • mfrom: (1727.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1728.
  • Revision ID: lbieber@orisndriz03-20100823205430-nkh3w7a36wehtfjj
Merge Vijay - bug 621866 - Changed --transaction-log.sync-method to --transaction-log.flush-frequency
Merge Lee - bug 622005 updateing test results that need to sorted by adding --sorted_result - 
Merge Andrew - bug #617537 re-connect connectionID is wrong 
Merge Andrew - bug #617534 incorrect error when reconnecting

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;