~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/alter_table.test

  • Committer: Brian Aker
  • Date: 2008-07-28 19:08:55 UTC
  • Revision ID: brian@tangent.org-20080728190855-t7k80o504mi6yrpz
Cleanup int() work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
# Check that pack_keys and dynamic length rows are not forced. 
35
35
 
36
36
CREATE TABLE t1 (
37
 
GROUP_ID int(10) unsigned DEFAULT '0' NOT NULL,
38
 
LANG_ID smallint(5) unsigned DEFAULT '0' NOT NULL,
 
37
GROUP_ID int unsigned DEFAULT '0' NOT NULL,
 
38
LANG_ID smallint unsigned DEFAULT '0' NOT NULL,
39
39
NAME varchar(80) DEFAULT '' NOT NULL,
40
40
PRIMARY KEY (GROUP_ID,LANG_ID),
41
41
KEY NAME (NAME));
56
56
drop table t1;
57
57
 
58
58
CREATE TABLE t1 (
59
 
  id int(11) unsigned NOT NULL default '0',
60
 
  category_id tinyint(4) unsigned NOT NULL default '0',
61
 
  type_id tinyint(4) unsigned NOT NULL default '0',
 
59
  id int unsigned NOT NULL default '0',
 
60
  category_id tinyint unsigned NOT NULL default '0',
 
61
  type_id tinyint unsigned NOT NULL default '0',
62
62
  body text NOT NULL,
63
 
  user_id int(11) unsigned NOT NULL default '0',
 
63
  user_id int unsigned NOT NULL default '0',
64
64
  status enum('new','old') NOT NULL default 'new',
65
65
  PRIMARY KEY (id)
66
66
) ENGINE=MyISAM;
72
72
# The following combination found a hang-bug in MyISAM
73
73
#
74
74
 
75
 
CREATE TABLE t1 (AnamneseId int(10) unsigned NOT NULL auto_increment,B BLOB,PRIMARY KEY (AnamneseId)) engine=myisam;
 
75
CREATE TABLE t1 (AnamneseId int unsigned NOT NULL auto_increment,B BLOB,PRIMARY KEY (AnamneseId)) engine=myisam;
76
76
insert into t1 values (null,"hello");
77
77
LOCK TABLES t1 WRITE;
78
78
ALTER TABLE t1 ADD Column new_col int not null;
592
592
# Bug #14693 (ALTER SET DEFAULT doesn't work)
593
593
#
594
594
 
595
 
create table t1 (mycol int(10) not null);
 
595
create table t1 (mycol int not null);
596
596
alter table t1 alter column mycol set default 0;
597
597
desc t1;
598
598
drop table t1;
601
601
# Bug#25262 Auto Increment lost when changing Engine type
602
602
#
603
603
 
604
 
create table t1(id int(8) primary key auto_increment) engine=heap;
 
604
create table t1(id int primary key auto_increment) engine=heap;
605
605
 
606
606
insert into t1 values (null);
607
607
insert into t1 values (null);