~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/select_found.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
3
70
70
drop table t1;
71
71
CREATE TABLE t1 (
72
 
`id` int NOT NULL auto_increment,
73
 
`kid` int NOT NULL default '0',
 
72
`id` smallint(5) unsigned NOT NULL auto_increment,
 
73
`kid` smallint(5) unsigned NOT NULL default '0',
74
74
PRIMARY KEY (`id`),
75
75
KEY `kid` (`kid`)
76
76
);
77
77
CREATE TABLE t2 (
78
 
id int NOT NULL auto_increment,
 
78
id smallint(5) unsigned NOT NULL auto_increment,
79
79
name varchar(50) NOT NULL default '',
80
80
email varchar(50) NOT NULL default '',
81
81
PRIMARY KEY  (id),
82
82
UNIQUE KEY e_n (email,name)
83
83
);
84
 
EXPLAIN SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1  ON kid = t2.id WHERE t1.id IS NULL ORDER BY t2.email LIMIT 10;
 
84
EXPLAIN SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1  ON kid = t2.id WHERE t1.id IS NULL LIMIT 10;
85
85
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
86
 
1       SIMPLE  t2      index   NULL    PRIMARY 4       NULL    200     Using temporary; Using filesort
87
 
1       SIMPLE  t1      ref     kid     kid     4       test.t2.id      1       Using where; Using index; Not exists; Distinct
88
 
SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1  ON kid = t2.id WHERE t1.id IS NULL ORDER BY t2.email  LIMIT 10;
 
86
1       SIMPLE  t1      system  PRIMARY,kid     NULL    NULL    NULL    0       const row not found
 
87
1       SIMPLE  t2      index   NULL    e_n     104     NULL    10      
 
88
SELECT SQL_CALC_FOUND_ROWS DISTINCT email FROM t2 LEFT JOIN t1  ON kid = t2.id WHERE t1.id IS NULL LIMIT 10;
89
89
email
90
90
email1
91
91
email10
156
156
FOUND_ROWS()
157
157
199
158
158
drop table t1,t2;
159
 
CREATE TEMPORARY TABLE `t1` (
 
159
CREATE TABLE `t1` (
160
160
`titre` char(80) NOT NULL default '',
161
 
`numeropost` int NOT NULL auto_increment,
162
 
`maxnumrep` int NOT NULL default '0',
 
161
`numeropost` mediumint(8) unsigned NOT NULL auto_increment,
 
162
`maxnumrep` int(10) unsigned NOT NULL default '0',
163
163
PRIMARY KEY  (`numeropost`),
164
164
KEY `maxnumrep` (`maxnumrep`)
165
165
) ENGINE=MyISAM ROW_FORMAT=FIXED;