~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/select_found.test

  • Committer: brian
  • Date: 2008-07-03 12:39:14 UTC
  • Revision ID: brian@localhost.localdomain-20080703123914-lry82qf74f6cbyzs
Disabling myisam tools until incomming link patch from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#
41
41
 
42
42
CREATE TABLE t1 (
43
 
`id` int(5) NOT NULL auto_increment,
44
 
`kid` int(5) NOT NULL default '0',
 
43
`id` smallint(5) unsigned NOT NULL auto_increment,
 
44
`kid` smallint(5) unsigned NOT NULL default '0',
45
45
PRIMARY KEY (`id`),
46
46
KEY `kid` (`kid`)
47
47
);
48
48
 
49
49
CREATE TABLE t2 (
50
 
  id int(5) NOT NULL auto_increment,
 
50
  id smallint(5) unsigned NOT NULL auto_increment,
51
51
  name varchar(50) NOT NULL default '',
52
52
  email varchar(50) NOT NULL default '',
53
53
  PRIMARY KEY  (id),
87
87
 
88
88
CREATE TABLE `t1` (
89
89
  `titre` char(80) NOT NULL default '',
90
 
  `numeropost` mediumint(8) NOT NULL auto_increment,
91
 
  `maxnumrep` int(10) NOT NULL default '0',
 
90
  `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
 
91
  `maxnumrep` int(10) unsigned NOT NULL default '0',
92
92
  PRIMARY KEY  (`numeropost`),
93
93
  KEY `maxnumrep` (`maxnumrep`)
94
94
) ENGINE=MyISAM ROW_FORMAT=FIXED;