~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Monty Taylor
  • Date: 2010-08-27 15:35:00 UTC
  • mto: (1758.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1759.
  • Revision ID: mordred@inaugust.com-20100827153500-ljbs9nqp9e49li87
Added sphinx infrastructure

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#DELETE FROM t1 WHERE a=1 or a=5;
23
23
 
24
 
#--error ER_RECORD_FILE_FULL
 
24
#--error 1114
25
25
#INSERT INTO t1 SET b=repeat('a',600);
26
26
#CHECK TABLE t1 EXTENDED;
27
27
 
28
 
#--error ER_RECORD_FILE_FULL
 
28
#--error 1114
29
29
#UPDATE t1 SET b=repeat('a', 800) where a=10;
30
30
#CHECK TABLE t1 EXTENDED;
31
31