~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive-big.test

  • Committer: Brian Aker
  • Date: 2009-02-10 00:14:40 UTC
  • Revision ID: brian@tangent.org-20090210001440-qjg8eofh3h93064b
Adding Multi-threaded Scheduler into the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/big_test.inc
1
2
-- source include/have_archive.inc
2
3
 
3
4
CREATE TABLE t1(a BLOB) ENGINE=ARCHIVE;
20
21
INSERT INTO t1 SELECT * FROM t1;
21
22
INSERT INTO t1 SELECT * FROM t1;
22
23
INSERT INTO t1 SELECT * FROM t1;
23
 
--error EE_OK,ER_RECORD_FILE_FULL
 
24
--error 0,1114
24
25
INSERT INTO t1 SELECT * FROM t1;
25
26
SELECT DISTINCT crc32(a) FROM t1;
26
27
DROP TABLE t1;