~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/almost_full.result

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
 
set global myisam_data_pointer_size=2;
3
 
CREATE TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
4
 
DELETE FROM t1 WHERE a=1 or a=5;
5
 
INSERT INTO t1 SET b=repeat('a',600);
6
 
ERROR HY000: The table 't1' is full
7
 
CHECK TABLE t1 EXTENDED;
8
 
Table   Op      Msg_type        Msg_text
9
 
test.t1 check   warning Datafile is almost full, 65448 of 65534 used
10
 
test.t1 check   status  OK
11
 
UPDATE t1 SET b=repeat('a', 800) where a=10;
12
 
ERROR HY000: The table 't1' is full
13
 
CHECK TABLE t1 EXTENDED;
14
 
Table   Op      Msg_type        Msg_text
15
 
test.t1 check   warning Datafile is almost full, 65448 of 65534 used
16
 
test.t1 check   status  OK
17
 
INSERT INTO t1 SET b=repeat('a',400);
18
 
CHECK TABLE t1 EXTENDED;
19
 
Table   Op      Msg_type        Msg_text
20
 
test.t1 check   warning Datafile is almost full, 65448 of 65534 used
21
 
test.t1 check   status  OK
22
 
DELETE FROM t1 WHERE a=2 or a=6;
23
 
UPDATE t1 SET b=repeat('a', 600) where a=11;
24
 
CHECK TABLE t1 EXTENDED;
25
 
Table   Op      Msg_type        Msg_text
26
 
test.t1 check   warning Datafile is almost full, 65448 of 65534 used
27
 
test.t1 check   status  OK
 
2
CREATE TEMPORARY TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
28
3
drop table t1;
29
 
set global myisam_data_pointer_size=default;