~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/t/myisam.test

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
498
498
create table t2 (a int, b varchar(200), c text not null);
499
499
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
500
500
insert t2 select * from t1;
501
 
checksum table t1, t2, t3;
502
 
checksum table t1, t2, t3;
503
 
checksum table t1, t2, t3;
504
501
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
505
502
show table status;
506
503
drop table t1,t2;
550
547
check table t1;
551
548
drop table t1;
552
549
 
553
 
 
554
 
#
555
 
# Bug#12296 - CHECKSUM TABLE reports 0 for the table
556
 
# This happened if the first record was marked as deleted.
557
 
#
558
 
create table t1 (c1 int);
559
 
insert into t1 values (1),(2),(3),(4);
560
 
checksum table t1;
561
 
delete from t1 where c1 = 1;
562
 
create table t2 as select * from t1;
563
 
# The following returns 0 with the bug in place.
564
 
checksum table t1;
565
 
# The above should give the same number as the following.
566
 
checksum table t2;
567
 
drop table t1, t2;
568
 
 
569
550
# BUG#13814 - key value packed incorrectly for TINYBLOBs
570
551
 
571
552
create table t1(