~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
select * from t1 where a=1;
66
66
drop table t1;
67
67
 
68
 
create table t1 (id int unsigned not null, primary key (id)) engine=HEAP;
 
68
create table t1 (id int not null, primary key (id)) engine=HEAP;
69
69
insert into t1 values(1);
70
70
select max(id) from t1; 
71
71
insert into t1 values(2);
155
155
# Bug#4411 Server hangs when trying to SELECT MAX(id) from an empty HEAP table
156
156
#
157
157
CREATE TABLE `job_titles` (
158
 
  `job_title_id` int unsigned NOT NULL default '0',
 
158
  `job_title_id` int NOT NULL default '0',
159
159
  `job_title` char(18) NOT NULL default '',
160
160
  PRIMARY KEY  (`job_title_id`),
161
161
  UNIQUE KEY `job_title_id` (`job_title_id`,`job_title`)
179
179
# Bug #6748
180
180
# heap_rfirst() doesn't work (and never did!)
181
181
#
182
 
CREATE TABLE t1 (pseudo char(35) PRIMARY KEY, date int unsigned NOT NULL) ENGINE=HEAP;
 
182
CREATE TABLE t1 (pseudo char(35) PRIMARY KEY, date int NOT NULL) ENGINE=HEAP;
183
183
INSERT INTO t1 VALUES ('massecot',1101106491),('altec',1101106492),('stitch+',1101106304),('Seb Corgan',1101106305),('beerfilou',1101106263),('flaker',1101106529),('joce8',5),('M4vrick',1101106418),('gabay008',1101106525),('Vamp irX',1101106291),('ZoomZip',1101106546),('rip666',1101106502),('CBP ',1101106397),('guezpard',1101106496);
184
184
DELETE FROM t1 WHERE date<1101106546;
185
185
SELECT * FROM t1;
411
411
# Bug #8489: Strange auto_increment behaviour
412
412
#
413
413
 
414
 
create table t1 (a bigint unsigned auto_increment primary key, b int,
 
414
create table t1 (a bigint auto_increment primary key, b int,
415
415
  key (b, a)) engine=heap;
416
416
insert t1 (b) values (1),(1),(1),(1),(1),(1),(1),(1);
417
417
select * from t1;