~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/key_diff.test

  • Committer: lbieber
  • Date: 2010-08-23 22:45:16 UTC
  • mfrom: (1727.2.1 staging)
  • Revision ID: lbieber@orisndriz03-20100823224516-k12j5r4znqnznr9d
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:
14
14
 
15
15
INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');
16
16
 
 
17
--sorted_result
17
18
select * from t1,t1 as t2;
18
19
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
19
20
#select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;