~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/key_diff.result

  • Committer: Lee Bieber
  • Date: 2010-12-03 01:16:19 UTC
  • mfrom: (1819.9.81 update-innobase)
  • Revision ID: kalebral@gmail.com-20101203011619-n6v584rijwdet05b
Merge Stewart - update Innobase plugin based on InnoDB 1.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
KEY (b)
7
7
);
8
8
INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');
9
 
select * from t1 CROSS JOIN t1 as t2;
 
9
select * from t1,t1 as t2;
10
10
a       b       a       b
11
11
A       B       A       B
12
12
A       B       C       c