~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/range.test

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:24:18 UTC
  • mfrom: (2159.1.1 remove-lint)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172418-vd210j88hiwk8jih
Removed the lint stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
395
395
 
396
396
# Fix for bug#4488 
397
397
#
398
 
create table t1 (x bigint not null);
 
398
create table t1 (x bigint unsigned not null);
399
399
insert into t1(x) values (0x0ffffffffffffff0);
400
400
insert into t1(x) values (0x0ffffffffffffff1);
401
401
select * from t1;
440
440
#
441
441
# Bug #11185 incorrect comparison of int to signed constant
442
442
#
443
 
create table t1 (a bigint);
 
443
create table t1 (a bigint unsigned);
 
444
show create table t1;
444
445
create index t1i on t1(a);
 
446
show create table t1;
 
447
insert into t1 values (9223372036854775807);
 
448
truncate t1;
445
449
insert into t1 select 18446744073709551615;
446
450
insert into t1 select 18446744073709551614;
447
451
 
504
508
  PRIMARY KEY (pk1,pk2,pk3,pk4)
505
509
);
506
510
 
507
 
insert into t2 select 1, A.a+10*B.a, 432, 44, 'fillerZ' from t1 A, t1 B;
 
511
insert into t2 select 1, A.a+10*B.a, 432, 44, 'fillerZ' from t1 A CROSS JOIN t1 B;
508
512
INSERT INTO t2 VALUES (2621, 2635, 0, 0,'filler'), (2621, 2635, 1, 0,'filler'),
509
513
  (2621, 2635, 10, 0,'filler'), (2621, 2635, 11, 0,'filler'),
510
514
  (2621, 2635, 14, 0,'filler'), (2621, 2635, 1000015, 0,'filler');
788
792
insert into t1 values ('a ','');
789
793
insert into t1 values ('a  ', '');
790
794
insert into t1 select concat('a', 1000 + A.a + 10 * (B.a + 10 * C.a)), ''
791
 
  from t3 A, t3 B, t3 C;
 
795
  from t3 A CROSS JOIN t3 B CROSS JOIN t3 C;
792
796
 
793
797
create table t2 (a varchar(10), filler char(200), key(a));
794
798
insert into t2 select * from t1;