~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Brian Aker
  • Date: 2010-08-13 18:47:12 UTC
  • mfrom: (1703.1.4 staging)
  • Revision ID: brian@tangent.org-20100813184712-rx8hjq33powaaqlv
Merge MyISAM changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
#Drizzle does not support global myisam_data_pointer_size system variable
10
 
#set global myisam_data_pointer_size=2;
11
9
CREATE TEMPORARY TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
12
10
 
13
11
--disable_query_log
39
37
#CHECK TABLE t1 EXTENDED;
40
38
drop table t1;
41
39
 
42
 
#set global myisam_data_pointer_size=default;
43
 
 
44
40
# End of 4.1 tests