~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/range.test

  • Committer: Brian Aker
  • Date: 2010-12-25 00:28:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225002849-g73mg6ihulajis0o
First pass in refactoring of the name of my_decimal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
508
508
  PRIMARY KEY (pk1,pk2,pk3,pk4)
509
509
);
510
510
 
511
 
insert into t2 select 1, A.a+10*B.a, 432, 44, 'fillerZ' from t1 A CROSS JOIN t1 B;
 
511
insert into t2 select 1, A.a+10*B.a, 432, 44, 'fillerZ' from t1 A, t1 B;
512
512
INSERT INTO t2 VALUES (2621, 2635, 0, 0,'filler'), (2621, 2635, 1, 0,'filler'),
513
513
  (2621, 2635, 10, 0,'filler'), (2621, 2635, 11, 0,'filler'),
514
514
  (2621, 2635, 14, 0,'filler'), (2621, 2635, 1000015, 0,'filler');
792
792
insert into t1 values ('a ','');
793
793
insert into t1 values ('a  ', '');
794
794
insert into t1 select concat('a', 1000 + A.a + 10 * (B.a + 10 * C.a)), ''
795
 
  from t3 A CROSS JOIN t3 B CROSS JOIN t3 C;
 
795
  from t3 A, t3 B, t3 C;
796
796
 
797
797
create table t2 (a varchar(10), filler char(200), key(a));
798
798
insert into t2 select * from t1;