~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisam.result

  • Committer: Brian Aker
  • Date: 2009-11-24 02:06:37 UTC
  • mfrom: (1223.1.7 push)
  • Revision ID: brian@gaz-20091124020637-9gb65vj98x1arydm
MergeĀ forĀ staging.

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 quick;
502
 
Table   Checksum
503
 
test.t1 NULL
504
 
test.t2 NULL
505
 
test.t3 NULL
506
 
Warnings:
507
 
Error   1146    Table 'test.t3' doesn't exist
508
 
checksum table t1, t2, t3;
509
 
Table   Checksum
510
 
test.t1 2948697075
511
 
test.t2 2948697075
512
 
test.t3 NULL
513
 
Warnings:
514
 
Error   1146    Table 'test.t3' doesn't exist
515
 
checksum table t1, t2, t3 extended;
 
501
checksum table t1, t2, t3;
 
502
Table   Checksum
 
503
test.t1 2948697075
 
504
test.t2 2948697075
 
505
test.t3 NULL
 
506
Warnings:
 
507
Error   1146    Table 'test.t3' doesn't exist
 
508
checksum table t1, t2, t3;
 
509
Table   Checksum
 
510
test.t1 2948697075
 
511
test.t2 2948697075
 
512
test.t3 NULL
 
513
Warnings:
 
514
Error   1146    Table 'test.t3' doesn't exist
 
515
checksum table t1, t2, t3;
516
516
Table   Checksum
517
517
test.t1 2948697075
518
518
test.t2 2948697075
643
643
DELETE FROM t1 WHERE _id < 8;
644
644
SHOW TABLE STATUS LIKE 't1';
645
645
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
646
 
CHECK TABLE t1 EXTENDED;
 
646
CHECK TABLE t1;
647
647
Table   Op      Msg_type        Msg_text
648
648
test.t1 check   status  OK
649
649
OPTIMIZE TABLE t1;
650
650
Table   Op      Msg_type        Msg_text
651
651
test.t1 optimize        note    The storage engine for the table doesn't support optimize
652
 
CHECK TABLE t1 EXTENDED;
 
652
CHECK TABLE t1;
653
653
Table   Op      Msg_type        Msg_text
654
654
test.t1 check   status  OK
655
655
SHOW TABLE STATUS LIKE 't1';
1463
1463
ALTER TABLE t1 DISABLE KEYS;
1464
1464
ALTER TABLE t1 ENABLE KEYS;
1465
1465
SET GLOBAL myisam_repair_threads=1;
1466
 
CHECK TABLE t1 EXTENDED;
 
1466
CHECK TABLE t1;
1467
1467
Table   Op      Msg_type        Msg_text
1468
1468
test.t1 check   status  OK
1469
1469
DROP TABLE t1;
1701
1701
SELECT COUNT(*) FROM t1;
1702
1702
COUNT(*)
1703
1703
1
1704
 
CHECK TABLE t1 EXTENDED;
 
1704
CHECK TABLE t1;
1705
1705
Table   Op      Msg_type        Msg_text
1706
1706
test.t1 check   status  OK
1707
1707
SELECT COUNT(*) FROM t1;
1708
1708
COUNT(*)
1709
1709
1
1710
 
CHECK TABLE t1 EXTENDED;
 
1710
CHECK TABLE t1;
1711
1711
Table   Op      Msg_type        Msg_text
1712
1712
test.t1 check   status  OK
1713
1713
DROP TABLE t1;
1746
1746
CHECK TABLE t1;
1747
1747
Table   Op      Msg_type        Msg_text
1748
1748
test.t1 check   status  OK
1749
 
CHECK TABLE t1 EXTENDED;
1750
 
Table   Op      Msg_type        Msg_text
1751
 
test.t1 check   status  OK
1752
 
DROP TABLE t1;
1753
 
CREATE temporary TABLE t1 (
1754
 
c1 CHAR(50),
1755
 
c2 VARCHAR(1)
1756
 
) ENGINE=MyISAM;
1757
 
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1758
 
SELECT COUNT(*) FROM t1;
1759
 
COUNT(*)
1760
 
1
1761
 
CHECK TABLE t1;
1762
 
Table   Op      Msg_type        Msg_text
1763
 
test.t1 check   status  OK
1764
 
SELECT COUNT(*) FROM t1;
1765
 
COUNT(*)
1766
 
1
1767
 
CHECK TABLE t1;
1768
 
Table   Op      Msg_type        Msg_text
1769
 
test.t1 check   status  OK
1770
 
DROP TABLE t1;
1771
 
CREATE temporary TABLE t1 (
1772
 
c1 CHAR(50),
1773
 
c2 VARCHAR(1)
1774
 
) ENGINE=MyISAM;
1775
 
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
1776
 
SELECT COUNT(*) FROM t1;
1777
 
COUNT(*)
1778
 
1
1779
 
CHECK TABLE t1 EXTENDED;
1780
 
Table   Op      Msg_type        Msg_text
1781
 
test.t1 check   status  OK
1782
 
SELECT COUNT(*) FROM t1;
1783
 
COUNT(*)
1784
 
1
1785
 
CHECK TABLE t1 EXTENDED;
 
1749
CHECK TABLE t1;
 
1750
Table   Op      Msg_type        Msg_text
 
1751
test.t1 check   status  OK
 
1752
DROP TABLE t1;
 
1753
CREATE temporary TABLE t1 (
 
1754
c1 CHAR(50),
 
1755
c2 VARCHAR(1)
 
1756
) ENGINE=MyISAM;
 
1757
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
 
1758
SELECT COUNT(*) FROM t1;
 
1759
COUNT(*)
 
1760
1
 
1761
CHECK TABLE t1;
 
1762
Table   Op      Msg_type        Msg_text
 
1763
test.t1 check   status  OK
 
1764
SELECT COUNT(*) FROM t1;
 
1765
COUNT(*)
 
1766
1
 
1767
CHECK TABLE t1;
 
1768
Table   Op      Msg_type        Msg_text
 
1769
test.t1 check   status  OK
 
1770
DROP TABLE t1;
 
1771
CREATE temporary TABLE t1 (
 
1772
c1 CHAR(50),
 
1773
c2 VARCHAR(1)
 
1774
) ENGINE=MyISAM;
 
1775
INSERT INTO t1 VALUES(REPEAT( x'e0ae85',43), 'b');
 
1776
SELECT COUNT(*) FROM t1;
 
1777
COUNT(*)
 
1778
1
 
1779
CHECK TABLE t1;
 
1780
Table   Op      Msg_type        Msg_text
 
1781
test.t1 check   status  OK
 
1782
SELECT COUNT(*) FROM t1;
 
1783
COUNT(*)
 
1784
1
 
1785
CHECK TABLE t1;
1786
1786
Table   Op      Msg_type        Msg_text
1787
1787
test.t1 check   status  OK
1788
1788
DROP TABLE t1;
1821
1821
CHECK TABLE t1;
1822
1822
Table   Op      Msg_type        Msg_text
1823
1823
test.t1 check   status  OK
1824
 
CHECK TABLE t1 EXTENDED;
 
1824
CHECK TABLE t1;
1825
1825
Table   Op      Msg_type        Msg_text
1826
1826
test.t1 check   status  OK
1827
1827
DROP TABLE t1;