~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-02 14:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702143548-onj30ry0sugr01uw
Removed all references to THREAD.

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;