~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/r/myisam.result

  • 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:
488
488
create table t2 (a int, b varchar(200), c text not null);
489
489
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
490
490
insert t2 select * from t1;
491
 
checksum table t1, t2, t3;
492
 
Table   Checksum
493
 
test.t1 3505595080
494
 
test.t2 3505595080
495
 
test.t3 NULL
496
 
Warnings:
497
 
Error   1146    Table 'test.t3' doesn't exist
498
 
checksum table t1, t2, t3;
499
 
Table   Checksum
500
 
test.t1 3505595080
501
 
test.t2 3505595080
502
 
test.t3 NULL
503
 
Warnings:
504
 
Error   1146    Table 'test.t3' doesn't exist
505
 
checksum table t1, t2, t3;
506
 
Table   Checksum
507
 
test.t1 3505595080
508
 
test.t2 3505595080
509
 
test.t3 NULL
510
 
Warnings:
511
 
Error   1146    Table 'test.t3' doesn't exist
512
491
show table status;
513
492
Session Schema  Name    Type    Engine  Version Rows    Avg_row_length  Table_size      Auto_increment
514
493
#       test    t1      STANDARD        InnoDB  #       #       #       #       #
531
510
Table   Op      Msg_type        Msg_text
532
511
test.t1 check   status  OK
533
512
drop table t1;
534
 
create table t1 (c1 int);
535
 
insert into t1 values (1),(2),(3),(4);
536
 
checksum table t1;
537
 
Table   Checksum
538
 
test.t1 149057747
539
 
delete from t1 where c1 = 1;
540
 
create table t2 as select * from t1;
541
 
checksum table t1;
542
 
Table   Checksum
543
 
test.t1 984116287
544
 
checksum table t2;
545
 
Table   Checksum
546
 
test.t2 984116287
547
 
drop table t1, t2;
548
513
create table t1(
549
514
cip INT NOT NULL,
550
515
score INT NOT NULL DEFAULT 0,