~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

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
23
21
 
24
22
#DELETE FROM t1 WHERE a=1 or a=5;
25
23
 
26
 
#--error 1114
 
24
#--error ER_RECORD_FILE_FULL
27
25
#INSERT INTO t1 SET b=repeat('a',600);
28
26
#CHECK TABLE t1 EXTENDED;
29
27
 
30
 
#--error 1114
 
28
#--error ER_RECORD_FILE_FULL
31
29
#UPDATE t1 SET b=repeat('a', 800) where a=10;
32
30
#CHECK TABLE t1 EXTENDED;
33
31
 
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