~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive_aio_posix.test

Merge Stewart.

Show diffs side-by-side

added added

removed removed

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