~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive.test

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
1325
1325
INSERT INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
1326
1326
OPTIMIZE TABLE t2;
1327
1327
SELECT * FROM t2;
1328
 
REPAIR TABLE t2;
1329
 
SELECT * FROM t2;
1330
1328
 
1331
1329
#
1332
1330
# Test bulk inserts
1536
1534
--enable_warnings
1537
1535
 
1538
1536
#
1539
 
# BUG#26138 - REPAIR TABLE with option USE_FRM erases all records in ARCHIVE
1540
 
#             table
1541
 
#
1542
 
create table t1 (i int) engine=archive;
1543
 
insert into t1 values (1);
1544
 
repair table t1 use_frm;
1545
 
select * from t1;
1546
 
drop table t1;
1547
 
 
1548
 
#
1549
1537
# BUG#29207 - archive table reported as corrupt by check table
1550
1538
#
1551
1539
create table t1(a blob) engine=archive;