~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/key_diff.test

  • Committer: Stewart Smith
  • Date: 2009-03-04 22:49:53 UTC
  • mto: (910.4.2 sparc) (908.3.6 work)
  • mto: This revision was merged to the branch mainline in revision 912.
  • Revision ID: stewart@flamingspork.com-20090304224953-b2ow237kc1bkp0o0
for getopt, replace GET_ULONG with GET_UINT32.

Don't replace for sql variables (yet). instead just indicated the intense source of fail with GET_ULONG_IS_FAIL.

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
18
17
select * from t1,t1 as t2;
19
18
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
20
19
#select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;