~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/update.test

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
CREATE TABLE t1
26
26
 (
27
 
 place_id int (10) unsigned NOT NULL,
28
 
 shows int(10) unsigned DEFAULT '0' NOT NULL,
29
 
 ishows int(10) unsigned DEFAULT '0' NOT NULL,
30
 
 ushows int(10) unsigned DEFAULT '0' NOT NULL,
31
 
 clicks int(10) unsigned DEFAULT '0' NOT NULL,
32
 
 iclicks int(10) unsigned DEFAULT '0' NOT NULL,
33
 
 uclicks int(10) unsigned DEFAULT '0' NOT NULL,
 
27
 place_id int unsigned NOT NULL,
 
28
 shows int unsigned DEFAULT '0' NOT NULL,
 
29
 ishows int unsigned DEFAULT '0' NOT NULL,
 
30
 ushows int unsigned DEFAULT '0' NOT NULL,
 
31
 clicks int unsigned DEFAULT '0' NOT NULL,
 
32
 iclicks int unsigned DEFAULT '0' NOT NULL,
 
33
 uclicks int unsigned DEFAULT '0' NOT NULL,
34
34
 ts timestamp,
35
35
 PRIMARY KEY (place_id,ts)
36
36
 );
46
46
#
47
47
 
48
48
CREATE TABLE t1 (
49
 
  lfdnr int(10) unsigned NOT NULL default '0',
50
 
  ticket int(10) unsigned NOT NULL default '0',
 
49
  lfdnr int unsigned NOT NULL default '0',
 
50
  ticket int unsigned NOT NULL default '0',
51
51
  client varchar(255) NOT NULL default '',
52
52
  replyto varchar(255) NOT NULL default '',
53
53
  subject varchar(100) NOT NULL default '',
54
 
  timestamp int(10) unsigned NOT NULL default '0',
 
54
  timestamp int unsigned NOT NULL default '0',
55
55
  tstamp timestamp NOT NULL,
56
 
  status int(3) NOT NULL default '0',
 
56
  status int NOT NULL default '0',
57
57
  type varchar(15) NOT NULL default '',
58
 
  assignment int(10) unsigned NOT NULL default '0',
59
 
  fupcount int(4) unsigned NOT NULL default '0',
60
 
  parent int(10) unsigned NOT NULL default '0',
61
 
  activity int(10) unsigned NOT NULL default '0',
62
 
  priority tinyint(1) unsigned NOT NULL default '1',
 
58
  assignment int unsigned NOT NULL default '0',
 
59
  fupcount int unsigned NOT NULL default '0',
 
60
  parent int unsigned NOT NULL default '0',
 
61
  activity int unsigned NOT NULL default '0',
 
62
  priority tinyint unsigned NOT NULL default '1',
63
63
  cc varchar(255) NOT NULL default '',
64
64
  bcc varchar(255) NOT NULL default '',
65
65
  body text NOT NULL,
75
75
 
76
76
INSERT INTO t1 VALUES (773,773,'','','',980257344,20010318180652,0,'Open',10,0,0,0,1,'','','','','');
77
77
 
78
 
alter table t1 change lfdnr lfdnr int(10) unsigned not null auto_increment;
 
78
alter table t1 change lfdnr lfdnr int unsigned not null auto_increment;
79
79
update t1 set status=1 where type='Open';
80
80
select status from t1;
81
81
drop table t1;
103
103
#
104
104
 
105
105
CREATE TABLE t1 (
106
 
   `id_param` smallint(3) unsigned NOT NULL default '0',
 
106
   `id_param` smallint unsigned NOT NULL default '0',
107
107
   `nom_option` char(40) NOT NULL default '',
108
 
   `valid` tinyint(1) NOT NULL default '0',
 
108
   `valid` tinyint NOT NULL default '0',
109
109
   KEY `id_param` (`id_param`,`nom_option`)
110
110
 ) ENGINE=MyISAM;
111
111
 
134
134
#
135
135
 
136
136
CREATE TABLE t1 ( 
137
 
   `colA` int(10) unsigned NOT NULL auto_increment,
138
 
   `colB` int(11) NOT NULL default '0',
 
137
   `colA` int unsigned NOT NULL auto_increment,
 
138
   `colB` int NOT NULL default '0',
139
139
   PRIMARY KEY  (`colA`)
140
140
);
141
141
INSERT INTO t1 VALUES (4433,5424);
142
142
CREATE TABLE t2 (
143
 
  `colC` int(10) unsigned NOT NULL default '0',
144
 
  `colA` int(10) unsigned NOT NULL default '0',
145
 
  `colD` int(10) unsigned NOT NULL default '0',
146
 
  `colE` int(10) unsigned NOT NULL default '0',
147
 
  `colF` int(10) unsigned NOT NULL default '0',
 
143
  `colC` int unsigned NOT NULL default '0',
 
144
  `colA` int unsigned NOT NULL default '0',
 
145
  `colD` int unsigned NOT NULL default '0',
 
146
  `colE` int unsigned NOT NULL default '0',
 
147
  `colF` int unsigned NOT NULL default '0',
148
148
  PRIMARY KEY  (`colC`,`colA`,`colD`,`colE`)
149
149
);
150
150
INSERT INTO t2 VALUES (3,4433,10005,495,500);
357
357
#
358
358
CREATE TABLE t1 (
359
359
 
360
 
  a INT(11),
 
360
  a int,
361
361
  quux decimal( 31, 30 ),
362
362
 
363
363
  UNIQUE KEY bar (a),